/* 
CS Gaming Hub - Main Stylesheet
Website for premium CS2 skins marketplace with DMarket integration
*/

/* Base Styles and Variables */
:root {
    --primary-color: #8957ff;
    --primary-dark: #7042e5;
    --primary-light: #a77dff;
    --secondary-color: #ff5e3a;
    --secondary-dark: #e04527;
    --secondary-light: #ff7e5f;
    --background-color: #0f1216;
    --background-light: #171b22;
    --background-lighter: #1f252e;
    --text-color: #e6e6e6;
    --text-muted: #9aa0a8;
    --border-color: #2a3040;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --info-color: #2196f3;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

input, select, textarea {
    font-family: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-color);
    position: relative;
    padding-bottom: 0.8rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-large {
    padding: 14px 30px;
    font-size: 1.1rem;
}

.btn-cart {
    background-color: var(--primary-color);
}

.btn-buy {
    background-color: var(--secondary-color);
}

.btn-buy:hover {
    background-color: var(--secondary-dark);
}

.btn-view {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-view:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary {
    background-color: var(--background-lighter);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: var(--background-light);
    color: var(--text-color);
}

.btn:disabled,
.btn.disabled {
    background-color: var(--text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Header */
header {
    background-color: var(--background-color);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.header-cart {
    position: relative;
}

.cart-link {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 4px;
    transition: var(--transition);
}

.cart-link:hover,
.cart-link.active {
    background-color: var(--background-lighter);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 60px;
}

.slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    width: 50%;
    padding: 0 40px;
    z-index: 2;
}

.slide-content h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 500px;
}

.slide-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--background-color) 0%, rgba(15, 18, 22, 0.7) 50%, rgba(15, 18, 22, 0.2) 100%);
    z-index: 1;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.prev-btn, .next-btn {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-dots {
    display: flex;
    gap: 8px;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .dot:hover {
    background-color: var(--primary-color);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--background-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature {
    background-color: var(--background-lighter);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(137, 87, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.feature h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.feature p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
    padding: 0 15px;
    flex: 1;
    min-width: 150px;
}

.stat h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* About Products Section */
.about-products {
    padding: 80px 0;
    background-color: var(--background-color);
}

.about-products-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-products-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.quality-info, .company-history {
    margin-top: 2.5rem;
}

.quality-info h3, .company-history h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 1.5rem;
}

.certification {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--background-lighter);
    padding: 12px 20px;
    border-radius: 6px;
    flex: 1;
    min-width: 200px;
}

.certification svg {
    color: var(--primary-color);
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: var(--background-light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--background-lighter);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--secondary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.product-description {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions .btn {
    flex: 1;
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Product Detail Page */
.product-detail {
    padding: 60px 0;
}

.breadcrumb {
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.product-detail-image {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.product-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-detail-info h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.product-detail-info .product-tag {
    position: static;
    display: inline-block;
    margin-bottom: 15px;
}

.product-meta {
    margin-bottom: 20px;
}

.product-detail-info .product-meta {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px;
    background-color: var(--background-lighter);
    border-radius: 8px;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.meta-value {
    font-weight: 500;
}

.product-detail-info .product-price {
    font-size: 2rem;
    margin: 25px 0;
}

.product-description h3,
.product-features h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.product-description p {
    margin-bottom: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.product-features ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--text-muted);
}

.product-features li {
    margin-bottom: 8px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.quantity-selector label {
    margin-right: 15px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.quantity-decrease,
.quantity-increase {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-lighter);
    border: none;
    font-size: 1.2rem;
    color: var(--text-color);
}

.quantity-controls input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 1rem;
    background-color: var(--background-lighter);
    color: var(--text-color);
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.product-guarantee {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.guarantee-item svg {
    color: var(--primary-color);
}

.related-products {
    margin-top: 60px;
}

.related-products h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* About Page */
.page-header {
    background-color: var(--background-lighter);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-story {
    padding: 60px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 300px;
    border-radius: 8px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

.about-mission {
    padding: 60px 0;
    background-color: var(--background-light);
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mission-item {
    text-align: center;
    padding: 30px;
    background-color: var(--background-lighter);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.mission-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(137, 87, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.mission-item h3 {
    margin-bottom: 15px;
}

.mission-item p {
    color: var(--text-muted);
}

.team-section {
    padding: 80px 0;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--background-lighter);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h3 {
    margin: 20px 20px 5px;
    font-size: 1.2rem;
}

.team-member p {
    padding: 0 20px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
    padding: 0 20px 20px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
}

.testimonials {
    padding: 80px 0;
    background-color: var(--background-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: var(--background-lighter);
    border-radius: 8px;
    padding: 30px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-weight: 600;
}

.author-stars {
    display: flex;
    color: var(--secondary-color);
}

.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--background-color);
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-methods {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(137, 87, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.contact-details h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--text-muted);
}

.contact-hours {
    font-size: 0.85rem;
    margin-top: 5px;
}

.social-contact h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.social-contact .social-icons {
    padding: 0;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-form {
    background-color: var(--background-lighter);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--background-color);
    color: var(--text-color);
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    color: var(--text-muted);
}

.checkbox-group a {
    color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
}

.faq-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.faq-grid {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.faq-item {
    background-color: var(--background-lighter);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-toggle {
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Cart Page */
.cart-section {
    padding: 60px 0;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.cart-items {
    background-color: var(--background-lighter);
    border-radius: 8px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.empty-cart {
    text-align: center;
    padding: 40px 0;
}

.empty-cart-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background-color: rgba(137, 87, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.empty-cart h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.empty-cart p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.cart-item-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
}

.cart-item-quantity button {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.cart-item-quantity input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
    background-color: var(--background-color);
    color: var(--text-color);
}

.cart-item-price {
    font-weight: 600;
    color: var(--primary-color);
}

.btn-remove {
    background: none;
    border: none;
    color: var(--text-muted);
}

.btn-remove:hover {
    color: var(--error-color);
}

.cart-summary {
    background-color: var(--background-lighter);
    border-radius: 8px;
    padding: 30px;
    position: sticky;
    top: 100px;
    border: 1px solid var(--border-color);
}

.cart-summary h2 {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    margin-top: 15px;
}

.summary-actions {
    margin-top: 30px;
}

.summary-actions .btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
}

.summary-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.info-item svg {
    color: var(--primary-color);
}

.recommended-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.recommended-section h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Checkout Page */
.checkout-progress {
    padding: 30px 0;
    background-color: var(--background-light);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.progress-steps li {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-color);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    margin-bottom: 10px;
    transition: var(--transition);
}

.step-name {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.progress-steps li.active .step-number,
.progress-steps li.completed .step-number {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.progress-steps li.active .step-name,
.progress-steps li.completed .step-name {
    color: var(--primary-color);
}

.checkout-section {
    padding: 60px 0;
}

.checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.checkout-form-container {
    background-color: var(--background-lighter);
    border-radius: 8px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.checkout-form-container h1 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.checkout-intro {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h2 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.delivery-note {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.9rem;
    padding: 10px;
    background-color: rgba(137, 87, 255, 0.1);
    border-radius: 4px;
}

.terms-section {
    margin-bottom: 30px;
}

.btn-checkout-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.order-summary {
    background-color: var(--background-lighter);
    border-radius: 8px;
    padding: 30px;
    position: sticky;
    top: 100px;
    border: 1px solid var(--border-color);
}

.order-summary h2 {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.order-items {
    margin-bottom: 30px;
    max-height: 300px;
    overflow-y: auto;
}

.order-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 15px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.order-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.item-quantity {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.item-price {
    font-weight: 600;
}

.order-totals {
    margin-bottom: 30px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.total-row.grand-total {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    margin-top: 15px;
}

.order-security {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: rgba(33, 150, 243, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
}

.security-icon {
    color: var(--info-color);
}

.security-text h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.security-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.order-guarantees {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.need-help {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.need-help h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.need-help p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.help-link {
    color: var(--primary-color);
    font-weight: 500;
}

/* Success Page */
.success-section {
    padding: 60px 0;
}

.success-content {
    background-color: var(--background-lighter);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    margin-bottom: 60px;
    border: 1px solid var(--border-color);
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success-color);
}

.success-content h1 {
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.success-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.success-info {
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.success-info p {
    margin-bottom: 15px;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.what-next {
    margin-bottom: 60px;
}

.what-next h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    background-color: var(--background-lighter);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(137, 87, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.step-content h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Footer */
footer {
    background-color: var(--background-lighter);
    padding: 80px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links-column h3 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links-column ul li {
    margin-bottom: 12px;
}

.footer-links-column ul li a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links-column ul li a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.contact-info li svg {
    margin-top: 4px;
    color: var(--primary-color);
}

.footer-social h3 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-social .social-icons {
    padding: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-lighter);
    padding: 15px 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: var(--text-muted);
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-actions button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-accept {
    background-color: var(--primary-color);
    color: white;
}

.btn-cookie-settings {
    background-color: var(--background-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-cookie-decline {
    background-color: transparent;
    color: var(--text-muted);
}

.cookie-actions a {
    color: var(--primary-color);
    margin-left: 15px;
    align-self: center;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    background-color: var(--background-lighter);
    color: var(--text-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1100;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification-icon {
    color: var(--success-color);
}

.notification-content h3 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.notification-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    margin-left: auto;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 2fr;
    }
    
    .footer-social {
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px) {
    .hero-slider {
        height: 400px;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
    }
    
    .product-detail-content {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .checkout-content,
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .cart-summary,
    .order-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .slide {
        flex-direction: column-reverse;
    }
    
    .slide-content {
        width: 100%;
        padding: 20px;
        text-align: center;
    }
    
    .slide-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .slide-image {
        width: 100%;
        height: 60%;
        position: relative;
    }
    
    .slide:before {
        background: linear-gradient(to bottom, rgba(15, 18, 22, 0.2) 0%, var(--background-color) 100%);
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }
    
    .cart-item-quantity,
    .cart-item-price,
    .cart-item-remove {
        grid-column: 2;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 40px;
    }
    
    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}
