/* ============================================
   GLOBAL VARIABLES & RESET
   ============================================ */
:root {
    /* Primary Brand Colors */
    --primary: #FF6B35;
    --primary-dark: #E85A2B;
    --primary-light: #FF8C5F;
    
    --secondary: #4ECDC4;
    --secondary-dark: #3DB8AF;
    --secondary-light: #6FD9D1;
    
    --accent: #F7B731;
    --accent-dark: #E0A520;
    
    /* Neutrals */
    --dark-bg: #0F0F0F;
    --dark-secondary: #1A1A1A;
    --dark-accent: #262626;
    --text-light: #FFFFFF;
    --text-muted: #A0A0A0;
    
    /* Light Mode */
    --light-bg: #FAFAFA;
    --light-secondary: #FFFFFF;
    --light-accent: #F5F5F5;
    --text-dark: #1A1A1A;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 5%;
    --container-max: 1400px;
    
    /* Transition */
    --transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Mode */
[data-theme="light"] {
    --dark-bg: #FAFAFA;
    --dark-secondary: #FFFFFF;
    --dark-accent: #F5F5F5;
    --text-light: #1A1A1A;
    --text-muted: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background 0.7s ease, color 0.7s ease, border-color 0.7s ease, box-shadow 0.7s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 5%;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    transition: all var(--transition);
}

[data-theme="light"] nav {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
}

nav.scrolled {
    padding: 15px 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

.logo i {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Cart Toggle */
.cart-toggle {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cart-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.cart-toggle i {
    font-size: 1.3rem;
    color: white;
}

.cart-count {
    position: absolute;
    top: -5px;
    left: -5px;
    background: var(--accent);
    color: var(--dark-bg);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid var(--dark-bg);
}

/* Theme Toggle */
.theme-toggle {
    background: var(--dark-accent);
    border: 2px solid rgba(255, 107, 53, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

[data-theme="light"] .theme-toggle {
    background: white;
    border-color: rgba(255, 107, 53, 0.3);
}

.theme-toggle i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform var(--transition);
}

.theme-toggle:hover {
    transform: rotate(20deg);
    border-color: var(--primary);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all var(--transition);
    border-radius: 3px;
}

/* ============================================
   SHOPPING CART SIDEBAR
   ============================================ */
.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: var(--dark-secondary);
    z-index: 2000;
    transition: right var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 30px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .cart-sidebar {
    background: white;
    box-shadow: -2px 0 30px rgba(0, 0, 0, 0.1);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 25px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition);
    padding: 5px;
}

.cart-close:hover {
    color: var(--primary);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-cart i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--dark-accent);
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all var(--transition);
}

[data-theme="light"] .cart-item {
    background: var(--light-accent);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-light);
}

.cart-item-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.quantity-btn {
    background: var(--primary);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.quantity-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.quantity-display {
    min-width: 40px;
    text-align: center;
    font-weight: 700;
}

.remove-item {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px 10px;
    transition: color var(--transition);
    margin-right: auto;
}

.remove-item:hover {
    color: #ff4444;
}

.cart-footer {
    padding: 25px;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cart-total span:last-child {
    color: var(--primary);
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   POPUP MODAL
   ============================================ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.7s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-modal {
    background: var(--dark-secondary);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    transform: scale(0.7);
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .popup-modal {
    background: white;
    border-color: rgba(255, 107, 53, 0.3);
}

.popup-overlay.active .popup-modal {
    transform: scale(1);
}

.popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: white;
    animation: popupIconPulse 2s ease-in-out infinite;
}

@keyframes popupIconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 107, 53, 0);
    }
}

.popup-modal h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.popup-modal p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.popup-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 15px 50px;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.7s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.popup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.85), rgba(232, 90, 43, 0.75)),
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1600&q=80') center/cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(15, 15, 15, 0.3) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 18px 45px;
    border-radius: 12px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.7s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-cta i {
    transition: transform 0.7s ease;
}

.hero-cta:hover i {
    transform: translateY(3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 50%;
    transform: translateX(50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(50%) translateY(0);
    }
    40% {
        transform: translateX(50%) translateY(-10px);
    }
    60% {
        transform: translateX(50%) translateY(-5px);
    }
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: white;
    position: absolute;
    top: 8px;
    right: 50%;
    transform: translateX(50%);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-light);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.product-card {
    position: relative;
    background: var(--dark-secondary);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.7s ease;
    border: 1px solid rgba(255, 107, 53, 0.08);
}

[data-theme="light"] .product-card {
    background: white;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(225, 225, 225, 0.14);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    padding: 6px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    color: white;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.new {
    background: var(--secondary);
}

.product-badge.popular {
    background: var(--accent);
    color: var(--dark-bg);
}

.product-badge.limited {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.product-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), rgba(78, 205, 196, 0.03));
}

[data-theme="light"] .product-image {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02), rgba(78, 205, 196, 0.02));
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225, 163, 121, 0.53), rgba(225, 163, 121, 0.53));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-add {
    background: white;
    border: none;
    padding: 15px 35px;
    border-radius: 10px;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.7s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quick-add:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-light);
}

.product-description {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.add-to-cart {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.7s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.add-to-cart:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
    padding: var(--section-padding);
    background: var(--dark-secondary);
    position: relative;
}

[data-theme="light"] .benefits {
    background: var(--light-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.benefit-card {
    padding: 35px 25px;
    background: var(--dark-bg);
    border-radius: 18px;
    border: 1px solid rgba(255, 107, 53, 0.08);
    transition: all 0.7s ease;
    text-align: center;
}

[data-theme="light"] .benefit-card {
    background: var(--light-accent);
    border-color: rgba(0, 0, 0, 0.06);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
    transition: transform 0.7s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-light);
}

.benefit-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--section-padding);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.testimonial-card {
    background: var(--dark-secondary);
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(255, 107, 53, 0.08);
    transition: all 0.7s ease;
}

[data-theme="light"] .testimonial-card {
    background: white;
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stars {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.testimonial-info h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-light);
}

.testimonial-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.final-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    border-radius: 12px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.7s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-btn i {
    transition: transform 0.7s ease;
}

.cta-btn:hover i {
    transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--dark-bg);
    padding: 70px 5% 30px;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

[data-theme="light"] footer {
    background: var(--light-accent);
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-section p,
.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color var(--transition);
}

.footer-section a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(245, 245, 220, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    text-decoration: none;
    transition: var(--transition);
}

body.dark-mode .social-link {
    background: rgba(212, 175, 55, 0.15);
    color: #E8E6E3;
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--dark-text);
    transform: translateY(-5px);
}

body.dark-mode .social-link:hover {
    color: #1A1816;
}


.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    :root {
        --section-padding: 70px 5%;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .products-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cart-sidebar {
        width: 100%;
    }
}