/* ============================================================
   COMBINED STYLESHEET
   Merged from your external styles.css (base/legacy layer) and
   base.html's inline <style> block (override layer).

   Order preserved to match today's actual cascade result exactly:
   styles.css was loaded first, the inline block came after and
   won on every overlapping selector - so that same order is kept
   here to guarantee zero visual regression from the merge itself.

   ONLY font-family / font-weight / letter-spacing / text-transform
   / font-size were adjusted, to make every element consistently
   use Jost (the font that's actually loaded and already gives the
   nav + feature-grid their look in your reference screenshot).
   No color, background-color, border-color, or box-shadow value
   was changed anywhere in this file.

   Cleanup note: styles.css had two internally duplicated blocks
   for .hero-slider-container / .hero-slide / .slide-background-image
   / .btn-hero-cta / .slider-dot-navigation (an older "Slider Base
   Environment" version immediately superseded by a later, fuller
   version further down the same file). The later block was already
   the only one taking visual effect, so the earlier dead copy was
   removed here - purely a cleanup, not a design change.
   ============================================================ */

:root {
    --primary-color: #000000;
    --secondary-color: #f7eceb; /* Soft blush pink */
    --text-color: #333333;
    --light-text: #666666;
    --border-color: #e5e5e5;
    --white: #ffffff;
    --sale-color: #d9534f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* FIX: was "Lato", which is never loaded by any @import/<link> on
       this site - only Jost + Cormorant Garamond are. Every element
       below that relies on inheriting body's font (most of them) was
       silently falling back to the browser default instead of Jost. */
    font-family: "Jost", sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Announcement Bar (legacy version - superseded by the override
   layer's .announcement-bar further down, kept here only because
   removing it entirely would be a design change beyond what was
   asked; it currently has no visual effect on the page). */
.announcement-bar {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-align: center;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Header (legacy version) */
.site-header {
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand-logo h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: .04em;
}

.main-nav .nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav .nav-links a {
    font-family: "Jost", sans-serif;
    font-size: 0.84rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: color 0.3s;
}

.main-nav .nav-links a:hover {
    color: var(--light-text);
}

.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.action-icon {
    font-size: 1.2rem;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section (legacy - superseded by .hero-slider-container below,
   currently unused by any template markup, left intact but with
   Jost applied for consistency in case it's ever reactivated) */
.hero-section {
    height: 60vh;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h2 {
    font-family: "Jost", sans-serif;
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: .01em;
    margin-bottom: 10px;
}

.hero-content p {
    font-family: "Jost", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--light-text);
    margin-bottom: 25px;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: "Jost", sans-serif;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    width: 100%;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Product Grid (legacy) */
.products-section {
    padding: 60px 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-family: "Jost", sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: .01em;
}

.view-all {
    font-family: "Jost", sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: .02em;
    text-decoration: underline;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f9f9f9;
    margin-bottom: 15px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-image-wrapper:hover .product-img {
    transform: scale(1.05);
}

.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--sale-color);
    color: var(--white);
    font-family: "Jost", sans-serif;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-brand {
    font-family: "Jost", sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 5px;
}

.product-title {
    font-family: "Jost", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: .01em;
    margin-bottom: 10px;
    flex-grow: 1;
}

.product-pricing {
    margin-bottom: 15px;
}

.current-price {
    font-weight: 600;
}

.original-price {
    color: var(--light-text);
    text-decoration: line-through;
    margin-left: 8px;
    font-size: 0.9rem;
}

/* Reviews Section (legacy) */
.reviews-section {
    background-color: #fafafa;
    padding: 60px 0;
    text-align: center;
}

.reviews-section h2 {
    font-family: "Jost", sans-serif;
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border: 1px solid var(--border-color);
}

.stars {
    color: #ffd700;
    margin-bottom: 15px;
}

.review-text {
    font-family: "Jost", sans-serif;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--light-text);
}

.reviewer-name {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Footer (legacy version - superseded by the override layer's
   .site-footer/.footer-column further down) */
.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    letter-spacing: .08em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-family: "Jost", sans-serif;
    font-size: 0.85rem;
    letter-spacing: .02em;
    color: #999;
}

/* Responsive (legacy) */
@media (max-width: 768px) {
    .main-nav {
        display: none; /* Add JS toggle logic */
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero-content h2 {
        font-size: 2.2rem;
    }
}

/* Split-Panel Inner Layout (legacy hero variant) */
.slide-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
    gap: 40px;
}

.slide-media-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-main-image {
    max-height: 440px;
    width: auto;
    object-fit: contain;
}

.slide-info-block {
    flex: 1.2;
    color: #ffffff;
    text-align: center;
}

/* Typography & Layout Accents matching the reference screenshot's
   hero styling: uppercase, wide tracking, bold condensed headline */
.slide-brand-heading {
    font-family: "Jost", sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 0px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.slide-product-heading {
    font-family: "Jost", sans-serif;
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.slide-accent-pill {
    display: inline-block;
    background-color: #c94414; /* Deep brick contrast badge */
    color: #ffffff;
    font-family: "Jost", sans-serif;
    padding: 6px 24px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.slide-value-pitch {
    font-family: "Jost", sans-serif;
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 300;
    margin-bottom: 30px;
    color: #ffffff;
}

/* Sharp Rectangular Button Minimalist Execution (legacy variant) */
.btn-hero-cta {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    font-family: "Jost", sans-serif;
    padding: 14px 35px;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: background-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.btn-hero-cta:hover {
    background-color: #f9f9f9;
    transform: translateY(-2px);
}

/* Tracking Indicator System */
.slider-dot-navigation {
    position: absolute;
    bottom: 20px;
    right: 5%;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.navigation-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.navigation-dot.active {
    background-color: #ffffff;
}

/* Side Promo Ribbon decoration */
.floating-promo-tab {
    position: absolute;
    right: 0;
    top: 35%;
    background-color: #711b7d;
    color: #ffffff;
    font-family: "Jost", sans-serif;
    writing-mode: vertical-rl;
    padding: 15px 8px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Responsive Scaling Rules */
@media (max-width: 991px) {
    .slide-inner {
        flex-direction: column;
        text-align: center;
        padding: 30px 10px;
    }
    .slide-product-heading {
        font-size: 2.5rem;
    }
    .slide-main-image {
        max-height: 280px;
    }
    .slider-dot-navigation {
        right: 50%;
        transform: translateX(50%);
    }
}

/* Layout Grid */
.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 20px;
    align-items: start;
}

.main-detail-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Promo Progress Bar */
.promo-progress-wrapper {
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.promo-text {
    font-family: "Jost", sans-serif;
    text-align: center;
    margin-bottom: 15px;
}

.progress-track {
    position: relative;
    height: 6px;
    background-color: #e5e5e5;
    border-radius: 3px;
    margin-bottom: 30px;
}

.progress-fill {
    position: absolute;
    height: 100%;
    background-color: #f4b538; /* Warm yellow */
    border-radius: 3px;
    left: 0;
    top: 0;
}

.milestone {
    position: absolute;
    top: -12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Jost", sans-serif;
    font-size: 0.7rem;
    color: #666;
    transform: translateX(-50%);
}

.milestone span {
    margin-top: 20px;
    white-space: nowrap;
}

.milestone-1 { left: 65%; }
.milestone-2 { left: 100%; }

/* Typography (legacy product detail variant) */
.brand-name {
    font-family: "Jost", sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-headline {
    font-family: "Jost", sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: .02em;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Reviews & Price */
.reviews-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.rating-block {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Jost", sans-serif;
    font-size: 0.9rem;
}

.stars { color: #000; }
.review-count { color: #888; }

.main-price {
    font-family: "Jost", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: .02em;
    color: #888;
}

/* Loyalty points */
.loyalty-promo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: "Jost", sans-serif;
    font-size: 0.85rem;
    margin-bottom: 30px;
    color: #312e81; /* Indigo matching the image text */
}

.loyalty-promo a {
    text-decoration: underline;
}

/* Bundle Divider */
.bundle-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #000;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.bundle-divider::before, .bundle-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}
.bundle-divider span {
    padding: 0 15px;
}

/* Bundle Selection Cards */
.bundle-options-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.bundle-card {
    position: relative;
    display: block;
    cursor: pointer;
    background-color: #f8fbff; /* Very light blue tint */
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px 20px;
    transition: all 0.2s ease;
}

.bundle-card.selected {
    background-color: #f0f5fc; /* Slightly deeper blue for active */
    border-color: #cbd5e1;
}

.hidden-radio {
    display: none; /* Hide default radio */
}

.bundle-card-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Custom Radio Circle */
.bundle-radio-ui {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #94a3b8;
    margin-right: 15px;
    position: relative;
}

.bundle-card.selected .bundle-radio-ui::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #1e293b;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bundle-title {
    flex: 1;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: .01em;
    color: #0f172a;
}

.bundle-prices {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.current-bundle-price {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    color: #1e3a8a; /* Navy blue */
}

.old-bundle-price {
    font-family: "Jost", sans-serif;
    font-size: 0.8rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.save-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background-color: #3b82f6; /* Bright blue badge */
    color: white;
    font-family: "Jost", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: .02em;
    padding: 3px 10px;
    border-radius: 12px;
}

/* Add to Cart Button */
.btn-pink-cart {
    width: 100%;
    background-color: #fb7185; /* Specific rose/pink matching image */
    color: white;
    border: none;
    font-family: "Jost", sans-serif;
    padding: 18px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-pink-cart:hover {
    background-color: #f43f5e;
}

/* Responsive */
@media (max-width: 900px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }
}

/* Hero Slider - full-bleed background-image version (the one
   actually used by the homepage template's .hero-slider-container /
   .hero-slide markup) */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background-color: #f3f4f6;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide.active {
    display: block;
}

.slide-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slide-background-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e2e8f0;
    z-index: 1;
}

.slide-overlay-container {
    position: relative;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.slide-info-block {
    width: 100%;
    max-width: 550px;
    color: #ffffff;
    font-family: "Jost", sans-serif;
    text-align: center;
    padding: 20px;
}

.slide-info-block.static-welcome {
    margin: 0 auto;
}

/* Absolute Button Positioning Layer */
.slide-btn-overlay {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

/* Overlapping Scroll Down Arrow */
.scroll-indicator-circle {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    color: #64748b;
}

.scroll-indicator-circle svg {
    width: 20px;
    height: 20px;
}

/* Features Grid Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    stroke: #ffffff;
}

.feature-title {
    font-family: "Jost", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.feature-text {
    font-family: "Jost", sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.95;
    max-width: 320px;
}

.feature-text a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
}

.feature-text a:hover {
    opacity: 0.8;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}


/* ================================================================
   OVERRIDE LAYER
   (was base.html's inline <style> block - this is what currently
   wins on every selector shared with the legacy layer above, since
   it loaded later in the document. Kept last here for that exact
   same reason.)
   ================================================================ */

:root{
    --ink:#1a1a1a;
    --ink-soft:#4a4a4a;
    --accent:#d63384;
    --gold:#c9a227;
    --line:rgba(0,0,0,.08);
    --paper:#fff;
}

html{
    scroll-behavior:smooth;
}

html,
body{
    width:100%;
    max-width:100%;
    /* overflow-x:hidden forces the browser to treat this as a
       scroll container (it silently sets overflow-y:auto too),
       which breaks position:sticky on the header below.
       overflow-x:clip prevents horizontal scroll without
       creating that scroll container. */
    overflow-x:clip;
    font-family: "Jost", sans-serif;
    color:var(--ink);
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

h1,h2,h3,h4{
    font-family: "Jost", sans-serif;
    letter-spacing:.01em;
    font-weight:600;
}

p{
    color:var(--ink-soft);
    line-height:1.7;
}

/* Images */
img{
    max-width:100%;
    height:auto;
    display:block;
}

/* Container */
.container{
    width:100%;
    max-width:1400px;
    margin:0 auto;
    padding:0 20px;
}

/* Announcement Bar */
.announcement-bar{
    background:#111;
    color:white;
    text-align:center;
    padding:10px 20px;
    font-size:12.5px;
    font-weight:500;
    letter-spacing:.08em;
    text-transform:uppercase;
    width:100%;
}

/* Header */
.site-header{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    width:100%;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    transition:box-shadow .25s ease;
}

.site-header.is-scrolled{
    box-shadow:0 6px 20px rgba(0,0,0,.10);
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:90px;
    gap:30px;
}

.main-content{
    padding-top:0;
}

.brand-logo img{
    max-height:60px;
    width:auto;
}

.brand-logo h2{
    font-family: "Cormorant Garamond", serif;
    font-size:1.7rem;
    font-weight:600;
    letter-spacing:.04em;
}

/* Mobile toggle */
.mobile-menu-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    width:38px;
    height:38px;
    cursor:pointer;
    z-index:1001;
}

.mobile-menu-toggle span{
    display:block;
    width:100%;
    height:2px;
    background:var(--ink);
    border-radius:2px;
    transition:transform .3s ease, opacity .3s ease;
}

.mobile-menu-toggle.is-active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2){
    opacity:0;
}

.mobile-menu-toggle.is-active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

/* Navigation */
.main-nav{
    flex:1;
    display:flex;
    justify-content:center;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:2rem;
    list-style:none;
    flex-wrap:nowrap;
}

.nav-links a{
    display:flex;
    align-items:center;
    text-decoration:none;
    color:#222;
    font-family:"Jost", sans-serif;
    font-weight:500;
    font-size:.86rem;
    text-transform:uppercase;
    letter-spacing:.06em;
    position:relative;
    transition:color .2s ease;
}

.nav-links > li > a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:var(--gold);
    transition:width .25s ease;
}

.nav-links > li > a:hover::after{
    width:100%;
}

/* Dropdown */
.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    left:0;
    top:calc(100% + 14px);
    width:max-content;
    max-width:280px;
    min-width:220px;
    max-height:min(420px,70vh);
    background:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    border-radius:6px;
    overflow-y:auto;
    overflow-x:hidden;
    overscroll-behavior:contain;
    z-index:999;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .2s ease, visibility 0s linear .2s;
}

.dropdown:hover .dropdown-menu,
.dropdown.hover-open .dropdown-menu,
.dropdown-menu:hover{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transition-delay:0s;
}

.dropdown-menu li{
    display:block;
}

.dropdown-menu a{
    position:relative;
    display:block;
    padding:9px 12px;
    font-family:"Jost", sans-serif;
    font-size:.85rem;
    font-weight:500;
    letter-spacing:.02em;
    text-transform:capitalize !important;
    white-space:nowrap;
    transition:background .2s ease;
}

.dropdown-menu a::after{
    content:"";
    position:absolute;
    left:18px;
    right:18px;
    bottom:7px;
    height:1px;
    background:var(--gold);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .25s ease;
}

.dropdown-menu a:hover{
    background:#faf5f8;
}

.dropdown-menu a:hover::after{
    transform:scaleX(1);
}

/* Icons */
.header-actions{
    display:flex;
    align-items:center;
    gap:20px;
}

.action-icon{
    display:flex;
    align-items:center;
    gap:6px;
    color:#333;
    text-decoration:none;
    transition:.3s;
}

.action-icon:hover{
    color:var(--accent);
}

.cart-icon{
    display:flex;
    align-items:center;
    gap:6px;
}

.cart-count{
    position:static;
    background:none;
    width:auto;
    height:auto;
    border-radius:0;
    font-family:"Jost", sans-serif;
    font-size:13.5px;
    font-weight:600;
    letter-spacing:.02em;
    display:inline;
}

/* Hero */
.hero,
.banner,
.slider,
.swiper,
.swiper-wrapper,
.swiper-slide{
    width:100%;
    max-width:100%;
    overflow:hidden;
}

/* Product Grid */
.products{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

/* Product Card */
.product-card{
    width:100%;
    transition:transform .25s ease, box-shadow .25s ease;
}

.product-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 28px rgba(0,0,0,.08);
}

/* Prevent long elements */
section,
main,
footer,
header,
div{
    max-width:100%;
}

/* Footer polish */
.site-footer{
    background:#111;
    color:#eaeaea;
    padding:60px 0 0;
}

.footer-inner{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
    padding-bottom:40px;
}

.footer-column h4{
    font-family: "Jost", sans-serif;
    font-size:1rem;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#fff;
    margin-bottom:16px;
    font-weight:600;
}

.footer-column p{
    color:#b8b8b8;
    font-family:"Jost", sans-serif;
    font-size:.9rem;
    letter-spacing:.01em;
}

.footer-column ul{
    list-style:none;
}

.footer-column ul li{
    margin-bottom:10px;
}

.footer-column ul a{
    color:#b8b8b8;
    text-decoration:none;
    font-family:"Jost", sans-serif;
    font-size:.88rem;
    letter-spacing:.01em;
    transition:color .2s ease;
}

.footer-column ul a:hover{
    color:var(--accent);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    padding:20px 0;
    font-family:"Jost", sans-serif;
    font-size:.78rem;
    letter-spacing:.02em;
    color:white;
    font-weight: bold;
}

/* Mobile */
@media(max-width:991px){

    .mobile-menu-toggle{
        display:flex;
    }

    .header-inner{
        flex-wrap:nowrap;
    }

    .main-nav{
        position:fixed;
        top:0;
        right:0;
        height:100vh;
        width:min(320px,85vw);
        background:#fff;
        flex-direction:column;
        justify-content:flex-start;
        padding:100px 30px 40px;
        box-shadow:-10px 0 30px rgba(0,0,0,.12);
        transform:translateX(100%);
        transition:transform .3s ease;
        overflow-y:auto;
        z-index:1000;
    }

    .main-nav.is-open{
        transform:translateX(0);
    }

    .nav-links{
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        width:100%;
        white-space:normal;
    }

    .nav-links > li{
        width:100%;
        border-bottom:1px solid var(--line);
    }

    .nav-links > li > a{
        display:block;
        padding:16px 0;
    }

    .nav-links > li > a::after{
        display:none;
    }

    .dropdown-menu{
        position:static;
        top:auto;
        width:100%;
        max-width:none;
        box-shadow:none;
        border-radius:0;
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        transition:none;
        display:none;
        padding-left:14px;
        overflow-x:auto;
    }

    .dropdown.is-open .dropdown-menu{
        display:block;
    }

    .dropdown-menu a{
        padding:12px 0;
    }

    .dropdown-menu a::after{
        left:0;
        right:0;
    }

    .cart-count{
        color:red !important;
    }

    body.nav-open{
        overflow:hidden;
    }
}

@media(max-width:480px){
    .header-inner{
        min-height:72px;
    }

    .brand-logo img{
        max-height:44px;
    }

    .announcement-bar{
        font-size:11.5px;
        padding:8px 14px;
    }
}

/* --- FLOATING CHAT BUTTON --- */
.chat-float-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.3);
    z-index: 9999;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.chat-float-btn:hover {
    transform: scale(1.1);
}

.chat-float-btn svg {
    width: 32px;
    height: 32px;
}

/* --- SEARCH OVERLAY --- */
.search-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    z-index:1100;
    opacity:0;
    visibility:hidden;
    transform:translateY(-12px);
    transition:opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
    padding:26px 0;
}

.search-overlay.is-active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    transition:opacity .2s ease, transform .2s ease;
}

.search-overlay-inner{
    width:100%;
    max-width:760px;
    margin:0 auto;
    padding:0 20px;
    position:relative;
}

.search-overlay-form{
    display:flex;
    align-items:center;
    gap:12px;
    border-bottom:2px solid var(--ink);
    padding-bottom:10px;
}

.search-overlay-form input[type="text"]{
    flex:1;
    border:none;
    outline:none;
    font-family:"Jost", sans-serif;
    font-size:1.1rem;
    color:var(--ink);
    background:transparent;
}

.search-overlay-submit-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    background:none;
    border:none;
    cursor:pointer;
    color:var(--ink);
    padding:4px;
    flex-shrink:0;
}

.search-overlay-close-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    background:none;
    border:none;
    font-size:1.5rem;
    line-height:1;
    color:#999;
    cursor:pointer;
    padding:4px;
    margin-left:6px;
    padding-left:14px;
    border-left:1px solid var(--line);
    flex-shrink:0;
    transition:color .2s ease;
}

.search-overlay-close-btn:hover{
    color:var(--ink);
}

.search-suggestions{
    display:none;
    margin-top:14px;
    max-height:60vh;
    overflow-y:auto;
}

.search-suggestions.is-visible{
    display:block;
}

.search-suggestion-row{
    display:flex;
    align-items:center;
    gap:14px;
    padding:10px 4px;
    text-decoration:none;
    color:var(--ink);
    font-family:"Jost", sans-serif;
    border-bottom:1px solid var(--line);
    transition:background .15s ease;
}

.search-suggestion-row:hover{
    background:#faf5f8;
}

.search-suggestion-row img{
    width:44px;
    height:44px;
    object-fit:contain;
    background:#f7f7f7;
    border-radius:4px;
    flex-shrink:0;
}

.search-suggestion-name{
    font-size:.88rem;
    font-weight:500;
}

.search-suggestion-brand{
    font-size:.72rem;
    color:#999;
    text-transform:uppercase;
    letter-spacing:.03em;
}

.search-suggestion-price{
    margin-left:auto;
    font-size:.85rem;
    font-weight:600;
    color:var(--gold);
    white-space:nowrap;
}

.search-view-all-link{
    display:block;
    text-align:center;
    padding:14px 4px 4px 4px;
    font-family:"Jost", sans-serif;
    font-size:.82rem;
    font-weight:600;
    letter-spacing:.02em;
    color:var(--ink);
    text-decoration:underline;
}

.search-no-results{
    padding:14px 4px;
    font-family:"Jost", sans-serif;
    font-size:.85rem;
    color:#999;
}

@media(max-width:480px){
    .search-overlay{ padding:20px 0; }
    .search-overlay-form input[type="text"]{ font-size:1rem; }
}

/* ================================================================
   MODERN ECOMMERCE POLISH LAYER
   Keeps the same design structure and existing color variables.
   Focus: spacing, touch targets, accessibility, smoother interactions,
   mobile overlay, product-card polish, and form consistency.
   ================================================================ */

::selection{
    background:var(--gold);
    color:#fff;
}

:focus-visible{
    outline:2px solid var(--gold);
    outline-offset:3px;
}

body{
    min-height:100vh;
}

.main-content{
    min-height:55vh;
}

.brand-logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
    text-decoration:none;
}

.site-header{
    border-bottom:1px solid var(--line);
    backdrop-filter:saturate(160%) blur(8px);
}

.header-inner{
    min-height:84px;
}

.nav-links > li{
    display:flex;
    align-items:center;
}

.nav-links a{
    min-height:42px;
}

.dropdown-menu{
    border:1px solid var(--line);
    padding:8px 0;
}

.dropdown-menu::-webkit-scrollbar,
.search-suggestions::-webkit-scrollbar{
    width:8px;
}

.dropdown-menu::-webkit-scrollbar-thumb,
.search-suggestions::-webkit-scrollbar-thumb{
    background:rgba(0,0,0,.18);
    border-radius:999px;
}

.header-actions{
    flex-shrink:0;
}

.action-icon{
    min-width:38px;
    min-height:38px;
    justify-content:center;
    border-radius:999px;
    line-height:1;
}

.action-icon svg{
    flex-shrink:0;
}

.action-icon:hover{
    background:#faf5f8;
}

.cart-count .badge{
    font-size:13px;
    font-weight:600;
    line-height:1;
}

.nav-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.35);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .25s ease, visibility 0s linear .25s;
    z-index:998;
}

.nav-overlay.is-active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transition-delay:0s;
}

.products-section,
.reviews-section{
    scroll-margin-top:110px;
}

.product-card{
    background:var(--paper);
    border:1px solid var(--line);
    border-radius:10px;
    overflow:hidden;
    padding:12px;
}

.product-card:hover{
    transform:translateY(-5px);
}

.product-image-wrapper{
    border-radius:8px;
}

.product-info{
    padding:2px 4px 4px;
}

.product-title{
    line-height:1.45;
}

.btn,
.btn-primary,
.btn-outline,
.btn-pink-cart,
.btn-hero-cta,
button{
    -webkit-tap-highlight-color:transparent;
}

.btn,
.btn-primary,
.btn-outline,
.btn-pink-cart,
.btn-hero-cta{
    will-change:transform;
}

.btn:active,
.btn-primary:active,
.btn-outline:active,
.btn-pink-cart:active,
.btn-hero-cta:active{
    transform:translateY(1px);
}

input,
select,
textarea{
    font-family:"Jost", sans-serif;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="search"],
select,
textarea{
    min-height:44px;
    border-radius:6px;
    transition:border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus{
    box-shadow:0 0 0 3px rgba(201,162,39,.12);
}

.search-overlay{
    border-bottom:1px solid var(--line);
}

.search-overlay-inner{
    border-radius:10px;
}

.search-suggestion-row{
    border-radius:8px;
    padding:12px 8px;
}

.search-suggestion-row img{
    border:1px solid var(--line);
}

.site-footer{
    margin-top:40px;
}

.footer-column ul a,
.footer-column p{
    line-height:1.8;
}

.chat-float-btn:focus-visible{
    outline:3px solid var(--gold);
    outline-offset:4px;
}

@media(max-width:991px){
    .header-inner{
        min-height:78px;
        gap:16px;
    }

    .header-actions{
        gap:8px;
    }

    .action-icon{
        min-width:34px;
        min-height:34px;
    }

    .main-nav{
        z-index:1000;
    }

    .nav-links a{
        min-height:auto;
    }

    .dropdown-menu{
        border:none;
        padding:0 0 8px 14px;
    }
}

@media(max-width:640px){
    .container{
        padding:0 16px;
    }

    .header-actions{
        gap:4px;
    }

    .action-icon svg{
        width:20px;
        height:20px;
    }

    .cart-count .badge{
        font-size:12px;
    }

    .product-card{
        border-radius:8px;
        padding:10px;
    }

    .search-suggestion-price{
        display:none;
    }
}

@media(prefers-reduced-motion:reduce){
    *,
    *::before,
    *::after{
        scroll-behavior:auto !important;
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.01ms !important;
    }
}
