/* Screen-reader only — SEO headings without layout change */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE — works even if Tailwind CDN is slow/unavailable
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #151515;
    background: #fff;
    overflow-x: hidden;
}

img, picture, video, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

main { display: block; min-height: 50vh; }

/* ── Layout utilities (Tailwind-independent) ───────────────── */
.page-section {
    padding: 64px 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.page-section--tight { padding-top: 48px; padding-bottom: 48px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.bottom-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .bottom-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.product-grid--split,
.split-grid .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* ── Homepage section rhythm ─────────────────────────────────── */
.page-home .page-section--products {
    padding-top: 72px;
    padding-bottom: 72px;
}

.page-home .page-section--gallery {
    padding-top: 0;
    padding-bottom: 72px;
}

.page-home .page-section--split {
    padding-top: 48px;
    padding-bottom: 72px;
}

.page-home .trust-strip {
    margin: 0;
}

.page-home .bottom-gallery-grid {
    width: 100%;
    margin: 0;
}

.trust-strip {
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px;
    overflow: hidden;
}

.trust-strip__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px 40px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6b7280;
}

.trust-strip__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.trust-strip__item i {
    color: #151515;
    font-size: 13px;
}

.guest-bar {
    background: #151515;
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

@media (max-width: 520px) {
    .guest-bar {
        font-size: 10px;
        gap: 8px;
        padding: 8px 12px;
    }

    .guest-bar > span:first-child {
        flex: 1 1 100%;
        line-height: 1.5;
    }
}

.guest-bar a {
    text-decoration: underline;
    font-weight: 600;
}

.guest-bar a:hover { opacity: 0.75; }

/* ── Brand logo + name ──────────────────────────────────────── */
.site-logo-link {
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-logo-link:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.site-brand__name {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 1.15;
    white-space: nowrap;
}

.site-brand--header .site-brand__name,
.site-brand--mobile .site-brand__name,
.site-brand--footer .site-brand__name {
    color: #fff;
}

.site-brand--header .site-brand__name {
    font-size: 15px;
}

@media (max-width: 480px) {
    .site-brand--header {
        gap: 8px;
    }

    .site-brand--header .site-brand__name {
        font-size: 13px;
    }

    .site-logo--header {
        width: 38px;
        height: 38px;
    }
}

.site-brand--mobile .site-brand__name {
    font-size: 14px;
}

.site-brand--footer .site-brand__name {
    font-size: 16px;
}

.site-brand--admin .site-brand__name {
    color: #151515;
    font-size: 17px;
}

.site-brand--hero {
    flex-direction: column;
    gap: 12px;
}

.site-brand--hero .site-brand__name {
    color: #fff;
    font-size: 18px;
    text-align: center;
}

.site-logo {
    display: block;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    filter: contrast(1.06) saturate(0.92);
}

.site-logo--header {
    width: 44px;
    height: 44px;
    padding: 2px;
}

.site-logo--mobile {
    width: 40px;
    height: 40px;
    padding: 2px;
}

.site-logo--footer {
    width: 56px;
    height: 56px;
    padding: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.site-logo--hero {
    width: 72px;
    height: 72px;
    padding: 4px;
    margin: 0 auto 16px;
}

.site-logo--admin {
    width: 64px;
    height: 64px;
    padding: 3px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

html.dark .site-logo {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* Site header layout fallback */
#site-header .header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 12px;
}

#site-header nav.header-nav {
    display: none;
    align-items: center;
    gap: 32px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    flex-shrink: 0;
}

#site-header .header-icons {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 11px;
    flex-shrink: 0;
}

#mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: none;
    border: none;
    color: inherit;
}

@media (max-width: 1023px) {
    #site-header .header-inner {
        display: grid;
        grid-template-columns: 40px minmax(0, 1fr) auto;
        align-items: center;
        column-gap: 8px;
    }

    #mobile-menu-btn {
        grid-column: 1;
        justify-self: start;
    }

    #site-header .site-logo-link {
        grid-column: 2;
        justify-self: center;
        max-width: 100%;
        min-width: 0;
    }

    #site-header .header-icons {
        grid-column: 3;
        justify-self: end;
        gap: 10px;
    }

    #site-header .site-brand__name {
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 42vw;
    }
}

@media (max-width: 400px) {
    .site-brand--header .site-brand__name {
        display: none;
    }
}

@media (min-width: 1024px) {
    #site-header .header-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    #site-header .site-logo-link {
        grid-column: 1;
        justify-self: start;
    }

    #site-header nav.header-nav {
        display: flex;
        grid-column: 2;
        justify-self: center;
    }

    #site-header .header-icons {
        grid-column: 3;
        justify-self: end;
    }

    #mobile-menu-btn { display: none; }
}

/* Footer grid fallback */
.site-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 640px) {
    .site-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .site-footer-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════
   HERO SLIDESHOW
═══════════════════════════════════════════════════════════════ */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: clamp(460px, 88vh, 920px);
    overflow: hidden;
    background: #111;
}

@media (max-width: 749px) {
    .hero-slideshow {
        height: clamp(380px, 72vh, 680px);
    }
}

.page-home .hero-slideshow {
    margin-top: 0;
}

/* Every slide is absolutely stacked; JS toggles .active */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.0s ease-in-out;
    pointer-events: none;
    overflow: hidden;
}
.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Image frame — full uploaded picture visible (no zoom/crop) */
.hero-slide__media {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    z-index: 0;
}

.hero-slide__media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-slide__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Dark gradient overlay – bottom half darker for readable text */
.hero-slide__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.12) 0%,
        rgba(0,0,0,0.20) 40%,
        rgba(0,0,0,0.60) 75%,
        rgba(0,0,0,0.75) 100%
    );
    pointer-events: none;
}

/* Text / CTA block – pinned to bottom-centre */
.hero-slide__content {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    padding: 0 24px;
    text-align: center;
    z-index: 5;
    animation: heroContentIn 0.8s ease both;
}
@keyframes heroContentIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-title {
    color: #fff;
    font-size: clamp(1.8rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

@media (max-width: 749px) {
    .hero-slide__content {
        bottom: 56px;
        padding: 0 16px;
    }
    .hero-title { font-size: clamp(1.4rem, 6vw, 1.8rem); }
    .hero-subtitle { font-size: 11px; margin-bottom: 20px; }
    .hero-eyebrow { font-size: 10px; }
    .hero-dots { bottom: 20px; }
    .btn-white, .btn-outline { padding: 12px 24px; font-size: 10px; }
}

/* Dot nav */
.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.hero-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.3);
}
.hero-dot svg { display: none; }

/* Buttons */
.btn-white {
    display: inline-block;
    padding: 14px 32px;
    background: white;
    color: black;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-white:hover {
    background: transparent;
    color: white;
}

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: white;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: black;
}

.btn-black {
    display: inline-block;
    padding: 14px 32px;
    background: black;
    color: white;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    border: 2px solid black;
}

.btn-black:hover {
    background: white;
    color: black;
}

/* Section */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 10px;
    color: #111;
}

.section-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #888;
    margin-bottom: 14px;
}

.section-link {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: opacity 0.3s;
}

.section-link:hover {
    opacity: 0.55;
}

/* Product Card */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* ── Image wrapper: MUST be position:relative + overflow:hidden ── */
.product-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background-color: #e8e5e1;
    display: block;
}

.product-card__image-wrap--empty,
.product-card__no-image,
.qv-no-image,
.split-grid__hero-link--empty {
    background-color: #e8e5e1;
}

.product-card__no-image,
.qv-no-image {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.split-grid__hero-link--empty {
    display: block;
    min-height: 100%;
    aspect-ratio: 3/4;
}

.product-card__img--primary {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.5s ease;
}

.product-card__img--secondary {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-card__img--secondary {
    opacity: 1;
}

.product-card:hover .product-card__img--primary {
    opacity: 0;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    font-weight: 600;
}

.product-badge--sold_out {
    background: #151515;
    color: white;
}

.product-badge--sale {
    background: #FF0000;
    color: white;
}

.product-badge--new {
    background: #00FF00;
    color: black;
}

.quick-view-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    color: black;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    z-index: 3;
}

.product-card:hover .quick-view-btn {
    opacity: 1;
    transform: translateY(0);
}

/* ── Product card info (below image) ─────────────────────────── */
.product-card__info {
    padding-top: 12px;
    padding-bottom: 4px;
}

.product-card__info h3 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
    margin-bottom: 5px;
    font-weight: 500;
}

.product-card__info h3 a {
    color: inherit;
    transition: opacity 0.25s;
}

.product-card__info h3 a:hover {
    opacity: 0.55;
}

.product-card__price {
    font-size: 12px;
    font-weight: 600;
}

/* ── Badges ─────────────────────────────────────────────────── */
.color-swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s;
    padding: 0;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}

.color-swatch.active,
.color-swatch:hover {
    border-color: #000;
}

/* Gallery Grid */
.gallery-item--empty {
    background-color: #e8e5e1;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    display: block;
}

.gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.gallery-item:hover .gallery-item__overlay {
    background: rgba(0, 0, 0, 0.5);
}

.gallery-item__title {
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Split Grid */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

@media (max-width: 749px) {
    .split-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.split-grid__hero {
    min-height: 100%;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
}

.split-grid__hero-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.split-grid__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.split-grid__hero:hover img {
    transform: scale(1.04);
}

@media (min-width: 750px) {
    .split-grid__hero {
        aspect-ratio: auto;
        min-height: 520px;
    }
}

/* Bottom Gallery */
.bottom-gallery-item--empty {
    background-color: #e8e5e1;
}

.bottom-gallery-item {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    display: block;
}

.bottom-gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bottom-gallery-item:hover img {
    transform: scale(1.05);
}

.bottom-gallery-item__content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
}

.bottom-gallery-item__title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: capitalize;
}

.bottom-gallery-item__btn {
    color: white;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.3s;
}

.bottom-gallery-item__btn:hover {
    opacity: 0.7;
}

.bottom-gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, transparent 60%);
}

/* Stagger Animation */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    animation: staggerIn 0.6s ease forwards;
    animation-delay: var(--stagger-delay, 0s);
}

@keyframes staggerIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #FF0000;
    color: white;
    font-size: 9px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cart-badge.hidden {
    display: none;
}

/* Lazy Load */
.lazy-image {
    transition: filter 0.3s ease;
}

.lazy-image.loading {
    filter: blur(10px);
}

.lazy-image.loaded {
    filter: blur(0);
}

/* Mobile Menu Open */
body.menu-open {
    overflow: hidden;
}

body.menu-open #mobile-menu {
    transform: translateX(0);
}

body.menu-open #mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

body.search-open #search-modal {
    opacity: 1;
    visibility: visible;
}

body.quick-view-open #quick-view-modal {
    opacity: 1;
    visibility: visible;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 749px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Form Styles */
.form-input {
    width: 100%;
    border: 1px solid #ddd;
    padding: 12px 16px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #000;
}

.form-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    font-weight: 600;
}

/* Quantity Selector */
.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
}

.qty-selector button {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 18px;
}

.qty-selector input {
    width: 50px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    height: 40px;
    font-size: 14px;
}

/* Image crossfade */
.product-image-crossfade {
    position: relative;
}

.product-image-crossfade img {
    transition: opacity 0.4s ease;
}

/* ═══════════════════════════════════════════════════════════════
   SPLIT-SCREEN PRODUCT PAGE
═══════════════════════════════════════════════════════════════ */

/* Outer wrapper — two columns on desktop */
.product-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
    padding-top: 16px;
}

@media (max-width: 900px) {
    .product-split { grid-template-columns: 1fr; gap: 24px; }
}

/* ── LEFT: Gallery column ── */
.product-split__gallery {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

/* Vertical thumbnail rail */
.product-thumb-rail {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    width: 72px;
    position: sticky;
    top: 88px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    scrollbar-width: none;
}
.product-thumb-rail::-webkit-scrollbar { display: none; }

@media (max-width: 600px) { .product-thumb-rail { display: none; } }

.thumb-btn {
    width: 72px;
    height: 90px;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: none;
    transition: border-color 0.2s;
    flex-shrink: 0;
}
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb-btn.active,
.thumb-btn:hover { border-color: #000; }

/* Main scrollable image stack */
.product-main-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.product-no-image {
    flex: 1;
    aspect-ratio: 4/5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #f4f3f1;
    color: #9ca3af;
    text-align: center;
    padding: 24px;
    min-width: 0;
}
.product-no-image i {
    font-size: 2.5rem;
    opacity: 0.5;
}
.product-no-image p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0;
}

.product-main-image-item {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #f4f3f1;
}
.product-main-image-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.product-main-image-item:hover img { transform: scale(1.03); }

/* ── RIGHT: Sticky info column ── */
.product-split__info {
    position: sticky;
    top: 80px;
    align-self: start;
}

.product-sticky-panel {
    overflow-y: auto;
    scrollbar-width: none;
    padding-bottom: 24px;
}
.product-sticky-panel::-webkit-scrollbar { display: none; }

/* ── Colour swatches (larger) ── */
.color-swatch-lg {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    padding: 0;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.12);
    transition: border-color 0.2s, transform 0.2s;
}
.color-swatch-lg.active,
.color-swatch-lg:hover {
    border-color: #000;
    transform: scale(1.15);
}

/* ── Size buttons ── */
.size-btn {
    padding: 10px 16px;
    min-width: 52px;
    border: 1.5px solid #d1d5db;
    background: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.size-btn:hover { border-color: #000; }
.size-btn.active { border-color: #000; background: #000; color: #fff; }
.size-btn--oos {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Toast fade-in */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Shake animation for size warning */
@keyframes shake {
    0%,100% { transform: translateX(0); }
    20%      { transform: translateX(-6px); }
    40%      { transform: translateX(6px); }
    60%      { transform: translateX(-4px); }
    80%      { transform: translateX(4px); }
}
.shake { animation: shake 0.5s ease; }

/* ── Add to Cart button ── */
.btn-atc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    background: #000;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 2px solid #000;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
    white-space: nowrap;
}
.btn-atc:hover { background: #fff; color: #000; }

/* ── Buy It Now button ── */
.btn-buy-now {
    display: block;
    padding: 14px 20px;
    background: #FF0000;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 2px solid #FF0000;
    text-align: center;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
}
.btn-buy-now:hover { background: #c00; border-color: #c00; }

/* ── Accordion ── */
.acc-item {
    border-top: 1px solid #e5e7eb;
}
.acc-item:last-child { border-bottom: 1px solid #e5e7eb; }

.acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: #111;
    text-align: left;
}
.acc-header:hover { opacity: 0.7; }

.acc-chevron {
    font-size: 10px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.acc-item.open .acc-chevron { transform: rotate(180deg); }

.acc-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}
.acc-item.open .acc-body { grid-template-rows: 1fr; }

.acc-body-inner {
    overflow: hidden;
    font-size: 13px;
    line-height: 1.7;
    color: #555;
    padding-bottom: 16px;
}

.acc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.acc-list li {
    padding: 4px 0 4px 16px;
    position: relative;
}
.acc-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: #FF0000;
}

.acc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    margin-top: 8px;
}
.acc-table th, .acc-table td {
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    text-align: left;
}
.acc-table thead { background: #f9fafb; font-weight: 600; }
.acc-table tbody tr:nth-child(even) { background: #fafafa; }

/* ═══════════════════════════════════════════════════════════════
   FULLSCREEN LIGHTBOX
═══════════════════════════════════════════════════════════════ */

/* Zoom hint badge on each main image */
.product-main-image-item { cursor: zoom-in; }
.lb-zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}
.product-main-image-item:hover .lb-zoom-hint { opacity: 1; }

/* Overlay backdrop — hidden by default, shown via .lb-is-open class */
.lb-overlay {
    display: none;              /* JS adds .lb-is-open to show */
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0,0,0,0.96);
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.lb-overlay.lb-is-open {
    display: flex;
}

/* Close button */
.lb-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
}
.lb-close:hover { background: rgba(255,255,255,0.2); }

/* Counter (e.g. "2 / 4") */
.lb-counter {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 10;
}

/* Prev / Next arrows */
.lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    z-index: 10;
}
.lb-arrow:hover { background: rgba(255,255,255,0.2); }
.lb-arrow--prev { left: 20px; }
.lb-arrow--next { right: 20px; }
.lb-arrow--prev:hover { transform: translateY(-50%) translateX(-2px); }
.lb-arrow--next:hover { transform: translateY(-50%) translateX(2px); }

@media (max-width: 600px) {
    .lb-arrow--prev { left: 8px; width: 38px; height: 38px; }
    .lb-arrow--next { right: 8px; width: 38px; height: 38px; }
}

/* Image stage */
.lb-stage {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 80px 16px;
    position: relative;
    min-height: 0;
}
@media (max-width: 600px) {
    .lb-stage { padding: 56px 48px 16px; }
}

/* Main lightbox image */
.lb-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
    user-select: none;
    display: block;
    margin: auto;
}

/* Loading spinner */
.lb-spinner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 28px;
}

/* Thumbnail strip at the bottom */
.lb-thumbs {
    flex-shrink: 0;
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    overflow-x: auto;
    max-width: 100%;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.lb-thumbs::-webkit-scrollbar { height: 4px; }
.lb-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }

.lb-thumb {
    flex-shrink: 0;
    width: 56px;
    height: 70px;
    background-size: cover;
    background-position: center;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s, border-color 0.2s;
    border-radius: 2px;
}
.lb-thumb:hover { opacity: 0.8; }
.lb-thumb.active { opacity: 1; border-color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   DARK / LIGHT MODE TOGGLE BUTTON
═══════════════════════════════════════════════════════════════ */
.theme-toggle-btn {
    position: relative;
    width: 36px;
    height: 20px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    flex-shrink: 0;
    color: #fff;
    font-size: 11px;
    gap: 0;
    padding: 0;
    overflow: hidden;
}
.theme-toggle-btn:hover { background: rgba(255,255,255,0.25); }

/* Sun shown in dark mode (click to go light), Moon shown in light mode (click to go dark) */
.theme-icon-sun  { display: none; }
.theme-icon-moon { display: flex; }

html.dark .theme-icon-sun  { display: flex; }
html.dark .theme-icon-moon { display: none; }

/* ═══════════════════════════════════════════════════════════════
   DARK MODE — GLOBAL OVERRIDES
   Selector: html.dark  (set by JS on <html> element)
═══════════════════════════════════════════════════════════════ */

/* ── Base ─────────────────────────────────────────────────── */
html.dark body {
    background-color: #111 !important;
    color: #e5e5e5 !important;
}

/* ── Main content wrappers ────────────────────────────────── */
html.dark main,
html.dark section,
html.dark article,
html.dark .max-w-\[1400px\] {
    background-color: transparent;
}

/* ── Typography helpers ───────────────────────────────────── */
html.dark .section-title    { color: #f0f0f0 !important; }
html.dark .section-subtitle { color: #9ca3af; }
html.dark .section-link     { color: #d1d5db; }
html.dark .section-link:hover { color: #fff; }

/* Tailwind text utilities used widely */
html.dark .text-taurus-dark,
html.dark .text-gray-800,
html.dark .text-gray-700,
html.dark .text-gray-600,
html.dark .text-black { color: #e5e5e5 !important; }

html.dark .text-gray-500,
html.dark .text-gray-400 { color: #9ca3af !important; }

html.dark .border-gray-200,
html.dark .border-gray-300 { border-color: #2d2d2d !important; }

html.dark .bg-white { background-color: #1a1a1a !important; }
html.dark .bg-gray-50,
html.dark .bg-gray-100 { background-color: #222 !important; }

/* ── Navigation breadcrumb ────────────────────────────────── */
html.dark nav .text-gray-400 { color: #6b7280 !important; }
html.dark nav .text-black    { color: #f0f0f0 !important; }

/* ── Product cards ────────────────────────────────────────── */
html.dark .product-card { background: transparent; }

html.dark .product-card__image-wrap {
    background-color: #1e1e1e;
}

html.dark .product-card__info { color: #e5e5e5; }
html.dark .product-card__info a { color: #e5e5e5; }
html.dark .product-card__info a:hover { color: #fff; }

html.dark .product-badge { background: #111; color: #fff; }

/* ── Product detail page ──────────────────────────────────── */
html.dark .product-main-image-item { background: #1e1e1e; }

html.dark .size-btn {
    background: #1a1a1a;
    border-color: #3a3a3a;
    color: #e5e5e5;
}
html.dark .size-btn:hover  { border-color: #fff; }
html.dark .size-btn.active { background: #fff; color: #111; border-color: #fff; }

html.dark .btn-atc {
    background: #fff;
    color: #111;
    border-color: #fff;
}
html.dark .btn-atc:hover { background: #111; color: #fff; border-color: #fff; }

html.dark .product-sticky-panel { color: #e5e5e5; }

html.dark .acc-item { border-color: #2d2d2d; }
html.dark .acc-header { color: #e5e5e5; }
html.dark .acc-body-inner { color: #9ca3af; }
html.dark .acc-table th,
html.dark .acc-table td { border-color: #2d2d2d; color: #d1d5db; }
html.dark .acc-table thead { background: #222; }
html.dark .acc-table tbody tr:nth-child(even) { background: #1a1a1a; }

/* Trust badges */
html.dark .border-gray-200 { border-color: #2d2d2d !important; }

/* ── Category / collection page ───────────────────────────── */
html.dark select,
html.dark .form-input,
html.dark input[type="text"],
html.dark input[type="email"],
html.dark input[type="number"],
html.dark textarea {
    background-color: #1a1a1a !important;
    border-color: #3a3a3a !important;
    color: #e5e5e5 !important;
}
html.dark select option { background: #1a1a1a; color: #e5e5e5; }

/* ── Gallery items ────────────────────────────────────────── */
html.dark .gallery-item__title { color: #fff; }

/* ── Bottom gallery & hero — already dark overlay, fine ───── */

/* ── Cart page ────────────────────────────────────────────── */
html.dark .cart-item { border-color: #2d2d2d; }
html.dark .cart-summary { background: #1a1a1a; }

/* ── Quick-view modal ─────────────────────────────────────── */
html.dark #quick-view-content {
    background: #1a1a1a;
    color: #e5e5e5;
}

/* ── Search modal input ───────────────────────────────────── */
html.dark #search-modal input {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

/* ── Quantity input ───────────────────────────────────────── */
html.dark #qtyInput {
    background: #1a1a1a !important;
    border-color: #3a3a3a !important;
    color: #e5e5e5 !important;
}
html.dark #qtyMinus,
html.dark #qtyPlus {
    background: #222 !important;
    color: #e5e5e5 !important;
    border-color: #3a3a3a !important;
}
html.dark #qtyMinus:hover,
html.dark #qtyPlus:hover { background: #2d2d2d !important; }

/* ── "You May Also Like" heading ──────────────────────────── */
html.dark h2.border-b { border-color: #2d2d2d !important; color: #e5e5e5 !important; }

/* ── FAQ / About / Contact pages ─────────────────────────── */
html.dark .faq-item,
html.dark .faq-question { border-color: #2d2d2d; color: #e5e5e5; }
html.dark .faq-answer   { color: #9ca3af; }

/* ── Admin panel — keep light, don't invert ───────────────── */
html.dark .admin-panel { background: #fff; color: #111; }

/* ── Trust strip & announcement ──────────────────────────── */
html.dark .border-gray-200 { border-color: #2d2d2d !important; }
html.dark .text-gray-500   { color: #9ca3af !important; }
html.dark .text-taurus-dark { color: #e5e5e5 !important; }

/* ── Scrollbar (Webkit) ───────────────────────────────────── */
html.dark ::-webkit-scrollbar-track  { background: #111; }
html.dark ::-webkit-scrollbar-thumb  { background: #3a3a3a; }
html.dark ::-webkit-scrollbar-thumb:hover { background: #555; }

/* ── Smooth colour transitions site-wide ─────────────────── */
body,
.product-card,
.product-card__image-wrap,
.product-card__info,
.size-btn,
.acc-item,
.acc-header,
.acc-body-inner,
.product-sticky-panel,
.product-main-image-item,
select,
input,
textarea,
.form-input {
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL POLISH
═══════════════════════════════════════════════════════════════ */

/* Smooth scroll — defined in reset above */

/* Better focus ring */
:focus-visible {
    outline: 2px solid #c00000;
    outline-offset: 3px;
}

/* Cursor on all buttons */
button { cursor: pointer; }

/* Section max-width helper */
.site-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Product card hover lift (already defined, but add for split-grid cards) */
.split-grid .product-card:hover {
    transform: translateY(-4px);
}

/* Bottom gallery min-height on mobile */
@media (max-width: 600px) {
    .bottom-gallery-item { aspect-ratio: 4/5; }
    .bottom-gallery-item__content {
        bottom: 24px;
        left: 24px;
    }
    .bottom-gallery-item__title { font-size: 20px; }
}

@media (max-width: 749px) {
    .page-home .page-section--products,
    .page-home .page-section--split {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .page-home .page-section--gallery {
        padding-bottom: 48px;
    }

    .section-header {
        margin-bottom: 32px;
    }
}

/* Announcement bar dark mode */
html.dark .bg-taurus-dark { background-color: #000 !important; }

/* ── Bank payment box ───────────────────────────────────────── */
.payment-bank-box {
    background: #f8f9fa;
    border: 2px solid #151515;
    border-radius: 4px;
    padding: 24px;
    text-align: left;
}

.payment-bank-box--empty {
    background: #fffbeb;
    border-color: #f59e0b;
}

.payment-bank-box__header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.payment-bank-box__header i {
    font-size: 16px;
}

.payment-bank-box__summary {
    background: #151515;
    color: #fff;
    padding: 16px 18px;
    border-radius: 4px;
    margin-bottom: 18px;
}

.payment-bank-box__summary .payment-bank-box__label {
    color: rgba(255,255,255,0.65);
}

.payment-bank-box__summary .payment-bank-box__value {
    color: #fff;
}

.payment-bank-box__amount {
    font-size: 20px;
}

.payment-bank-box__details {
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
}

.payment-bank-box__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    font-size: 14px;
}

.payment-bank-box__row--highlight {
    background: #fff;
    border: 1px dashed #151515;
    padding: 14px 16px;
    border-radius: 4px;
}

.payment-bank-box__label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6b7280;
    min-width: 120px;
}

.payment-bank-box__value {
    font-weight: 600;
    color: #151515;
    flex: 1;
}

.payment-bank-box__account {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 18px;
    letter-spacing: 0.06em;
}

.payment-bank-box__copy {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 12px;
    background: #151515;
    color: #fff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.payment-bank-box__copy:hover {
    opacity: 0.85;
}

.payment-bank-box__note {
    font-size: 12px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

html.dark .payment-bank-box {
    background: #1a1a1a;
    border-color: #3a3a3a;
}

html.dark .payment-bank-box__row--highlight {
    background: #111;
    border-color: #555;
}

html.dark .payment-bank-box__value,
html.dark .payment-bank-box__account {
    color: #f0f0f0;
}

html.dark .payment-bank-box__note {
    color: #9ca3af;
    border-color: #333;
}

/* ── Floating WhatsApp support ───────────────────────────────────────── */
.whatsapp-support {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 85;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease, width 0.25s ease, border-radius 0.25s ease, padding 0.25s ease;
    overflow: hidden;
}

.whatsapp-support i {
    font-size: 28px;
    flex-shrink: 0;
    margin: 0 auto;
}

.whatsapp-support__label {
    display: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    padding-right: 18px;
}

.whatsapp-support:hover,
.whatsapp-support:focus-visible {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
    color: #fff;
    width: auto;
    border-radius: 999px;
    padding-left: 16px;
}

.whatsapp-support:hover i,
.whatsapp-support:focus-visible i {
    margin: 0;
}

.whatsapp-support:hover .whatsapp-support__label,
.whatsapp-support:focus-visible .whatsapp-support__label {
    display: inline;
}

@media (max-width: 749px) {
    .whatsapp-support {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-support i {
        font-size: 26px;
    }
}

