/* ============================================================
   VVX NOIR — SITE STYLESHEET
   Dark, cinematic leather-goods aesthetic applied to every real
   selector used across index.html, collection.html, product.html,
   cart.html, checkout.html and order-confirmation.html (and the
   product/search/cart markup rendered by the JS in /js). No class
   names were changed — this is a drop-in replacement for
   css/styles.css.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Roboto:wght@300;400;700&family=Poppins:wght@400;600&family=Montserrat:wght@300;400;600;700&family=Space+Grotesk:wght@300;400;600;700&family=JetBrains+Mono:wght@300;400;600&display=swap');

:root {
    --vvx-black: #0a0a0a;
    --vvx-charcoal: #141414;
    --vvx-dark-gray: #1a1a1a;
    --vvx-mid-gray: #2a2a2a;
    --vvx-steel: #3d3d3d;
    --vvx-gunmetal: #4a4a4a;
    --vvx-off-white: #f0ebe4;
    --vvx-warm-white: #f5f0ea;
    --vvx-vintage-beige: #c4b8a8;
    --vvx-military: #4a5a3a;
    --vvx-olive: #5a6a4a;
    --vvx-dark-olive: #3a4a2a;
    --vvx-deep-red: #6a1a1a;
    --vvx-rust: #7a2a1a;
    --vvx-gold: #8a7a4a;

    --font-display: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
    --font-alt: 'Montserrat', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-heading: 'Space Grotesk', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-subtle: 0 2px 8px rgba(0,0,0,0.6);
    --shadow-medium: 0 8px 32px rgba(0,0,0,0.8);
    --shadow-heavy: 0 16px 64px rgba(0,0,0,0.9);
    --border-thin: 1px solid rgba(255,255,255,0.06);
    --border-medium: 1px solid rgba(255,255,255,0.10);
}

/* ---------- RESET ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    padding-top: 0;
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    background-color: var(--vvx-black);
    color: var(--vvx-off-white);
    min-height: 100vh;
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

/* Subtle grain overlay across the whole site */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.3;
    mix-blend-mode: overlay;
}

/* body.dark-mode is toggled by the header moon/sun icon. The site is
   noir by default, so the toggle deepens the blacks / raises contrast
   rather than switching to a light theme. */
body.dark-mode { background-color: #000; color: var(--vvx-warm-white); }
body.dark-mode header { background-color: rgba(0,0,0,0.97); }
body.dark-mode .product-card,
body.dark-mode .product-item { background: #000; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--vvx-charcoal); }
::-webkit-scrollbar-thumb { background: var(--vvx-steel); border: 1px solid rgba(255,255,255,0.05); }
::-webkit-scrollbar-thumb:hover { background: var(--vvx-gunmetal); }

/* Selection */
::selection { background: var(--vvx-deep-red); color: var(--vvx-warm-white); }

/* ===== MODE TOGGLE ===== */
.mode-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 14px;
    cursor: pointer;
    border: var(--border-thin);
    background: rgba(255,255,255,0.02);
    transition: color 0.3s var(--ease-soft), transform 0.4s var(--ease-soft), border-color 0.3s var(--ease-soft);
}
.mode-toggle:hover { transform: rotate(15deg); border-color: rgba(255,255,255,0.15); }
.mode-toggle i { font-size: 0.95rem; color: #b0a898; }
.mode-toggle:hover i { color: var(--vvx-warm-white); }

/* ===== NOTIFICATION BAR ===== */
.notification-bar {
    background-color: var(--vvx-charcoal);
    color: var(--vvx-off-white);
    text-align: center;
    padding: 6px 0;
    font-size: 0.7rem;
    font-weight: 400;
    width: 100%;
    position: relative;
    z-index: 1001;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: var(--border-thin);
}
.notification-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a09888;
    animation: scrollText 90s linear infinite;
}
.notification-text span { display: inline-block; padding: 0 2.4rem; }
@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.notification-bar:hover .notification-text { animation-play-state: paused; }

/* ===== HEADER & NAVIGATION ===== */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 0;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: var(--border-thin);
    box-shadow: none;
}

header .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0.6rem 2rem;
    gap: 1rem;
    width: 100%;
}
.nav-links li { position: relative; margin: 0 0.15rem; list-style: none; }
.nav-links a {
    display: inline-block;
    font-family: var(--font-alt);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.5rem 0.7rem;
    color: #b0a898;
    background: transparent;
    transition: color 0.3s var(--ease-soft);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0.7rem;
    right: 0.7rem;
    height: 1px;
    background: var(--vvx-military);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
}
.nav-links a:hover {
    color: var(--vvx-warm-white);
    background-color: transparent;
}
.nav-links a:hover::after { transform: scaleX(1); }

.logo { margin-right: 0.5rem; }
.logo img {
    max-width: 64px;
    display: block;
    filter: brightness(0.9) contrast(1.1);
    transition: filter 0.4s var(--ease-soft), transform 0.3s var(--ease-soft);
}
.logo img:hover { filter: brightness(1.1) contrast(1.2); transform: scale(1.05); }

/* Dropdown mega-menu */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 560px;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--border-thin);
    border-top: 2px solid var(--vvx-military);
    box-shadow: var(--shadow-heavy);
    padding: 1.5rem;
    z-index: 1000;
}
.nav-links li:hover .dropdown-content { display: block; }
.dropdown-content .category {
    display: inline-block;
    width: 30%;
    vertical-align: top;
    margin-right: 1.5rem;
}
.dropdown-content .category h3 {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #b0a898;
    margin-bottom: 0.8rem;
    border-bottom: var(--border-thin);
    padding-bottom: 0.4rem;
}
.dropdown-content .category a {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 300;
    color: #b0a898;
    padding: 0.3rem 0;
    text-decoration: none;
    transition: color 0.3s var(--ease-soft), padding-left 0.3s var(--ease-soft);
}
.dropdown-content .category a:hover {
    color: var(--vvx-warm-white);
    text-decoration: none;
    padding-left: 0.4rem;
}
.dropdown-content .category img {
    max-width: 100%;
    margin-top: 0.5rem;
    border: var(--border-thin);
    filter: contrast(1.1);
    transition: filter 0.5s var(--ease-soft), transform 0.5s var(--ease-soft);
}
.dropdown-content .category img:hover { filter: contrast(1.2); transform: scale(1.02); }

/* ===== NAV SEARCH ===== */
.nav-search {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 0.6rem;
}
.nav-search-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.7rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    transition: border-color 0.3s var(--ease-soft), background 0.3s var(--ease-soft);
}
.nav-search-box:focus-within {
    border-color: var(--vvx-military);
    background: rgba(255,255,255,0.12);
}
.nav-search-icon { color: #b0a898; flex-shrink: 0; transition: color 0.2s; }
.nav-search-box:focus-within .nav-search-icon { color: var(--vvx-warm-white); }
.nav-search-input {
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    color: var(--vvx-warm-white);
    width: 150px;
    max-width: 40vw;
}
.nav-search-input::placeholder { color: rgba(255,255,255,0.3); }
.nav-search-clear {
    display: none;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #b0a898;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: color 0.3s var(--ease-soft);
}
.nav-search-clear:hover { color: var(--vvx-warm-white); }

.nav-search-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(360px, 90vw);
    max-height: 70vh;
    overflow-y: auto;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--border-thin);
    border-top: 2px solid var(--vvx-military);
    box-shadow: var(--shadow-heavy);
    z-index: 1100;
}
.nav-search-dropdown.is-open { display: block; }

.search-suggestions-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a09888;
}
.search-clear-all {
    border: none;
    background: none;
    color: var(--vvx-rust);
    font-family: var(--font-alt);
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s var(--ease-soft);
}
.search-clear-all:hover { color: #f5f0ea; }
.search-suggestions { padding: 0.2rem 0 0.5rem; }
.search-suggestion-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1rem;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 300;
    color: #d8d0c8;
}
.search-suggestion-row:hover,
.search-suggestion-row.is-active { background-color: rgba(74,90,58,0.15); }
.search-suggestion-icon { color: #7a7266; font-size: 0.75rem; flex-shrink: 0; }
.search-suggestion-term { flex: 1; }
.search-suggestion-remove {
    border: none;
    background: none;
    color: #6a6458;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.1rem 0.3rem;
    flex-shrink: 0;
    transition: color 0.3s var(--ease-soft);
}
.search-suggestion-remove:hover { color: var(--vvx-rust); }

.search-results { padding: 0.4rem 0; }
.search-result-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: inherit;
}
.search-result-row:hover,
.search-result-row.is-active { background-color: rgba(74,90,58,0.15); }
.search-result-thumb {
    width: 44px;
    height: 44px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: var(--vvx-dark-gray);
    border: var(--border-thin);
}
.search-result-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.search-result-name {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-family: var(--font-alt);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--vvx-warm-white);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.search-result-meta {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #a09888;
}
.search-result-price {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--vvx-vintage-beige);
    white-space: nowrap;
    flex-shrink: 0;
}
.search-hl {
    background-color: rgba(74,90,58,0.25);
    color: var(--vvx-warm-white);
    font-weight: 700;
}

.search-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.12rem 0.4rem;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.05);
}
.search-badge-sale { background-color: var(--vvx-deep-red); color: #f5f0ea; }
.search-badge-new { background-color: var(--vvx-military); color: #f5f0ea; }
.search-badge-best { background-color: transparent; color: #b0a898; border: 1px solid rgba(255,255,255,0.2); }

.search-view-all {
    display: block;
    text-align: center;
    padding: 0.75rem 1rem;
    border-top: var(--border-thin);
    font-family: var(--font-alt);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vvx-warm-white);
    text-decoration: none;
    transition: background-color 0.3s var(--ease-soft);
}
.search-view-all:hover,
.search-view-all.is-active { background-color: rgba(74,90,58,0.15); }

.search-empty { padding: 1.8rem 1rem; text-align: center; }
.search-empty p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.8rem;
    color: #a09888;
    margin: 0 0 0.9rem 0;
}
.search-browse-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--vvx-warm-white);
    padding: 0.5rem 1.4rem;
    border: var(--border-thin);
    text-decoration: none;
    font-family: var(--font-alt);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s var(--ease-soft);
}
.search-browse-btn:hover { background-color: var(--vvx-military); border-color: var(--vvx-military); }

/* ===== CART LINK ===== */
.cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 0.8rem;
    padding: 0.3rem 0.5rem;
    text-decoration: none;
    color: #b0a898;
    font-size: 1.15rem;
    border: var(--border-thin);
    transition: color 0.3s var(--ease-soft), border-color 0.3s var(--ease-soft);
}
.cart-link:hover { color: var(--vvx-warm-white); border-color: var(--vvx-military); background: rgba(74,90,58,0.08); }
.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--vvx-deep-red);
    color: #f5f0ea;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 1px solid rgba(255,255,255,0.05);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    overflow: hidden;
    height: 85vh;
    min-height: 480px;
    max-height: 900px;
    background-color: var(--vvx-black);
    cursor: pointer;
}
.hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--vvx-black);
    overflow: hidden;
}
.hero-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 2rem;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
}
.hero-overlay * { pointer-events: auto; }
.hero-overlay h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.8rem, 10vw, 7rem);
    letter-spacing: 0.06em;
    margin: 0 0 0.2em 0;
    color: #f5f0ea;
    text-shadow: 0 4px 40px rgba(0,0,0,0.8);
    padding: 0 10px;
}
.hero-overlay .sub-headline {
    font-family: var(--font-alt);
    font-weight: 300;
    font-size: clamp(0.9rem, 1.4vw, 1.4rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5em;
    color: #b0a898;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
.shop-now-button {
    display: inline-block;
    font-family: var(--font-alt);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.8rem 2.4rem;
    background-color: transparent;
    color: #f5f0ea;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0;
    text-decoration: none;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s var(--ease-out-expo), color 0.4s var(--ease-out-expo);
}
.shop-now-button::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--vvx-military);
    transition: left 0.4s var(--ease-out-expo);
    z-index: -1;
}
.shop-now-button:hover { color: #f5f0ea; border-color: var(--vvx-military); transform: none; }
.shop-now-button:hover::before { left: 0; }

/* ===== TYPOGRAPHY / SECTION HEADINGS ===== */
.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #f5f0ea;
    margin: 0 0 0.4em 0;
    position: relative;
    display: inline-block;
}
.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--vvx-military);
    margin: 16px auto 0;
    transition: width 0.6s var(--ease-out-expo);
}
.section-heading:hover::after { width: 120px; }
.section-subtitle {
    font-family: var(--font-alt);
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #a09888;
    margin: 0.4em 0 2.4em 0;
}

/* ===== FEATURED PRODUCT (home) ===== */
.featured-product {
    padding: 4rem 2rem;
    background: var(--vvx-charcoal);
    text-align: center;
    border-bottom: var(--border-thin);
    position: relative;
}
.featured-product::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--vvx-military), transparent);
    opacity: 0.2;
}
.featured-product .product-grid { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.product-wrapper { margin-top: 1rem; }

.featured-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.4rem, 2.5vw, 2.4rem);
    color: #d8d0c8;
    line-height: 1.5;
    max-width: 720px;
    margin: 0 auto 1rem auto;
    padding: 0 20px;
    letter-spacing: 0.01em;
}
.featured-quote .highlight { color: var(--vvx-vintage-beige); font-weight: 700; font-style: italic; border-bottom: 1px solid rgba(74,90,58,0.3); }
.featured-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #a09888;
    margin: 0 0 2.5rem 0;
    padding: 0 20px;
    line-height: 1.2;
}
.featured-subtitle span { color: var(--vvx-military); font-weight: 600; }

/* ===== PRODUCT CARD (grid tiles rendered by home.js/collection.js) ===== */
.product-card {
    background-color: var(--vvx-dark-gray);
    border: var(--border-thin);
    border-radius: 0;
    padding: 1rem;
    width: 220px;
    text-align: center;
    box-shadow: none;
    transition: transform 0.4s var(--ease-out-expo), border-color 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft);
    position: relative;
    overflow: hidden;
    display: inline-block;
    margin: 0 0.5rem 1.2rem;
}
.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(74,90,58,0.4);
    box-shadow: var(--shadow-medium);
}
.product-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 0.8rem;
    background: var(--vvx-mid-gray);
}
.product-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05);
    transition: opacity 0.35s ease-in-out, transform 0.6s var(--ease-out-expo);
}
.product-card-image .hover-img { opacity: 0; pointer-events: none; }
.product-card:hover .product-card-image .default-img { opacity: 0; }
.product-card:hover .product-card-image .hover-img { opacity: 1; }
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card h3,
.product-card p,
.product-card button { position: relative; z-index: 2; }
.product-card h3 {
    font-family: var(--font-alt);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0.6rem 0 0.3rem;
    color: #f5f0ea;
    line-height: 1.4;
}
.star-rating { color: var(--vvx-gold); font-size: 0.85rem; margin: 0.4rem 0; }
.product-card button {
    background-color: transparent;
    color: #b0a898;
    border: var(--border-thin);
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-family: var(--font-alt);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 0;
    width: 100%;
    transition: all 0.3s var(--ease-soft);
}
.product-card button:hover { background-color: var(--vvx-military); color: #f5f0ea; border-color: var(--vvx-military); }

/* Product grid & collection grid layout */
.product-grid,
.collection-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Alternate "product-item" card style (used in some featured layouts) */
.product-item {
    flex: 1 1 300px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: var(--vvx-dark-gray);
    border: var(--border-thin);
    padding-bottom: 1.2rem;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-soft), border-color 0.4s var(--ease-soft);
}
.product-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 0;
    filter: contrast(1.05);
    transition: transform 0.6s var(--ease-out-expo);
}
.product-item:hover {
    transform: translateY(-4px);
    border-color: rgba(74,90,58,0.4);
    box-shadow: var(--shadow-medium);
}
.product-info { padding: 1.2rem; }
.product-info h3 { font-family: var(--font-alt); font-size: 1.1rem; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 0.5rem; color: #f5f0ea; }
.product-info p { font-family: var(--font-body); font-size: 0.85rem; font-weight: 300; color: #a09888; }
.product-btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.6rem 1.4rem;
    background: transparent;
    border: var(--border-thin);
    color: #f5f0ea;
    text-decoration: none;
    font-family: var(--font-alt);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s var(--ease-soft);
}
.product-btn:hover { background: var(--vvx-military); border-color: var(--vvx-military); transform: none; }

/* Badges & pricing shared across product cards */
.sale-badge {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    background: var(--vvx-deep-red);
    color: #f5f0ea;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border: 1px solid rgba(255,255,255,0.05);
    z-index: 3;
}
.price-original { text-decoration: line-through; color: #7a7266; font-size: 0.85em; margin-right: 0.4rem; }
.price-discounted { color: var(--vvx-vintage-beige); font-weight: 700; }

/* ===== TICKER ===== */
.ticker-container {
    width: 100%;
    height: 140px;
    overflow: hidden;
    position: relative;
    background-color: var(--vvx-charcoal);
    border-top: var(--border-thin);
    border-bottom: var(--border-thin);
}
.ticker { display: flex; position: absolute; white-space: nowrap; animation: scroll 20s linear infinite; }
.ticker-container:hover .ticker { animation-play-state: paused; }
.ticker-item { display: inline-block; margin-right: 5rem; text-align: center; flex-shrink: 0; }
.ticker-item img { width: 120px; height: auto; filter: grayscale(0.4) contrast(1.1); opacity: 0.5; border-radius: 0; transition: opacity 0.4s var(--ease-soft), filter 0.4s var(--ease-soft); }
.ticker-item img:hover { opacity: 0.9; filter: grayscale(0) contrast(1.2); }
@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ===== FEATURED PRODUCTS SECTION ===== */
.featured-products {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--vvx-black);
    border-bottom: var(--border-thin);
}

/* ===== FOOTER ===== */
footer {
    background: var(--vvx-charcoal);
    color: #f5f0ea;
    padding: 3rem 2rem 1.5rem;
    font-size: 0.8rem;
    line-height: 1.6;
    border-top: var(--border-thin);
}
.footer-container { max-width: 1400px; margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: var(--border-thin);
}
.footer-section h4 {
    font-family: var(--font-alt);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b0a898;
    margin: 0 0 0.9rem 0;
    padding-bottom: 0.4rem;
    border-bottom: var(--border-thin);
}
footer ul,
.footer-section ul { list-style: none; padding: 0; margin: 0; }
footer ul li,
.footer-section ul li { margin-bottom: 0.35rem; }
footer ul li a,
.footer-section ul li a {
    color: #a09888;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 300;
    transition: color 0.3s var(--ease-soft), padding-left 0.3s var(--ease-soft);
}
footer ul li a:hover,
.footer-section ul li a:hover { color: #f5f0ea; text-decoration: none; padding-left: 0.3rem; }

.social-icons { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.social-icons img { height: 22px; width: auto; filter: grayscale(0.4) brightness(0.7); transition: filter 0.4s var(--ease-soft), transform 0.4s var(--ease-soft); }
.social-icons img:hover { filter: grayscale(0) brightness(1); transform: scale(1.05); }

.newsletter .newsletter-title { font-family: var(--font-alt); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em; color: #f5f0ea; margin: 0 0 0.1rem 0; }
.newsletter .newsletter-sub { font-size: 0.65rem; font-weight: 300; color: #a09888; margin: 0 0 0.7rem 0; }
.newsletter form { display: flex; flex-direction: column; }
footer input[type="text"],
footer input[type="email"],
.newsletter form input {
    width: 100%;
    padding: 0.5rem 0.6rem;
    background-color: var(--vvx-black);
    border: var(--border-thin);
    color: #f5f0ea;
    margin-bottom: 0.5rem;
    font-size: 0.7rem;
    font-family: var(--font-body);
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s var(--ease-soft);
}
footer input:focus,
.newsletter form input:focus { border-color: var(--vvx-military); }
footer input::placeholder,
.newsletter form input::placeholder { color: rgba(255,255,255,0.25); }
.radio-group { display: flex; gap: 0.9rem; margin-bottom: 0.5rem; }
.radio-group label { font-size: 0.65rem; font-weight: 300; color: #b0a898; display: flex; align-items: center; gap: 0.25rem; }
.radio-group input[type="radio"] { width: auto; margin: 0; accent-color: var(--vvx-military); }
footer button,
.newsletter form button {
    background-color: var(--vvx-military);
    color: #f5f0ea;
    padding: 0.5rem;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-family: var(--font-alt);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: background-color 0.3s var(--ease-soft);
}
footer button:hover,
.newsletter form button:hover { background-color: var(--vvx-olive); }

.footer-bottom {
    border-top: var(--border-thin);
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.6rem;
    color: #a09888;
}
.footer-bottom p { margin: 0.2rem 0; }
.footer-bottom a,
.footer-links a { color: #a09888; text-decoration: none; transition: color 0.3s var(--ease-soft); margin: 0 0.2rem; }
.footer-bottom a:hover,
.footer-links a:hover { color: #f5f0ea; }
.footer-links { margin: 0; }

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
    border-top: var(--border-thin);
    padding-top: 1.2rem;
}
.footer-logo img { max-height: 26px; object-fit: contain; filter: grayscale(0.4) brightness(0.5); transition: filter 0.4s var(--ease-soft); }
.footer-logo img:hover { filter: grayscale(0) brightness(0.8); }

/* ===== COLLECTION PAGE ===== */
.collection-hero {
    position: relative;
    overflow: hidden;
    height: 45vh;
    min-height: 300px;
    background-color: var(--vvx-charcoal);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}
.collection-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.collection-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--vvx-military), transparent);
    opacity: 0.3;
}
.collection-hero-content { position: relative; z-index: 1; }
.collection-hero h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 5vw, 3.4rem);
    letter-spacing: 0.04em;
    margin: 0 0 0.3em 0;
    color: #f5f0ea;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}
.collection-hero p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(0.9rem, 1.6vw, 1.1rem);
    letter-spacing: 0.06em;
    color: #b0a898;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.breadcrumbs {
    padding: 0.7rem 2rem;
    background-color: var(--vvx-charcoal);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #a09888;
    border-bottom: var(--border-thin);
}
.breadcrumbs a { color: #b0a898; text-decoration: none; transition: color 0.3s var(--ease-soft); }
.breadcrumbs a:hover { color: #f5f0ea; text-decoration: none; }
.breadcrumbs .current { color: #f5f0ea; font-weight: 600; }

.collection-grid-section {
    padding: 2.5rem 2rem 4rem;
    text-align: center;
    background-color: var(--vvx-black);
    min-height: 300px;
}
.collection-result-count {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a09888;
    margin: 0 0 1.5rem 0;
}
.collection-empty-state {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    color: #a09888;
    padding: 4rem 1rem;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    text-align: left;
}
.product-detail-gallery { flex: 1 1 380px; }
.product-detail-gallery-main {
    width: 100%;
    max-height: 550px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: var(--border-thin);
    border-radius: 0;
    background: var(--vvx-dark-gray);
    filter: contrast(1.05);
}
.product-detail-thumbs { display: flex; gap: 0.6rem; margin-top: 0.7rem; flex-wrap: wrap; }
.product-detail-thumbs img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 0;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    transition: border-color 0.3s var(--ease-soft);
}
.product-detail-thumbs img.active-thumb { border-color: var(--vvx-military); }

.product-detail-info { flex: 1 1 380px; }
.product-detail-info h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    letter-spacing: 0.02em;
    margin: 0 0 0.3rem 0;
    color: #f5f0ea;
}
.product-detail-price {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--vvx-vintage-beige);
    margin: 0.6rem 0 1.2rem 0;
}
.product-detail-description {
    font-family: var(--font-body);
    font-weight: 300;
    color: #d0c8c0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 480px;
}
.product-detail-meta {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: #a09888;
    margin-bottom: 1.2rem;
}
.size-selector,
.qty-selector { margin-bottom: 1.5rem; }
.size-selector h4,
.qty-selector h4 {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #b0a898;
    margin: 0 0 0.6rem 0;
}
.size-options { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.size-option {
    border: var(--border-thin);
    background: transparent;
    color: #b0a898;
    padding: 0.4rem 0.9rem;
    border-radius: 0;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    transition: all 0.3s var(--ease-soft);
}
.size-option:hover { border-color: rgba(255,255,255,0.2); color: #f5f0ea; }
.size-option.selected { background: var(--vvx-military); color: #f5f0ea; border-color: var(--vvx-military); }

.qty-stepper {
    display: inline-flex;
    align-items: center;
    border: var(--border-thin);
    border-radius: 0;
    overflow: hidden;
}
.qty-stepper button {
    background: rgba(255,255,255,0.03);
    border: none;
    color: #f5f0ea;
    width: 34px;
    height: 34px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s var(--ease-soft);
}
.qty-stepper button:hover { background: rgba(255,255,255,0.08); }
.qty-stepper span { display: inline-block; width: 40px; text-align: center; font-family: var(--font-mono); color: #f5f0ea; }

.add-to-cart-btn,
.buy-now-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 0;
    font-family: var(--font-alt);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    margin-right: 0.6rem;
    margin-bottom: 0.6rem;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.4s var(--ease-out-expo);
}
.add-to-cart-btn { background: transparent; color: #f5f0ea; }
.add-to-cart-btn:hover { background: var(--vvx-military); border-color: var(--vvx-military); }
.add-to-cart-btn.added { background: var(--vvx-olive); border-color: var(--vvx-olive); }
.buy-now-btn { background: #f5f0ea; color: var(--vvx-black); border-color: #f5f0ea; }
.buy-now-btn:hover { background: transparent; color: #f5f0ea; border-color: rgba(255,255,255,0.2); }
.stock-note { font-family: var(--font-body); font-size: 0.8rem; color: var(--vvx-rust); margin-bottom: 1rem; }

/* ===== CART PAGE ===== */
.cart-page-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    text-align: left;
}
.cart-lines { flex: 2 1 500px; display: flex; flex-direction: column; }
.cart-line {
    display: flex;
    gap: 1.1rem;
    align-items: center;
    border-bottom: var(--border-thin);
    padding: 1.2rem 0;
}
.cart-line img { width: 84px; height: 84px; object-fit: cover; border: var(--border-thin); border-radius: 0; }
.cart-line-info { flex: 1; font-family: var(--font-body); }
.cart-line-info h4 { margin: 0 0 0.35rem 0; font-size: 0.9rem; font-family: var(--font-alt); letter-spacing: 0.02em; color: #f5f0ea; }
.cart-line-info .cart-line-meta { font-size: 0.75rem; color: #a09888; }
.cart-line-remove {
    background: none;
    border: none;
    color: var(--vvx-rust);
    cursor: pointer;
    font-family: var(--font-alt);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    padding: 0;
    transition: color 0.3s var(--ease-soft);
}
.cart-line-remove:hover { color: #f5f0ea; }

.cart-summary {
    flex: 1 1 280px;
    background: var(--vvx-charcoal);
    border: var(--border-thin);
    border-radius: 0;
    padding: 1.8rem;
    height: fit-content;
    font-family: var(--font-body);
}
.cart-summary h3 {
    font-family: var(--font-alt);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b0a898;
    margin: 0 0 1rem 0;
    border-bottom: var(--border-thin);
    padding-bottom: 0.5rem;
}
.cart-summary-row { display: flex; justify-content: space-between; margin-bottom: 0.7rem; font-size: 0.85rem; color: #c4b8a8; }
.cart-summary-row.total {
    font-weight: 700;
    font-size: 1rem;
    color: #f5f0ea;
    border-top: var(--border-thin);
    padding-top: 0.7rem;
    margin-top: 0.5rem;
}
.checkout-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--vvx-military);
    color: #f5f0ea;
    padding: 0.8rem;
    border-radius: 0;
    text-decoration: none;
    font-family: var(--font-alt);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-top: 1.2rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s var(--ease-soft), transform 0.3s var(--ease-soft);
}
.checkout-btn:hover { background: var(--vvx-olive); transform: translateY(-1px); }

.empty-cart-state {
    text-align: center;
    padding: 4rem 1rem;
    font-family: var(--font-body);
    font-weight: 300;
    color: #a09888;
}
.empty-cart-state a { color: var(--vvx-vintage-beige); font-weight: 600; text-decoration: none; }
.empty-cart-state a:hover { color: #f5f0ea; }

/* ===== CHECKOUT PAGE ===== */
.checkout-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    text-align: left;
}
.checkout-form { flex: 2 1 500px; font-family: var(--font-body); }
.checkout-form h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    letter-spacing: 0.02em;
    color: #f5f0ea;
    margin-bottom: 1.2rem;
}
.form-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.form-group { flex: 1 1 200px; margin-bottom: 1.1rem; }
.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #b0a898;
    margin-bottom: 0.35rem;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 0.65rem 0.7rem;
    background: var(--vvx-black);
    border: var(--border-thin);
    border-radius: 0;
    color: #f5f0ea;
    font-size: 0.85rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s var(--ease-soft);
}
.form-group input:focus,
.form-group select:focus { border-color: var(--vvx-military); }
.form-group input::placeholder { color: rgba(255,255,255,0.2); }
.place-order-btn {
    background: #f5f0ea;
    color: var(--vvx-black);
    border: none;
    padding: 0.85rem 2.2rem;
    border-radius: 0;
    font-family: var(--font-alt);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background-color 0.3s var(--ease-soft), transform 0.3s var(--ease-soft);
}
.place-order-btn:hover { background: #c4b8a8; transform: translateY(-1px); }
.payment-note { font-size: 0.75rem; color: #a09888; margin-top: 0.8rem; font-style: italic; }
.form-error { color: var(--vvx-rust); font-size: 0.8rem; margin-top: -0.6rem; margin-bottom: 1rem; display: none; }

/* ===== ORDER CONFIRMATION ===== */
.confirmation-wrap {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    text-align: center;
    font-family: var(--font-body);
}
.confirmation-wrap h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    letter-spacing: 0.03em;
    color: #f5f0ea;
    margin-bottom: 0.5rem;
}
.confirmation-order-id {
    font-family: var(--font-mono);
    letter-spacing: 0.06em;
    color: var(--vvx-vintage-beige);
    font-weight: 700;
    margin-bottom: 1.6rem;
}
.confirmation-items { text-align: left; max-width: 500px; margin: 0 auto 1.6rem; }

/* ===== UTILITY ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s var(--ease-out-expo) forwards; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    footer { padding: 2.2rem 1.2rem 1.2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom p, .footer-bottom a { margin: 0.2rem 0; }

    header .nav-links { padding: 0.6rem 1rem; }
    .nav-links li { margin: 0 0.15rem; }
    .nav-search-input { width: 110px; }
    .nav-search-dropdown { width: min(320px, 94vw); right: -10px; }

    .hero { height: 60vh; min-height: 340px; }
    .hero-overlay h1 { font-size: clamp(2rem, 12vw, 3.2rem); }
    .hero-overlay .sub-headline { font-size: 0.8rem; letter-spacing: 0.15em; }
    .shop-now-button { padding: 0.6rem 1.6rem; font-size: 0.65rem; }

    .dropdown-content { width: 280px; left: -50px; }
    .dropdown-content .category { width: 100%; margin-right: 0; margin-bottom: 1rem; }

    .featured-quote { font-size: 1.3rem; }
    .featured-subtitle { font-size: 1.2rem; letter-spacing: 0.15em; }
    .section-heading { font-size: 1.6rem; }
    .section-heading::after { width: 40px; }
    .featured-product, .featured-products { padding: 2.2rem 1rem; }

    .collection-hero { padding: 0 1rem; min-height: 220px; }
    .breadcrumbs { padding: 0.5rem 1rem; font-size: 0.55rem; }
    .collection-grid-section { padding: 1.5rem 1rem 3rem; }

    .product-detail-wrap,
    .cart-page-wrap,
    .checkout-wrap { flex-direction: column; padding: 2rem 1rem 3rem; }
    .form-row { flex-direction: column; gap: 0; }
    .cart-summary { position: static; }
}

@media (max-width: 480px) {
    .hero { height: 46vh; min-height: 280px; }
    .hero-overlay h1 { font-size: 1.8rem; }
    .hero-overlay .sub-headline { font-size: 0.65rem; letter-spacing: 0.1em; }
    .shop-now-button { padding: 0.5rem 1.3rem; font-size: 0.6rem; }
    .nav-links a { font-size: 0.62rem; padding: 0.35rem 0.5rem; }
    .logo img { max-width: 52px; }
    .featured-quote { font-size: 1.05rem; }
    .featured-subtitle { font-size: 1rem; letter-spacing: 0.1em; }
    .section-heading { font-size: 1.4rem; }
    .footer-grid { grid-template-columns: 1fr; }

    .nav-search-box { padding: 0.25rem 0.5rem; }
    .nav-search-input { width: 80px; font-size: 0.7rem; }
    .nav-search-dropdown { width: min(300px, 96vw); right: -40px; }
}