/* --- CSS VARIABLES & THEMES --- */
:root, [data-theme="genz"] {
    --bg: #0B0B0F;
    --text: #FFFFFF;
    --text-muted: #A1A1AA;
    --primary: #7C3AED;
    --accent: #22D3EE;
    --highlight: #F43F5E;
    --surface: rgba(255, 255, 255, 0.03);
    --surface-hover: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.15);
    --font-head: 'Clash Display', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 20px;
    --shadow: 0 8px 32px rgba(124, 58, 237, 0.15);
}

[data-theme="minimal"] {
    --bg: #FAFAFA;
    --text: #111111;
    --text-muted: #666666;
    --primary: #000000;
    --accent: #555555;
    --highlight: #000000;
    --surface: #FFFFFF;
    --surface-hover: #F0F0F0;
    --border: #E5E5E5;
    --radius: 0px; 
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}
h1, h2, h3 { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- CUSTOM CURSOR --- */
.cursor-dot {
    position: fixed; top: 0; left: 0; width: 8px; height: 8px;
    background: var(--accent); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-glow {
    position: fixed; top: 0; left: 0; width: 300px; height: 300px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.15; border-radius: 50%; pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%); filter: blur(20px);
}
[data-theme="minimal"] .cursor-glow { display: none; }

/* --- NAVBAR --- */
.navbar {
    position: fixed; top: 0; width: 100%; padding: 1.5rem 4rem;
    display: flex; justify-content: space-between; align-items: center;
    background: var(--bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border); z-index: 100;
    transition: all 0.3s ease;
}
.nav-brand { font-family: var(--font-head); font-size: 2rem; font-weight: 900; letter-spacing: -1px; cursor: pointer;}
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; transition: color 0.3s; }
.nav-links a:hover { color: var(--accent); }
.nav-controls { display: flex; gap: 1.5rem; align-items: center; }
.icon-btn { font-size: 1.2rem; color: var(--text); display: flex; align-items: center; gap: 0.5rem; }
/* --- PREMIUM NAVBAR ICONS --- */
.nav-controls { display: flex; gap: 1.5rem; align-items: center; }
.icon-btn { color: var(--text); display: flex; align-items: center; justify-content: center; transition: transform 0.3s; }
.icon-btn:hover { transform: scale(1.1); }
.cart-btn-wrap { position: relative; }
#cart-count { 
    position: absolute; top: -6px; right: -8px; 
    background: var(--text); color: var(--bg); /* High contrast */
    font-size: 0.65rem; padding: 2px 6px; border-radius: 12px; font-weight: 800;
    border: 2px solid var(--bg); /* Creates a cutout effect */
}

/* --- MAIN CONTAINER & ANIMATIONS --- */
#app-root { min-height: 100vh; padding-top: 80px; }
.page-transition { animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(30px); filter: blur(5px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* --- VIEWS: HOME (Brutalist Style) --- */
.hero {
    height: 90vh; display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
    text-align: left; padding: 0 4rem; position: relative; overflow: hidden;
}
.hero h1 { font-size: clamp(4rem, 8vw, 7rem); font-weight: 900; line-height: 0.95; margin-bottom: 1.5rem; letter-spacing: -3px; }
.hero p { font-size: clamp(1.2rem, 2vw, 1.8rem); color: var(--text-muted); margin-bottom: 3rem; max-width: 800px; font-weight: 500; letter-spacing: -0.5px;}

.btn-primary {
    padding: 1.2rem 3rem; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px;
    background: var(--text); color: var(--bg); font-weight: 800;
    border-radius: 50px; transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255,255,255,0.1); }
[data-theme="minimal"] .btn-primary { border-radius: 0; }

/* --- VIEWS: SHOP (Grid) --- */
.shop-container { padding: 4rem; }
.shop-header { margin-bottom: 3rem; display: flex; justify-content: space-between; align-items: flex-end;}
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 3rem; }
.product-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.5rem; transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); cursor: pointer;
}
.product-card:hover { transform: translateY(-10px); border-color: var(--accent); }
.product-card::before {
    content: 'Quick View'; display: block; font-size: 0.75rem; color: var(--text-muted);
    margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600;
}
.product-img { width: 100%; height: 400px; object-fit: cover; border-radius: calc(var(--radius) - 4px); margin-bottom: 1.5rem; }
.product-info { display: flex; justify-content: space-between; align-items: flex-start; }
.product-title { font-size: 1.4rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 0.2rem;}
.product-price { color: var(--text-muted); font-weight: 500; font-size: 1.1rem;}
.add-btn { background: transparent; color: var(--text); border: 1px solid var(--border); width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-size: 1.2rem; transition: all 0.3s;}
.add-btn:hover { background: var(--text); color: var(--bg); }

/* --- PRODUCT DETAIL PAGE (PDP) --- */
.pdp-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: 4rem; max-width: 1400px; margin: 0 auto; }
.pdp-gallery { display: grid; gap: 1rem; }
.pdp-main-img { width: 100%; height: 70vh; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.pdp-thumbnails { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pdp-thumbnails img { width: 100%; height: 150px; object-fit: cover; border-radius: calc(var(--radius) / 2); cursor: pointer; opacity: 0.5; transition: 0.3s; }
.pdp-thumbnails img:hover { opacity: 1; }
.pdp-info { display: flex; flex-direction: column; justify-content: center; }
.pdp-title { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 0.5rem; line-height: 1; letter-spacing: -2px;}
.pdp-rating { margin-bottom: 1.5rem; color: #fbbf24; font-size: 1.2rem; letter-spacing: 2px;}
.pdp-rating span { color: var(--text-muted); font-size: 0.9rem; margin-left: 0.5rem; letter-spacing: normal; font-family: var(--font-body);}
.pdp-price { font-size: 2rem; color: var(--accent); margin-bottom: 2rem; font-weight: 800; font-family: var(--font-head);}
.pdp-desc { color: var(--text-muted); font-size: 1.1rem; line-height: 1.6; margin-bottom: 2rem; }
.pdp-fabric { background: var(--surface); padding: 1.5rem; border-radius: calc(var(--radius)/2); border: 1px solid var(--border); margin-bottom: 2rem; }
.pdp-fabric h4 { margin-bottom: 0.5rem; color: var(--text); font-size: 1rem;}
.pdp-fabric p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5;}

/* --- ABOUT PAGE --- */
.about-container { padding: 4rem; max-width: 1200px; margin: 0 auto; overflow: hidden; }
.about-hero { text-align: left; padding: 4rem 0; position: relative; }
.about-hero h1 { font-size: clamp(3rem, 6vw, 6rem); line-height: 1; margin-bottom: 2rem; letter-spacing: -2px; }
.about-hero h1 span { color: transparent; -webkit-text-stroke: 1px var(--text); }
.about-hero p { font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--text-muted); max-width: 800px; line-height: 1.6; }

.founder-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin: 8rem 0; }
.founder-img-wrapper { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.founder-img { width: 100%; height: 600px; object-fit: cover; filter: grayscale(30%); transition: filter 0.6s ease, transform 0.6s ease; }
.founder-img-wrapper:hover .founder-img { filter: grayscale(0%); transform: scale(1.05); }
.founder-content h2 { font-size: 3rem; margin-bottom: 0.5rem; letter-spacing: -1px;}
.founder-content h3 { font-size: 1.2rem; color: var(--accent); margin-bottom: 2rem; letter-spacing: 2px; }
.founder-content p { font-size: 1.1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 1.5rem; }
.quote-block { border-left: 4px solid var(--primary); padding-left: 1.5rem; font-style: italic; font-size: 1.4rem; margin: 2.5rem 0; color: var(--text); font-family: var(--font-head);}

.philosophy-section { margin: 8rem 0; }
.philosophy-section h2 { font-size: 4rem; margin-bottom: 1rem; letter-spacing: -2px;}
.philosophy-section > p { color: var(--text-muted); font-size: 1.2rem; margin-bottom: 4rem; }
.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.phil-card { padding: 4rem 2rem; border-radius: var(--radius); border: 1px solid var(--border); transition: transform 0.4s; }
.phil-card:hover { transform: translateY(-10px); }
.phil-genz { background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(34, 211, 238, 0.05)); backdrop-filter: blur(12px); border-color: rgba(124, 58, 237, 0.3);}
.phil-minimal { background: var(--surface); }
.phil-card h3 { font-size: 2.5rem; margin-bottom: 1.5rem; letter-spacing: -1px;}
.phil-card ul { list-style: none; color: var(--text-muted); line-height: 2; font-size: 1.1rem;}

.values-section { margin: 8rem 0; }
.values-section h2 { font-size: 4rem; margin-bottom: 3rem; letter-spacing: -2px;}
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.value-card { background: var(--surface); padding: 3rem 2rem; border-radius: var(--radius); border: 1px solid var(--border); transition: background 0.3s; }
.value-card:hover { background: var(--surface-hover); }
.value-card h4 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--text); }
.value-card p { color: var(--text-muted); line-height: 1.6; }

.vision-section { text-align: center; padding: 8rem 2rem; background: var(--surface); border-radius: var(--radius); margin-bottom: 4rem; border: 1px solid var(--border); }
.vision-section h2 { font-size: clamp(3rem, 5vw, 5rem); margin-bottom: 1.5rem; letter-spacing: -2px;}
.vision-section p { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

/* --- CART SIDEBAR --- */
.cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); backdrop-filter: blur(5px); z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.3s;}
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-sidebar {
    position: fixed; top: 0; right: -450px; width: 450px; height: 100vh;
    background: var(--bg); border-left: 1px solid var(--border); z-index: 1001;
    display: flex; flex-direction: column; transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.cart-sidebar.active { right: 0; }
.cart-header { padding: 2rem; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center;}
.cart-items { flex: 1; overflow-y: auto; padding: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.cart-item { display: flex; gap: 1.5rem; align-items: center; }
.cart-item img { width: 90px; height: 120px; object-fit: cover; border-radius: 8px;}
.cart-item-info { flex: 1; }
.cart-item-title { font-size: 1rem; margin-bottom: 0.5rem; font-weight: 600; font-family: var(--font-head); text-transform: uppercase;}
.cart-item-price { color: var(--text-muted); font-size: 0.95rem; }
.cart-qty { display: flex; gap: 1rem; margin-top: 0.8rem; align-items: center; background: var(--surface); border: 1px solid var(--border); width: fit-content; padding: 4px 12px; border-radius: 50px;}
.cart-footer { padding: 2rem; border-top: 1px solid var(--border); background: var(--bg); }
.cart-total { display: flex; justify-content: space-between; font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; font-family: var(--font-head);}

/* --- FORMS & CHECKOUT --- */
.checkout-container { max-width: 1000px; margin: 4rem auto; padding: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--text-muted); font-weight: 500;}
.form-group input, .form-group select { 
    width: 100%; padding: 1.2rem; background: var(--surface); border: 1px solid var(--border);
    color: var(--text); border-radius: calc(var(--radius)/2); font-family: inherit; outline: none; transition: border-color 0.3s; font-size: 1rem;
}
.form-group input:focus, .form-group select:focus { border-color: var(--text); }
.phone-input-group { display: flex; gap: 0.5rem; }
.phone-input-group select { width: 140px; cursor: pointer; }

/* --- FOOTER --- */
footer { padding: 4rem; border-top: 1px solid var(--border); margin-top: 4rem; }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.footer-content .brand { font-family: var(--font-head); font-weight: 900; font-size: 1.5rem; opacity: 0.5; letter-spacing: -1px;}
.footer-content .links { display: flex; gap: 2rem; font-size: 0.9rem; color: var(--text-muted); font-weight: 500;}

/* --- PREMIUM DASHBOARD & ANIMATIONS --- */
.dashboard-container { max-width: 1200px; margin: 4rem auto; padding: 2rem; }
.dashboard-header { display: flex; align-items: center; gap: 2.5rem; margin-bottom: 4rem; flex-wrap: wrap; }

/* Spinning Gradient Avatar Ring */
.avatar-ring { 
    width: 120px; height: 120px; border-radius: 50%; 
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--highlight)); 
    padding: 4px; animation: spin 4s linear infinite; 
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
}
@keyframes spin { 100% { transform: rotate(360deg); } }
.avatar-inner { 
    width: 100%; height: 100%; background: var(--bg); border-radius: 50%; 
    display: grid; place-items: center; font-size: 3rem; 
    animation: spin 4s linear infinite reverse; /* Keeps the icon straight while ring spins */
}

.dash-title { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -2px; line-height: 1; margin-bottom: 0.5rem;}
.dashboard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }

/* Dashboard Cards with Shine Effect */
.dash-card { 
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); 
    padding: 2.5rem; transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s; 
    position: relative; overflow: hidden;
}
.dash-card::before {
    content: ''; position: absolute; top: 0; left: -150%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transform: skewX(-20deg); transition: 0.6s ease;
}
.dash-card:hover::before { left: 150%; }
.dash-card:hover { transform: translateY(-10px); border-color: var(--accent); box-shadow: var(--shadow); }
.dash-card h3 { font-size: 1.5rem; margin-bottom: 2rem; letter-spacing: -1px; border-bottom: 1px solid var(--border); padding-bottom: 1rem;}

/* Order Tracking List */
.order-item { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 0; border-bottom: 1px solid var(--border); }
.order-item:last-child { border-bottom: none; }
.status-badge { padding: 6px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;}
.status-transit { background: rgba(34, 211, 238, 0.1); color: var(--accent); border: 1px solid var(--accent); }
.status-delivered { background: rgba(124, 58, 237, 0.1); color: var(--primary); border: 1px solid var(--primary); }

/* --- 3D PARALLAX & HERO ANIMATIONS --- */
.hero { perspective: 1000px; } /* Enables 3D space */
.hero-content { 
    transform-style: preserve-3d; 
    transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    position: relative; z-index: 2;
}
.hero-content h1 { transform: translateZ(60px); } /* Pops the text out in 3D */
.hero-content p { transform: translateZ(30px); }
.hero-content .btn-primary { transform: translateZ(45px); }

/* Floating 3D Badge */
.floating-badge {
    position: absolute; top: 15%; right: 10%;
    width: 150px; height: 150px; border-radius: 50%;
    border: 1px dashed var(--text-muted); display: grid; place-items: center;
    animation: floatSpin 15s linear infinite; transform-style: preserve-3d;
}
.floating-badge span { font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; text-align: center; }
@keyframes floatSpin { 
    0% { transform: translateY(0) rotateX(20deg) rotateY(0deg) rotateZ(0deg); } 
    50% { transform: translateY(-20px) rotateX(-20deg) rotateY(180deg) rotateZ(180deg); }
    100% { transform: translateY(0) rotateX(20deg) rotateY(360deg) rotateZ(360deg); } 
}

/* Infinite Scrolling Marquee */
.marquee-container {
    width: 100%; overflow: hidden; background: var(--text); color: var(--bg);
    padding: 1rem 0; position: absolute; bottom: 0; left: 0; z-index: 10;
    transform: rotate(-2deg) scale(1.05); transform-origin: center;
}
.marquee-content {
    display: flex; white-space: nowrap; font-family: var(--font-head);
    font-size: 1.5rem; font-weight: 800; text-transform: uppercase;
    animation: marqueeScroll 20s linear infinite; gap: 3rem;
}
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- MEGA FOOTER --- */
footer { border-top: 1px solid var(--border); margin-top: 4rem; padding-top: 4rem; position: relative; overflow: hidden; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; padding: 0 4rem 4rem; max-width: 1400px; margin: 0 auto; }
.footer-brand-info h2 { font-size: 2.5rem; letter-spacing: -1px; margin-bottom: 1rem; }
.footer-brand-info p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.1rem; }
.newsletter { display: flex; border-bottom: 2px solid var(--text); padding-bottom: 0.5rem; }
.newsletter input { background: transparent; border: none; color: var(--text); flex: 1; outline: none; font-size: 1rem; font-family: var(--font-body); text-transform: uppercase; }
.newsletter button { color: var(--text); font-size: 1.5rem; font-weight: 800; transition: transform 0.3s; }
.newsletter button:hover { transform: translateX(5px); }

.footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: 1rem; }
.footer-col h4 { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.5rem; font-family: var(--font-body); }
.footer-col a { font-weight: 600; font-size: 1rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom { display: flex; justify-content: space-between; padding: 2rem 4rem; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; }

/* Massive Brand Text */
.footer-massive {
    font-family: var(--font-head); font-size: 24vw; font-weight: 900; line-height: 0.75;
    text-align: center; color: var(--surface-hover); letter-spacing: -5px; 
    user-select: none; pointer-events: none; margin-top: -2rem;
}

/* --- APP-GRADE MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    /* Disable JS cursor on touch devices for maximum performance/zero lag */
    .cursor-dot, .cursor-glow { display: none !important; }
    
    /* Navbar styling for mobile */
    .navbar { padding: 1rem 1.5rem; background: var(--bg); }
    .nav-brand { font-size: 1.5rem; }
    
    /* Sticky Bottom Bar for Mobile App Feel */
    .nav-links { 
        position: fixed; bottom: 0; left: 0; width: 100%; 
        background: var(--bg); border-top: 1px solid var(--border); 
        padding: 1.2rem; display: flex; justify-content: space-around; 
        z-index: 1000; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    }
    .nav-links a { font-size: 0.75rem; font-weight: 800; }
    
    /* Layout Adjustments */
    #app-root { padding-bottom: 80px; } /* Prevent content from hiding behind bottom bar */
    .hero { padding: 0 1.5rem; height: 85vh; justify-content: flex-end; padding-bottom: 5rem; }
    .hero h1 { font-size: 3.5rem; letter-spacing: -2px; margin-bottom: 1rem;}
    .hero p { font-size: 1.1rem; }
    
    /* 2-Column Mobile Grid */
    .shop-container, .about-container, .pdp-container { padding: 1.5rem; }
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; } 
    .product-img { height: 220px; margin-bottom: 1rem;}
    .product-title { font-size: 1rem; margin-bottom: 0.5rem;}
    .product-card { padding: 1rem; }
    .product-card::before { font-size: 0.65rem; }
    .add-btn { width: 35px; height: 35px; font-size: 1.2rem; }
    
    /* Pages & Sections */
    .pdp-container { grid-template-columns: 1fr; padding: 1.5rem; }
    .pdp-main-img { height: 50vh; }
    .founder-section, .philosophy-grid { grid-template-columns: 1fr; gap: 3rem; margin: 4rem 0;}
    .founder-img { height: 400px; }
    .about-hero h1 { font-size: 3rem; }
    
    /* Cart & Checkout */
    .cart-sidebar { width: 100%; right: -100%; }
    .checkout-container { margin: 2rem auto; padding: 1rem; }
    .checkout-container > div { grid-template-columns: 1fr !important; gap: 2rem !important; }
    
    /* Footer Stacking */
    footer { padding: 3rem 1.5rem 6rem; margin-top: 2rem; }
    .footer-content { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-content .links { flex-direction: column; gap: 1rem; }

    /* Add this inside @media (max-width: 768px) */
    .hero-content { transform: none !important; } /* Disable 3D tilt on mobile */
    .floating-badge { display: none; }
    .footer-top { grid-template-columns: 1fr; padding: 0 1.5rem 2rem; gap: 3rem; }
    .footer-links-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; padding: 2rem 1.5rem; text-align: center; }
}
/* --- MOBILE NAVBAR FIX --- */
@media (max-width: 768px) {
    /* 1. Shrink the header padding so it fits the small screen */
    header {
        padding: 1rem 5% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    /* 2. Hide the center text links (Home, Shop, About) to make room */
    /* (You can add a hamburger menu for these later if you want!) */
    header nav, 
    .nav-links {
        display: none !important; 
    }

    /* 3. Force the icons container to stay visible and perfectly spaced */
    header div:last-child,
    .nav-icons {
        display: flex !important;
        gap: 1rem !important;
        align-items: center !important;
    }

    /* 4. Make the logo a bit smaller so it doesn't crowd the icons */
    header .logo {
        font-size: 1.5rem !important;
    }
}