@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- DESIGN SYSTEM & VARIABLES --- */
:root {
    /* Colors */
    --bg-base: #070709;
    --bg-surface: #0f0f15;
    --bg-surface-elevated: #161622;
    --bg-glass: rgba(15, 15, 21, 0.7);
    --border-glass: rgba(255, 255, 255, 0.08);
    
    --primary: #8b5cf6;
    --primary-glow: rgba(139, 92, 246, 0.4);
    --primary-dark: #6d28d9;
    
    --accent-cyan: #06b6d4;
    --accent-cyan-glow: rgba(6, 182, 212, 0.4);
    
    --accent-gold: #f59e0b;
    --accent-gold-glow: rgba(245, 158, 11, 0.4);
    
    --accent-pink: #ec4899;
    --accent-pink-glow: rgba(236, 72, 153, 0.4);

    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --success: #10b981;
    --error: #ef4444;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing & Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Layout */
    --header-height: 80px;
    --max-width: 1400px;
}

/* --- RESET & BASIC STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-surface-elevated);
    border-radius: var(--radius-full);
    border: 2px solid var(--bg-base);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* --- GLASS CONTAINER UTILITY --- */
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
}

/* --- HEADER / NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

header.scrolled {
    height: 70px;
    background: rgba(7, 7, 9, 0.85);
    border-bottom: 1px solid var(--border-glass);
    backdrop-filter: blur(20px);
}

.nav-container {
    width: 100%;
    max-width: var(--max-width);
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.logo span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-cyan));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
    border: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.02);
}

.cart-toggle:hover {
    background: var(--bg-surface-elevated);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.cart-icon {
    font-size: 1.25rem;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, var(--primary), var(--accent-pink));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-count.pulse {
    transform: scale(1.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(7,7,9,0) 70%);
    top: -10%;
    right: -10%;
    z-index: 0;
    pointer-events: none;
    animation: pulse-glow 8s infinite alternate;
}

.hero-glow-secondary {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-cyan-glow) 0%, rgba(7,7,9,0) 70%);
    bottom: -10%;
    left: -10%;
    z-index: 0;
    pointer-events: none;
    animation: pulse-glow 12s infinite alternate-reverse;
}

@keyframes pulse-glow {
    0% { transform: scale(1) translate(0, 0); opacity: 0.6; }
    100% { transform: scale(1.2) translate(-5%, 5%); opacity: 0.9; }
}

.hero-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255, 255, 255, 0.03);
}

.hero-badge i {
    color: var(--accent-gold);
    animation: float 2s infinite ease-in-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-pink) 50%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    width: 100%;
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    box-shadow: 0 4px 30px rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    left: 100%;
    transition: 0.8s ease;
}

.btn-secondary {
    border: 1px solid var(--border-glass);
    background: rgba(255,255,255,0.02);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--bg-surface-elevated);
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(0,0,0,0) 60%);
    z-index: 0;
    pointer-events: none;
}

.hero-image-card {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
    transition: var(--transition-smooth);
}

.hero-image-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.03);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.2);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

/* --- TECHNICAL FEATURES --- */
.features {
    padding: 8rem 2rem;
    position: relative;
    background: var(--bg-surface);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.features-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 3rem 2.5rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.feature-card:nth-child(1) .feature-icon-wrapper {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
    border-color: rgba(139, 92, 246, 0.2);
}

.feature-card:nth-child(2) .feature-icon-wrapper {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-cyan);
    border-color: rgba(6, 182, 212, 0.2);
}

.feature-card:nth-child(3) .feature-icon-wrapper {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-gold);
    border-color: rgba(245, 158, 11, 0.2);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- PRODUCTS SECTION --- */
.products {
    padding: 8rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.products-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    transition: var(--transition-fast);
    background: rgba(255,255,255,0.01);
}

.filter-btn:hover {
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

.filter-btn.active {
    background: var(--text-primary);
    color: var(--bg-base);
    border-color: var(--text-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.product-card {
    border-radius: var(--radius-lg);
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: translateY(-4px);
}

.product-image-container {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
    background: #000;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.badge-speed {
    background: var(--primary);
    color: white;
}

.badge-control {
    background: var(--accent-gold);
    color: white;
}

.badge-stealth {
    background: var(--text-muted);
    color: white;
}

.badge-aurora {
    background: var(--accent-pink);
    color: white;
}

.product-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
}

.product-rating i {
    color: var(--accent-gold);
}

.product-rating span {
    color: var(--text-secondary);
    margin-left: 0.25rem;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
}

.btn-add-cart {
    background: linear-gradient(135deg, var(--bg-surface-elevated) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
}

.btn-add-cart:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-view {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-glass);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.btn-view:hover {
    background: var(--bg-surface-elevated);
    border-color: var(--text-primary);
}

/* --- STATS SECTION --- */
.stats {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-surface) 100%);
    border-top: 1px solid var(--border-glass);
}

.stats-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- TESTIMONIALS --- */
.testimonials {
    padding: 8rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem;
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
    position: relative;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-surface-elevated);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- FAQ SECTION --- */
.faq {
    padding: 8rem 2rem;
    background: var(--bg-surface);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
    background: var(--bg-base);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(255,255,255,0.15);
}

.faq-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

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

.faq-icon {
    font-size: 1rem;
    transition: transform var(--transition-smooth);
}

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

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}

.faq-text {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- FOOTER & NEWSLETTER --- */
footer {
    background: var(--bg-base);
    border-top: 1px solid var(--border-glass);
    padding: 6rem 2rem 3rem 2rem;
    margin-top: auto;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 1.5rem 0;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-glass);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
}

.social-link:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
    background: var(--bg-surface-elevated);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-menu a {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer-menu a:hover {
    color: var(--text-primary);
}

.footer-newsletter h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-newsletter p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-glass);
    background: var(--bg-surface);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
}

.newsletter-input:focus {
    border-color: var(--primary);
}

.btn-newsletter {
    padding: 0 1.25rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
}

.btn-newsletter:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- CART DRAWER --- */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100%;
    z-index: 200;
    transition: transform var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,0.8);
    border-left: 1px solid var(--border-glass);
}

.cart-drawer.open {
    transform: translateX(-420px);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-glass);
}

.cart-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.cart-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.cart-close:hover {
    background: var(--bg-surface-elevated);
    border-color: var(--text-primary);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-empty-message {
    text-align: center;
    color: var(--text-secondary);
    margin: auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cart-empty-message i {
    font-size: 3rem;
    color: var(--text-muted);
}

.cart-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cart-item-img {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 1px solid var(--border-glass);
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.cart-item-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

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

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid var(--border-glass);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
}

.qty-btn:hover {
    background: var(--bg-surface-elevated);
}

.cart-item-price {
    font-weight: 700;
    font-size: 1.1rem;
}

.cart-item-remove {
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition-fast);
}

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

.cart-footer {
    padding: 2rem;
    border-top: 1px solid var(--border-glass);
    background: var(--bg-surface-elevated);
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.cart-summary-line.total {
    margin-top: 1rem;
    border-top: 1px solid var(--border-glass);
    padding-top: 1rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.btn-checkout {
    width: 100%;
    margin-top: 1.5rem;
}

/* --- MODAL (Quick View & Checkout) --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 300;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}

.modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    border: 1px solid var(--border-glass);
    transform: scale(0.9);
    transition: transform var(--transition-smooth);
}

.modal.open .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
    background: var(--bg-surface);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    z-index: 12;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--bg-surface-elevated);
    border-color: var(--text-primary);
}

/* Quick View Layout */
.quick-view-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.quick-view-img-wrapper {
    aspect-ratio: 3/2;
    overflow: hidden;
    position: relative;
}

.quick-view-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-view-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.quick-view-info h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.quick-view-price {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.quick-view-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.quick-view-options {
    margin-bottom: 2.5rem;
}

.option-group {
    margin-bottom: 1.5rem;
}

.option-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.size-selector {
    display: flex;
    gap: 0.75rem;
}

.size-btn {
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-glass);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.size-btn:hover {
    border-color: var(--text-secondary);
}

.size-btn.active {
    background: var(--text-primary);
    color: var(--bg-base);
    border-color: var(--text-primary);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-glass);
}

.spec-item {
    font-size: 0.85rem;
}

.spec-item span {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    font-weight: 600;
}

.spec-item p {
    color: var(--text-secondary);
    font-weight: 600;
}

/* Checkout Form Layout */
.checkout-layout {
    padding: 3.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.checkout-layout h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.checkout-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-input {
    padding: 0.85rem 1.2rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-glass);
    background: rgba(255,255,255,0.02);
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-input:focus {
    border-color: var(--primary);
    background: var(--bg-surface-elevated);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.checkout-success-view {
    text-align: center;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.checkout-success-view h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
}

.checkout-success-view p {
    color: var(--text-secondary);
    max-width: 400px;
    line-height: 1.6;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1200px) {
    .products-grid {
        gap: 2rem;
    }
    .hero-title {
        font-size: 3.25rem;
    }
}

@media (max-width: 992px) {
    :root {
        --header-height: 70px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding-top: 3rem;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-card {
        transform: none;
        max-width: 500px;
    }
    
    .hero-image-card:hover {
        transform: scale(1.02);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
        gap: 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1.5fr 1fr;
        gap: 3rem;
    }
    
    .quick-view-layout {
        grid-template-columns: 1fr;
    }
    
    .quick-view-img-wrapper {
        aspect-ratio: 16/9;
    }
    
    .quick-view-info {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Mobile navigation menu drawer can be simplified */
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
    
    .cart-drawer.open {
        transform: translateX(-100%);
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
}

/* ============================================= */
/* === PROFESSIONAL ENHANCEMENTS (v2.0) ======== */
/* ============================================= */

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* --- TOAST NOTIFICATION SYSTEM --- */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 500;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    pointer-events: auto;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 360px;
    position: relative;
    overflow: hidden;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.hiding {
    transform: translateX(120%);
    opacity: 0;
}

.toast-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.toast-success .toast-icon {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

.toast-info .toast-icon {
    background: rgba(139, 92, 246, 0.15);
    color: var(--primary);
}

.toast-warning .toast-icon {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-gold);
}

.toast-content {
    flex-grow: 1;
}

.toast-title {
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
}

.toast-message {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    background: var(--primary);
    animation: toast-progress-anim 3s linear forwards;
}

@keyframes toast-progress-anim {
    from { width: 100%; }
    to { width: 0%; }
}

/* --- BACK TO TOP BUTTON --- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-glass);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 20px var(--primary-glow);
    transform: translateY(-3px);
}

/* --- STOCK / URGENCY BADGE --- */
.stock-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.stock-low {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.stock-low .stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--error);
    animation: stock-pulse 1.5s infinite;
}

@keyframes stock-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* --- 3D TILT CARD EFFECT --- */
.tilt-card {
    transform-style: preserve-3d;
    will-change: transform;
}

.tilt-card .product-info {
    transform: translateZ(20px);
}

.tilt-card .product-badge {
    transform: translateZ(40px);
}

/* --- PRODUCT CARD IMAGE OVERLAY GRADIENT --- */
.product-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image-container::after {
    opacity: 1;
}

/* --- ANIMATED GRADIENT LINE SEPARATOR --- */
.gradient-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent-cyan), var(--accent-pink), transparent);
    background-size: 200% 100%;
    animation: gradient-flow 4s linear infinite;
    margin: 0;
    border: none;
}

@keyframes gradient-flow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* --- COMPARISON TABLE --- */
.comparison {
    padding: 8rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table thead th {
    padding: 1.5rem 1.25rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-glass);
    white-space: nowrap;
}

.comparison-table thead th:first-child {
    text-align: left;
}

.comparison-table tbody td {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    text-align: center;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-glass);
    background: var(--bg-base);
    transition: background 0.2s;
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.comparison-table tbody tr:hover td {
    background: var(--bg-surface);
}

.comparison-table .check {
    color: var(--success);
    font-size: 1.1rem;
}

/* --- LOGO IMAGE --- */
.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}

/* --- ENHANCED MOBILE RESPONSIVE --- */

/* Tablet */
@media (max-width: 768px) {
    /* --- Toast & Misc --- */
    .toast-container { left: 1rem; right: 1rem; bottom: 1rem; }
    .toast { max-width: 100%; }
    .back-to-top { width: 36px; height: 36px; bottom: 1rem; left: 1rem; font-size: 0.8rem; }

    /* --- Header --- */
    .logo-img { width: 28px; height: 28px; }

    /* --- Hero Section (compact) --- */
    .hero { padding: 4rem 1.25rem 3rem; min-height: auto; }
    .hero-container { padding-top: 1rem; }
    .hero-title { font-size: 2rem; line-height: 1.15; }
    .hero-badge { font-size: 0.7rem; padding: 0.35rem 0.75rem; }
    .hero-desc { font-size: 0.9rem; margin-bottom: 1.5rem; }
    .hero-actions { flex-direction: column; width: 100%; align-items: stretch; gap: 0.75rem; }
    .hero-actions .btn { width: 100%; justify-content: center; padding: 0.75rem 1rem; font-size: 0.9rem; }
    .hero-image-card { margin-top: 1rem; }
    .hero-image-card img { border-radius: var(--radius-md); }

    /* --- Features (compact) --- */
    .features { padding: 3rem 1.25rem; }
    .section-header { margin-bottom: 2rem; }
    .section-title { font-size: 1.6rem; }
    .section-subtitle { font-size: 0.7rem; letter-spacing: 2px; }
    .features-grid { gap: 1rem; }
    .feature-card { padding: 1.5rem; }
    .feature-title { font-size: 1rem; margin-bottom: 0.5rem; }
    .feature-card p { font-size: 0.85rem; line-height: 1.5; }
    .feature-icon-wrapper { width: 40px; height: 40px; font-size: 1rem; margin-bottom: 1rem; }

    /* --- Products (horizontal scroll on mobile!) --- */
    .products { padding: 3rem 1.25rem; }
    .products-filters { flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; }
    .filter-btn { padding: 0.4rem 0.85rem; font-size: 0.75rem; }
    .products-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 1rem;
        max-width: 100%;
    }
    .products-grid::-webkit-scrollbar { height: 4px; }
    .products-grid::-webkit-scrollbar-track { background: var(--bg-surface); border-radius: 2px; }
    .products-grid::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }
    .product-card {
        min-width: 280px;
        max-width: 300px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    .product-title { font-size: 1.15rem; }
    .product-price { font-size: 1.15rem; }
    .product-header { flex-direction: column; gap: 0.35rem; }
    .product-description { font-size: 0.82rem; line-height: 1.4; -webkit-line-clamp: 2; }
    .product-info { padding: 1.15rem; }
    .product-actions { grid-template-columns: 1fr; gap: 0.5rem; }
    .btn-view { width: 100%; height: 40px; }
    .stock-badge { font-size: 0.7rem; padding: 0.35rem 0.75rem; margin-bottom: 1rem; }

    /* --- Stats (compact 2x2) --- */
    .stats { padding: 3rem 1.25rem; }
    .stats-container { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.7rem; }

    /* --- Comparison (hide on mobile - too complex for small screens) --- */
    .comparison { display: none; }

    /* --- Testimonials (horizontal scroll) --- */
    .testimonials { padding: 3rem 1.25rem; }
    .testimonials-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 0.75rem;
        max-width: 100%;
    }
    .testimonials-grid::-webkit-scrollbar { height: 4px; }
    .testimonials-grid::-webkit-scrollbar-track { background: var(--bg-surface); border-radius: 2px; }
    .testimonials-grid::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }
    .testimonial-card {
        min-width: 260px;
        max-width: 300px;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 1.25rem;
    }
    .testimonial-quote { font-size: 0.85rem; margin-bottom: 1rem; line-height: 1.5; }
    .testimonial-avatar { width: 36px; height: 36px; font-size: 0.75rem; }
    .testimonial-info h4 { font-size: 0.85rem; }
    .testimonial-info p { font-size: 0.7rem; }

    /* --- FAQ (compact) --- */
    .faq { padding: 3rem 1.25rem; }
    .faq-header { padding: 1rem; }
    .faq-question { font-size: 0.9rem; }
    .faq-text { padding: 0 1rem 1rem 1rem; font-size: 0.85rem; }

    /* --- Footer (compact) --- */
    footer { padding: 3rem 1.25rem 2rem; }
    .footer-container { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
    .newsletter-form { flex-direction: column; }
    .btn-newsletter { padding: 0.7rem; }

    /* --- Modals (full screen on mobile) --- */
    .modal-container { width: 95%; max-height: 85vh; border-radius: var(--radius-md); }
    .quick-view-layout { grid-template-columns: 1fr; }
    .quick-view-img-wrapper { aspect-ratio: 16/9; max-height: 200px; }
    .quick-view-info { padding: 1.5rem; }
    .quick-view-info h2 { font-size: 1.5rem; }
    .quick-view-price { font-size: 1.25rem; margin-bottom: 1rem; }
    .quick-view-desc { font-size: 0.85rem; margin-bottom: 1.25rem; }
    .spec-grid { gap: 0.75rem; margin-bottom: 1.5rem; }
    .size-selector { flex-wrap: wrap; }
    .size-btn { flex: 1; text-align: center; min-width: 0; font-size: 0.7rem; padding: 0.45rem; }

    .checkout-layout { padding: 1.75rem 1.25rem; }
    .checkout-layout h2 { font-size: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }

    /* --- Cart Drawer (full width) --- */
    .cart-drawer { width: 100%; right: -100%; }
    .cart-drawer.open { transform: translateX(-100%); }
    .cart-header { padding: 1.25rem 1.5rem; }
    .cart-items { padding: 1.25rem; }
    .cart-footer { padding: 1.25rem; }

    /* --- Gradient lines thinner on mobile --- */
    .gradient-line { height: 1px; }
}

/* Very small phones */
@media (max-width: 380px) {
    .hero-title { font-size: 1.7rem; }
    .hero-desc { font-size: 0.82rem; }
    .section-title { font-size: 1.4rem; }
    .product-card { min-width: 240px; }
    .testimonial-card { min-width: 230px; }
    .stat-number { font-size: 1.6rem; }
    .btn { padding: 0.7rem 1rem; font-size: 0.8rem; }
}
