:root {
    --bg-color: #ffffff;
    /* Pure White */
    --text-color: #1a1a1a;
    /* Dark Grey/Black for text */
    --accent-color: #000000;
    /* Black for sharp contrast/premium feel */
    --accent-hover: #333333;
    --secondary-bg: #f4f4f5;
    --card-bg: #f9f9f9;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.1);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html {
    overflow-y: scroll;
    /* Force scrollbar track to always be visible to prevent layout shift */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: default;
    /* Restored default cursor */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    /* Restored pointer cursor */
}

/* Hide default cursor ONLY when custom cursor is active */
/* Cursor hiding removed to ensure usability */
body.custom-cursor-active,
body.custom-cursor-active button,
body.custom-cursor-active a,
body.custom-cursor-active input,
body.custom-cursor-active textarea {
    cursor: auto !important;
    /* Ensure cursor is always visible */
}

/* Custom Cursor - DISABLED */
.cursor,
.cursor-follower {
    display: none !important;
}

/*
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-follower {
    position: fixed;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    z-index: 9998;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}
*/

/* Navbar "Wow" Effect */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    /* Reduced from 90% */
    max-width: 1400px;
    z-index: 1000;
    padding: 0.8rem 2rem;
    /* Reduced vertical padding */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    /* Rounded "Wow" shape */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

@media (max-width: 768px) {

    .navbar,
    .navbar.scrolled {
        width: 90% !important;
        padding: 0.8rem 1rem;
        /* Less horizontal padding on mobile */
        top: 10px;
    }
}

.navbar.scrolled {
    width: 60%;
    /* Reduced from 95% */
    top: 10px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.navbar.nav-hidden {
    transform: translate(-50%, -200%) !important;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-color);
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    opacity: 0.7;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.cart-icon,
.wishlist-icon,
.menu-icon {
    position: relative;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.cart-icon:hover,
.wishlist-icon:hover {
    transform: scale(1.1);
    color: var(--accent-color);
}

.cart-count,
.wishlist-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-icon {
    display: none;
}

/* Sections */
.page-section {
    display: none;
    min-height: 100vh;
    padding-top: 80px;
    animation: fadeIn 0.8s ease-out;
}

.page-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: -80px;
    /* Counteract nav padding */
    perspective: 1500px;
    /* Enable 3D space for watch carousel */
}

/* Hero Overlay for Spotlight Effect */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 5;
    /* Above background image (0), below content (10) */
    opacity: 0;
    /* Hidden initially, illuminated by JS */
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Use variables for GSAP animation */
    --gradient-inner: #f0f0f0;
    --gradient-outer: #ffffff;
    background: radial-gradient(circle at center, var(--gradient-inner) 0%, var(--gradient-outer) 100%);
    z-index: -1;
    transition: opacity 2s;
    /* Keep opacity transition for initial load */
}

@keyframes slowZoom {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1.2);
    }
}

.hero-content {
    z-index: 10;
    position: absolute;
    bottom: 80px;
    /* Position at the bottom */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    pointer-events: none;
    /* Let clicks pass through empty space */
}

/* Ensure button is clickable despite parent pointer-events */
.hero-content>* {
    pointer-events: auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    /* Slightly reduced to fit two lines */
    line-height: 1.1;
    margin-bottom: 0.5rem;
    /* Reduced margin for stacked titles */
    background: linear-gradient(45deg, #000, #555);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    /* Animation handled by GSAP now, but keeping keyframes for safety if needed */
    /* animation: slideUp 1s 0.5s forwards; */
}

.gold-text {
    background: linear-gradient(45deg, var(--accent-color), #333);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5);
    background: none;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideUp 1s 0.8s forwards;
    letter-spacing: 1px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    animation: fadeIn 1s 1.2s forwards;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    color: #fff !important;
}

/* Featured Section */
.featured-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--accent-color);
}

.featured-grid,
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 4rem 2rem 2rem 2rem;
    position: relative;
    /* overflow: hidden; Removed to prevent cutting off if content flows out */
    min-height: 200px;
    /* Ensure at least some height */
}

/* Force visibility in case GSAP fails to animate */
.product-card {
    opacity: 1 !important;
    transform: none !important;
}


.shop-header {
    position: relative;
    /* overflow: hidden; REMOVED to allow dropdowns to show */
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 100;
    /* Ensure on top of grid */
}

/* Background glow removed */
.shop-header::before {
    display: none;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1.1);
    }
}

.page-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    text-align: center;
    /* Centering added */
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #000 0%, var(--accent-color) 50%, #000 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease infinite;
    position: relative;
    /* Shadows removed */
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Filter Bar - Minimalist Luxury (Light Theme Fix) */
.filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 50;

    /* Remove Capsule Styles */
    background: transparent;
    padding: 1rem 0;
    width: 100%;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    /* Dark border for light bg */
}

/* Base Filter Button */
.filter-btn {
    padding: 0.5rem 0;
    background: transparent;
    border: none;
    color: rgba(0, 0, 0, 0.5);
    /* Dark grey text */
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #000;
    /* Black underline */
    transition: width 0.3s ease;
}

/* Hover State */
.filter-btn:hover {
    color: #000;
}

/* Active State */
.filter-btn.active {
    color: #000;
}

.filter-btn.active::after {
    width: 100%;
}

/* Remove old pseudo-element effects */
.filter-btn::before {
    display: none;
}

.filter-btn:active {
    transform: scale(0.98);
}

/* Standard Product Grid (Matches Homepage) */
#shop-grid {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Standard width */
    gap: 3rem;
}

@media (min-width: 1200px) {
    #shop-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Force 3 columns on large screens for consistency */
    }
}

/* Filter Divider */
.filter-divider {
    width: 1px;
    height: 20px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 1rem;
}

/* Filter Toggle Button (Desktop Hidden) */
.filter-toggle-btn {
    display: none;
    /* Hidden by default */
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.8rem 1.5rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1rem;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.filter-toggle-btn:hover {
    background: var(--accent-color);
    color: #fff;
}

@media (min-width: 900px) {
    .filter-divider {
        display: block;
    }
}

/* Price Filter */
.price-filter-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 1rem;
}

.price-label {
    font-size: 0.8rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

#priceValue {
    color: #000;
    font-weight: 700;
}

input[type=range] {
    -webkit-appearance: none;
    width: 100px;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    outline: none;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
    transition: transform 0.2s;
    border: none;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

/* Sort Select - Minimal */
/* Premium Dropdown Selects */
.glass-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 12px 45px 12px 25px;
    /* Extra padding right for arrow */
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    min-width: 180px;
    /* Minimum width for consistency */

    /* Custom Arrow SVG (Chevron Down) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.glass-select:hover {
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.glass-select:focus {
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.glass-select option {
    background: #fff;
    color: #000;
    padding: 15px;
    font-family: var(--font-body);
}

/* Product Detail */
.back-btn {
    margin: 2rem;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.back-btn:hover {
    color: var(--accent-color);
    transform: translateX(-5px);
}

.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.detail-image-wrapper {
    height: 600px;
    background: #f4f4f5;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.detail-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Contain to show full watch */
    padding: 2rem;
}

.detail-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.detail-price {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    display: block;
}

.detail-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
}

.add-to-cart-btn {
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: #fff;
    border: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    width: 100%;
    max-width: 300px;
    transition: var(--transition);
}

.add-to-cart-btn:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Cart Sidebar */
.cart-sidebar,
.wishlist-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #ffffff;
    z-index: 2000;
    padding: 2rem;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open,
.wishlist-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.close-cart {
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}

.close-cart:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.cart-item-price {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.remove-item {
    color: #666;
    cursor: pointer;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: inline-block;
}

.remove-item:hover {
    color: #ff4444;
}

.cart-footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.checkout-btn {
    width: 100%;
}

/* Footer */
/* Footer - Premium Dark */
footer {
    background: #050505;
    color: #fff;
    padding: 6rem 2rem 2rem 2rem;
    margin-top: 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: 2px;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-col a {
    display: block;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Newsletter Input */
.footer-newsletter {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    transition: border-color 0.3s;
}

.footer-newsletter:focus-within {
    border-color: #fff;
}

.footer-newsletter input {
    background: none;
    border: none;
    color: #fff;
    width: 100%;
    padding: 0.5rem 0;
    outline: none;
    font-family: var(--font-body);
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.3s;
}

.footer-newsletter button:hover {
    transform: translateX(5px);
}

/* Socials & Icons */
.socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.socials a {
    display: inline-block;
    margin: 0;
}

.socials i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
}

.socials a:hover i {
    color: #fff;
    transform: translateY(-3px);
}

.payment-icons {
    display: flex;
    gap: 1.2rem;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 1rem;
}

/* Footer Bottom Bar */
.footer-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    display: inline;
}

.legal-links a:hover {
    color: #fff;
    transform: none;
}

@media (max-width: 600px) {
    .footer-bar {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    z-index: 900;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin: 1.5rem 0;
    color: var(--text-color);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
    /* Delays handles by JS or simple css delay */
}

/* --- NEW SECTIONS --- */

/* Story Section */
.story-section {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.story-text {
    flex: 1;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.story-image {
    flex: 1;
    height: 700px;
    /* Increased height */
    position: relative;
}

.story-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    z-index: 0;
    transition: var(--transition);
}

.story-image:hover::before {
    top: 10px;
    right: 10px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

/* Categories Section */
.categories-section {
    display: flex;
    height: 60vh;
    width: 100%;
}

.category-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s ease;
}

.category-card:hover {
    flex: 1.5;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(0.6) grayscale(50%);
}

.category-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.8) grayscale(0%);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
    transform: translateY(20px);
    transition: var(--transition);
}

.category-card:hover .category-content {
    transform: translateY(0);
}

.category-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000;
}

.category-content a {
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: inline-block;
}

/* Newsletter Section */
.newsletter-section {
    padding: 8rem 2rem;
    background: url('https://images.unsplash.com/photo-1614164185128-e4ec99c436d7?q=80&w=1974&auto=format&fit=crop') no-repeat center center/cover;
    position: relative;
    text-align: center;
    background-attachment: fixed;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
}

.newsletter-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.newsletter-content p {
    color: #555;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid #ddd;
    color: #000;
    outline: none;
    font-family: var(--font-body);
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: #fff;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #fff;
}

@media (max-width: 900px) {
    .story-container {
        flex-direction: column;
    }

    .categories-section {
        flex-direction: column;
        height: auto;
    }

    .category-card {
        height: 300px;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* --- 3D & ANIMATION SECTIONS --- */

/* Movement Section */
.movement-section {
    padding: 10rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 50%, #f0f0f0 0%, #ffffff 100%);
    overflow: hidden;
}

.movement-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.movement-content {
    opacity: 0;
    transform: translateX(-50px);
}

.stat-item {
    margin-bottom: 2rem;
    padding-left: 2rem;
    border-left: 2px solid var(--accent-color);
}

.stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-desc {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* 3D Visual with Hotspots */
.movement-visual {
    position: relative;
    width: 100%;
    height: 600px;
    /* Fixed height for 3D container */
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.movement-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* or contain depending on image */
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: translateZ(20px);
}

.hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    transform: translateZ(50px);
    /* Floating above image */
    transition: transform 0.3s;
    box-shadow: 0 0 0 0 rgba(224, 224, 224, 0.7);
    animation: pulse-gold 2s infinite;
}

.hotspot:hover {
    transform: translateZ(80px) scale(1.5);
}

.hotspot::after {
    content: attr(data-info);
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    border: 1px solid var(--accent-color);
}

.hotspot:hover::after {
    opacity: 1;
}

@keyframes pulse-gold {
    0% {
        transform: translateZ(50px) scale(0.95);
        box-shadow: 0 0 0 0 rgba(224, 224, 224, 0.7);
    }

    70% {
        transform: translateZ(50px) scale(1);
        box-shadow: 0 0 0 15px rgba(224, 224, 224, 0);
    }

    100% {
        transform: translateZ(50px) scale(0.95);
        box-shadow: 0 0 0 0 rgba(224, 224, 224, 0);
    }
}

/* Teaser 3D Parallax */
.teaser-section {
    height: 80vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.teaser-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: url('https://images.unsplash.com/photo-1548690312-e3b507d8c110?q=80&w=1974&auto=format&fit=crop') no-repeat center center/cover;
    z-index: 0;
    filter: brightness(1.1);
}

.teaser-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
}

/* HERO PRODUCT SHOWCASE (Split Descriptions) */
.hero-product-showcase {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 800px 1fr;
    /* Increased spacer from 500 to 800px */
    gap: 2rem;
    align-items: center;
    padding: 0 5%;
    z-index: 10;
    pointer-events: none;
    /* Let clicks pass through to video/bg */
}

.hero-center-spacer {
    /* Empty space for the watch video */
    height: 100px;
}

.hero-desc {
    background: transparent;
    /* Removed glass background for cleaner text look */
    backdrop-filter: none;
    padding: 2rem;
    border-radius: 0;
    border: none;
    color: #fff;
    /* White text */
    pointer-events: auto;
    opacity: 0;
    /* Animated in */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Shadow for readability */
}

.hero-desc h3 {
    font-family: var(--font-heading);
    font-size: 3.0rem;
    /* Increased from 2.5rem */
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.9);
}

.hero-desc p {
    font-size: 1.6rem;
    /* Increased from 1.3rem */
    line-height: 1.6;
    color: #f0f0f0;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}

.hero-desc.left {
    text-align: right;
    border-right: none;
    /* Remove side border */
    padding-right: 0;
    margin-left: -80px;
}

.hero-desc.right {
    text-align: left;
    border-left: none;
    /* Remove side border */
    padding-left: 0;
}

/* Animations */
/* Initially Hidden */
.hero-desc {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-desc.active {
    opacity: 1;
}

.hero-desc.active.left {
    animation: slideInFromLeft 1.5s ease-out forwards;
}

.hero-desc.active.right {
    animation: slideInFromRight 1.5s ease-out forwards;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Showcase */
@media (max-width: 1024px) {
    .hero-product-showcase {
        grid-template-columns: 1fr;
        top: 20%;
        gap: 1rem;
        padding: 0 1rem;
        display: none;
        /* Hide complex overlay on mobile for cleaner look, or stack if preferred */
    }
}

.teaser-title {
    font-size: 6rem;
    line-height: 1;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to right, #000, #555);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* GSAP Animations */
.hero-title,
.hero-subtitle,
.btn-primary,
.section-title,
.product-card {
    opacity: 0;
    /* Initial state handled by GSAP */
}

/* Responsive adjustments for new sections */
@media (max-width: 900px) {
    .movement-container {
        grid-template-columns: 1fr;
    }

    .movement-visual {
        height: 400px;
        margin-top: 3rem;
    }

    .teaser-title {
        font-size: 3rem;
    }
}

/* =========================================
   ABOUT / SAVOIR-FAIRE SECTION
   ========================================= */
/* =========================================
   ABOUT / SAVOIR-FAIRE SECTION (Minimalist Luxury)
   ========================================= */
#about {
    padding-top: 150px;
    min-height: 100vh;
    background: #fff;
    color: #000;
}

.about-hero {
    text-align: center;
    margin-bottom: 6rem;
}

.about-subtitle {
    font-size: 1.1rem;
    color: #666;
    /* Dark grey for subtitle */
    margin-top: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 8rem;
}

.about-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border */
    padding: 4rem 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    border-color: #000;
    /* Highlight on hover */
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-icon {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 2rem;
    opacity: 0.8;
    transition: transform 0.5s ease;
}

.about-card:hover .about-icon {
    transform: scale(1.1);
    opacity: 1;
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #000;
    font-weight: 600;
}

.about-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 8rem;
}

.story-img-container {
    position: relative;
    border-radius: 0;
    /* Sharp corners for modern look, or keeping 20px if preferred. Let's go sharp/minimal */
    overflow: hidden;
    height: 600px;
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.story-img-container:hover .story-img {
    transform: scale(1.05);
    /* Reveal color on hover */
}

.story-details h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 2.5rem;
    color: #000;
    line-height: 1.1;
}

.story-details p {
    color: #444;
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.signature {
    font-family: 'Playfair Display', serif;
    /* Or keep current font if unavailable */
    font-size: 1.8rem;
    margin-top: 3rem;
    color: #000;
    font-style: italic;
    border-top: 2px solid #000;
    /* Stronger divider */
    padding-top: 1.5rem;
    display: inline-block;
    width: 60px;
    /* Small line initially */
    white-space: nowrap;
    overflow: visible;
}

@media (max-width: 968px) {
    .about-story {
        grid-template-columns: 1fr;
    }

    .story-img-container {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .navbar {
        padding: 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-content {
        bottom: 40px;
    }
}

/* NOISE TEXTURE FOR EXTRA DEPTH/LUXURY */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle noise SVG data URI */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9000;
    opacity: 0.03;
    /* Very subtle grain */
    mix-blend-mode: overlay;
}

/* FIX HOVER CONTRAST */
/* FIX HOVER CONTRAST */
.btn-primary:hover,
.card-btn:hover,
.checkout-btn:hover,
.enter-btn:hover,
.filter-btn:hover,
.add-to-cart-btn:hover {
    color: #fff !important;
    background: #000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

/* Ensure newsletter button also follows */
.newsletter-form button:hover {
    color: #fff !important;
    background: #000;
}

/* MOBILE MENU STYLES - MINIMALIST CLEAN */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0a0a0a;
    /* Noir mat simple et profond */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.mobile-menu::before {
    display: none;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    z-index: 10001;
}

.mobile-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    transition: transform 0.3s ease;
}


/* =================================================================
   FINAL MOBILE MENU REDESIGN - EDITORIAL STYLE
   ================================================================= */
.mobile-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: #050505 !important;
    /* ULTRA DARK */
    z-index: 9999 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    /* Left Align */
    padding-left: 10% !important;
    gap: 1.5rem !important;
    transform: translateX(100%) !important;
    /* Slide from Right */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
    /* Smooth Pop */
}

/* Texture Overlay */
.mobile-menu::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: -1;
}

.mobile-menu.active {
    transform: translateX(0) !important;
}

.mobile-close-btn {
    position: absolute !important;
    top: 2rem !important;
    right: 2rem !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    color: #fff !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    z-index: 10000 !important;
}

.mobile-close-btn:hover {
    background: #fff !important;
    color: #000 !important;
    transform: rotate(90deg) !important;
}

.mobile-link {
    font-family: var(--font-heading) !important;
    font-size: 2.2rem !important;
    /* BIGGER */
    font-weight: 300 !important;
    color: #666 !important;
    /* Grey default */
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition: all 0.4s ease !important;
    opacity: 0;
    /* Animated in */
    transform: translateX(50px);
    display: flex !important;
    align-items: baseline !important;
    gap: 1.5rem !important;
    letter-spacing: -1px !important;
}

/* Numbering */
.mobile-menu {
    counter-reset: link-counter;
}

.mobile-link::before {
    counter-increment: link-counter;
    content: '0' counter(link-counter);
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    color: var(--accent-color) !important;
    font-weight: 400 !important;
    position: relative;
    top: -5px;
}

.mobile-link:hover {
    color: #fff !important;
    padding-left: 20px !important;
}

/* Animations Trigger */
.mobile-menu.active .mobile-link {
    animation: slideInFade 0.8s cubic-bezier(0.2, 1, 0.3, 1) forwards !important;
}

@keyframes slideInFade {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu.active .mobile-link:nth-child(2) {
    animation-delay: 0.1s !important;
}

.mobile-menu.active .mobile-link:nth-child(3) {
    animation-delay: 0.15s !important;
}

.mobile-menu.active .mobile-link:nth-child(4) {
    animation-delay: 0.2s !important;
}

.mobile-menu.active .mobile-link:nth-child(5) {
    animation-delay: 0.25s !important;
}


.mobile-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}


/* =================================================================
   MOBILE IMMERSIVE DESIGN - MOVEMENT SECTION
   ================================================================= */
@media (max-width: 600px) {
    .movement-section {
        padding: 4rem 1.5rem !important;
        /* Removed background image as requested */
        background: #fff !important;
        min-height: auto !important;
        /* Reset height */
        display: block !important;
        /* Reset display */
        position: relative;
    }

    /* On cache le conteneur visuel d'origine pour éviter le doublon */
    .movement-visual {
        display: none !important;
    }

    .movement-container {
        display: block !important;
        max-width: 100% !important;
    }

    .movement-content {
        background: rgba(0, 0, 0, 0.6) !important;
        /* Carte verre sombre */
        backdrop-filter: blur(10px) !important;
        padding: 2rem !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        text-align: center !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    }

    .section-title {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
        text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8) !important;
    }

    .movement-content p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
        color: #ddd !important;
    }

    .stats-grid {
        display: flex !important;
        justify-content: space-between !important;
        margin-top: 1rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding-top: 1.5rem !important;
    }

    .stat-item {
        padding: 0 !important;
        border: none !important;
        text-align: center !important;
        flex: 1 !important;
    }

    .stat-num {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
}

/* =========================================
   CONTACT PAGE (Minimalist Luxury)
   ========================================= */
/* UNIVERSAL TEXT COLOR FIX FOR LIGHT SECTIONS */
#contact p,
#contact span,
#contact input,
#contact textarea,
#contact select,
#contact label,
#contact h1,
#contact h2,
#contact h3,
#contact h4,
#contact h5,
#contact h6,
#contact .page-title,
#contact .section-subtitle,
#contact .info-card p,
#contact .faq-item p,
#contact summary {
    color: #000 !important;
}

#contact .btn-primary {
    color: #000 !important;
    border-color: #000 !important;
}

#contact .btn-primary:hover {
    color: #fff !important;
    background: #000 !important;
}

#contact .page-title {
    background: none !important;
    -webkit-text-fill-color: #000 !important;
    text-shadow: none !important;
}

#contact {
    padding-top: 150px;
    min-height: 100vh;
    background: #fff;
    color: #000;
}

.contact-header-hero {
    text-align: center;
    margin-bottom: 5rem;
    padding: 0 2rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #000;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 6rem auto;
    padding: 0 2rem;
}

/* Form Styling */
.contact-form-wrapper {
    background: #fff;
    padding: 2rem;
}

.contact-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #000;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 1rem;
    background: #f9f9f9;
    border: 1px solid #eee;
    color: #000;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 4px;
    outline: none;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    background: #fff;
    border-color: #000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.input-group textarea {
    resize: vertical;
}

/* Info Cards & Map */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #000;
    transform: translateY(-3px);
}

.info-icon {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p {
    color: #000;
    line-height: 1.6;
}

.map-container {
    height: 300px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

/* Placeholders in Contact Form */
#contact input::placeholder,
#contact textarea::placeholder {
    color: #555 !important;
    opacity: 1;
}

.map-container iframe {
    transition: filter 0.5s ease;
}

/* FAQ Section */
.faq-section {
    max-width: 1000px;
    margin: 0 auto 8rem auto;
    padding: 0 2rem;
}

.faq-section h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.faq-item summary {
    padding: 1.5rem 0;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-item summary:hover {
    color: #555;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    padding-bottom: 1.5rem;
    color: #000;
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item details[open] summary i {
    transform: rotate(180deg);
}

.faq-item i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* Responsive Contact */
@media (max-width: 900px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
    }

    .contact-header-hero {
        margin-bottom: 3rem;
    }
}

/* Default Promo Track (Desktop/Carousel) */
.promo-track {
    display: flex;
    gap: 30px;
    width: max-content;
    /* Ensure track is wide enough for slides */
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hide Mobile Controls by Default (Desktop) */
.mobile-controls-wrapper {
    display: none;
}

/* RESTORED MOBILE STYLES */
@media (max-width: 768px) {
    .product-detail-container {
        display: flex;
        flex-direction: column;
        padding: 1rem 1.5rem 3rem 1.5rem;
        gap: 2rem;
    }

    .detail-left {
        width: 100%;
    }

    .detail-image-wrapper {
        height: auto;
        aspect-ratio: 1 / 1.1;
        /* Slightly tall square */
        width: 100%;
        max-height: 450px;
    }

    .detail-content h1 {
        font-size: 2rem;
        /* Smaller title on mobile */
    }

    /* Savoir-Faire (About) Mobile Styles */
    .about-story {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .story-img-container {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-card {
        padding: 2rem 1.5rem;
    }

    .about-hero {
        margin-bottom: 3rem;
    }

    .cart-sidebar,
    .wishlist-sidebar {
        width: 100%;
        right: -100%;
    }

    .featured-grid,
    .product-grid,
    .popular-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
        padding: 2rem 1rem;
        width: 100% !important;
    }

    /* Force cards to fit 2 columns */
    .product-card {
        width: 100% !important;
        min-width: 0 !important;
    }

    .card-image-container {
        height: auto !important;
        aspect-ratio: 1 / 1.2;
    }

    /* Promo Section Mobile Grid (Disable Carousel) */
    /* Promo Section Mobile Carousel */
    .promo-container {
        padding: 0 1rem !important;
        overflow-x: auto !important;
        /* Enable scroll */
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        display: flex;
        align-items: center;
        position: relative;
    }

    /* Hide scrollbar but keep functionality */
    .promo-container::-webkit-scrollbar {
        display: none;
    }

    .promo-track {
        display: flex !important;
        /* Row layout */
        gap: 15px !important;
        width: max-content !important;
        /* Allow track to grow */
        transform: none !important;
        /* Disable JS transform on mobile if conflicting */
    }

    .promo-card {
        width: 80vw !important;
        /* Show one big card mostly */
        max-width: 320px !important;
        flex-shrink: 0 !important;
        scroll-snap-align: center;
    }

    /* Re-enable arrows for clicking */
    /* Re-enable arrows for clicking */
    .promo-arrow {
        display: none !important;
    }

    /* Mobile Filter Controls */
    .mobile-controls-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }

    .filter-toggle-btn {
        display: flex !important;
        /* show on mobile */
        margin-bottom: 0 !important;
        /* reset margin */
    }

    .view-toggles {
        display: flex;
        gap: 10px;
    }

    .view-btn {
        background: none;
        border: none;
        font-size: 1.2rem;
        color: #aaa;
        cursor: pointer;
        padding: 5px;
    }

    .view-btn.active {
        color: #000;
    }

    /* 1 Column Grid State */
    #shop-grid.grid-1-col {
        grid-template-columns: 1fr !important;
    }

    #shop-grid.grid-1-col .card-image-container {
        aspect-ratio: 1 / 1.1 !important;
        /* Enforce ratio */
        height: auto;
        width: 100%;
    }

    #shop-grid.grid-1-col .card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Ensure image fills container */
    }

    /* Filters Hidden by Default, Show when Active */
    .filters {
        display: none !important;
        flex-direction: column;
        width: 100%;
        background: #f9f9f9;
        padding: 1.5rem;
        border-radius: 12px;
        margin-bottom: 2rem;
    }

    .filters.active {
        display: flex !important;
        animation: fadeIn 0.3s ease;
    }

    /* Buy Now Modal Mobile Fix */
    /* Buy Now Modal Mobile Fix */
    #buyNowModal .modal-content {
        width: 95% !important;
        max-width: none !important;
        padding: 0.8rem !important;
        /* Minimal padding */
        margin: auto;
        border-radius: 12px !important;
    }

    #buyNowModal .modal-product-summary {
        flex-direction: row !important;
        text-align: left !important;
        align-items: center !important;
        gap: 0.8rem;
        padding: 0.5rem !important;
    }

    #buyNowModal .modal-product-summary img {
        width: 40px !important;
        /* Tiny image */
        height: 40px !important;
    }

    #buyNowModal h2 {
        font-size: 1rem !important;
        /* Tiny title */
        text-align: center;
        margin-bottom: 0.5rem !important;
    }

    #buyNowModal .form-group {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.1rem !important;
        margin-bottom: 0.5rem !important;
        /* Minimal spacing */
    }

    #buyNowModal label {
        font-size: 0.7rem !important;
        text-transform: uppercase;
        color: #888;
    }

    #buyNowModal input,
    #buyNowModal textarea {
        width: 100% !important;
        padding: 0.4rem !important;
        /* Minimal input padding */
        font-size: 0.8rem !important;
        height: auto !important;
        /* Allow auto height */
    }

    #buyNowModal .buy-now-btn {
        width: 100% !important;
        margin-top: 0.5rem !important;
        padding: 0.7rem !important;
        /* Smaller button */
        font-size: 0.9rem !important;
    }
}