/* =============================================
   LESCOTT — Combined Stylesheet
   Premium Black / Off-White / Gold theme
   ============================================= */

*, *::before, *::after { box-sizing: border-box; }

/* =============================================
   MOBILE ZOOM PREVENTION
   1. Stop horizontal overflow from zooming page out
   2. Prevent iOS Safari from zooming on input focus
      (iOS zooms in when font-size < 16px on focused inputs)
   ============================================= */
html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%; /* prevent iOS font scaling */
}
body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* iOS input zoom fix — MUST be exactly 16px on mobile */
@media (max-width: 768px) {
    input,
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="search"],
    input[type="number"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* Prevent any rogue wide element from breaking horizontal layout */
img, video, iframe, table {
    max-width: 100%;
}

:root {
    --bg:           #EFEDE9;
    --bg-alt:       #E6E3DC;
    --ink:          #0E0E0E;
    --ink-soft:     #4A4A47;
    --ink-faint:    #8A8780;
    --line:         rgba(14,14,14,0.12);
    --line-soft:    rgba(14,14,14,0.07);
    --gold:         #C9A35A;
    --gold-soft:    rgba(201,163,90,0.18);
    --white:        #FFFFFF;
    --black:        #000000;
    --danger:       #C0392B;
    --success:      #2E7D4F;
    --whatsapp:     #25D366;
}

body {
    margin: 0;
    background-color: var(--bg);
    color: var(--ink);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

h1, h2, h3 { font-family: 'Playfair Display', Georgia, "Times New Roman", serif; }

.section { display: none; }
.section.active-section { display: block; }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   PRELOADER
   ============================================= */
#preloader {
    position: fixed;
    inset: 0;
    background: #FFFFFF;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    animation: preloaderFadeIn 0.5s ease both;
}
@keyframes preloaderFadeIn {
    from { opacity: 0; transform: scale(0.94) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.preloader-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 4px;
    animation: preloaderPulse 1.8s ease-in-out infinite;
}
@keyframes preloaderPulse {
    0%, 100% { opacity: 1;   transform: scale(1); }
    50%       { opacity: 0.7; transform: scale(0.95); }
}
.preloader-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: #0E0E0E;
    text-transform: uppercase;
}
.preloader-bar-wrap {
    width: 140px;
    height: 2px;
    background: rgba(14,14,14,0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 8px;
}
.preloader-bar {
    height: 100%;
    width: 0%;
    background: #0E0E0E;
    border-radius: 2px;
    animation: preloaderFill 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes preloaderFill {
    0%   { width: 0%; }
    60%  { width: 75%; }
    85%  { width: 90%; }
    100% { width: 100%; }
}


/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 36px;
    background-color: var(--white);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
    gap: 12px;
}
.logo { color: var(--ink); display: flex; align-items: center; gap: 10px; }
.logo h2 { margin: 0; font-size: 1.15rem; font-weight: 400; letter-spacing: 5px; color: var(--ink); }
.navbar { display: flex; gap: 28px; align-items: center; }
.navbar a {
    text-decoration: none; color: var(--ink); font-size: 0.8rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase; padding: 5px 0; transition: color 0.2s ease;
}
.navbar a:hover { color: var(--gold); }
.navbar a.active { color: var(--ink); font-weight: 700; border-bottom: 2px solid var(--ink); }
.header-actions { display: flex; align-items: center; gap: 6px; }

/* =============================================
   NAV DROPDOWN (Shop mega-menu)
   ============================================= */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-trigger {
    text-decoration: none; color: var(--ink); font-size: 0.8rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase; padding: 5px 0;
    transition: color 0.2s ease; display: flex; align-items: center; gap: 5px;
    cursor: pointer; background: none; border: none; font-family: inherit;
}
.nav-dropdown-trigger:hover { color: var(--gold); }
.nav-dropdown-trigger.active { color: var(--ink); font-weight: 700; border-bottom: 2px solid var(--ink); }
.nav-chevron { transition: transform 0.2s ease; flex-shrink: 0; }
.nav-dropdown:hover .nav-chevron,
.nav-dropdown.open .nav-chevron { transform: rotate(180deg); }

.nav-dropdown-panel {
    position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
    background: var(--white); border: 1px solid var(--line);
    border-radius: 12px; padding: 20px; min-width: 540px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease; z-index: 300;
    display: flex; gap: 0;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown.open .nav-dropdown-panel {
    opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}

.ndp-group { flex: 1; min-width: 180px; }
.ndp-label {
    font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.4px; color: var(--ink-faint); margin: 0 0 10px; padding: 0 4px;
}
.ndp-divider {
    width: 1px; background: var(--line-soft); margin: 0 18px; flex-shrink: 0;
}
.ndp-item {
    display: flex; align-items: center; gap: 7px;
    text-decoration: none; color: var(--ink-soft); font-size: 0.82rem; font-weight: 500;
    padding: 8px 10px; border-radius: 7px;
    transition: background 0.15s, color 0.15s; white-space: nowrap;
}
.ndp-item:hover { background: var(--bg-alt); color: var(--ink); }
.ndp-item.active-cat { background: var(--ink); color: var(--white); }
/* Special collection accents */
.ndp-new:hover    { background: rgba(34,197,94,0.1); color: #15803d; }
.ndp-best:hover   { background: rgba(234,179,8,0.12); color: #854d0e; }
.ndp-limited:hover{ background: rgba(139,92,246,0.1); color: #6d28d9; }
.ndp-sale:hover   { background: rgba(239,68,68,0.1); color: #b91c1c; }

.ndp-cats { display: flex; flex-wrap: wrap; gap: 4px; }
.ndp-cats .ndp-item { white-space: nowrap; font-size: 0.76rem; padding: 6px 9px; }

/* =============================================
   MOBILE SHOP ACCORDION
   ============================================= */
.mn-shop-wrap { border-bottom: none; }
.mn-shop-toggle {
    width: 100%; text-align: left; background: none; border: none;
    font-family: inherit; display: flex; justify-content: space-between;
    align-items: center; cursor: pointer;
}
.mn-chevron { transition: transform 0.25s ease; flex-shrink: 0; }
.mn-shop-wrap.open .mn-chevron { transform: rotate(180deg); }

.mn-shop-panel {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.2s;
    padding: 0 24px;
    background: var(--bg-alt);
}
.mn-shop-wrap.open .mn-shop-panel { max-height: 600px; padding: 12px 24px 16px; }

.mn-sub-label {
    font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.2px; color: var(--ink-faint); margin: 0 0 6px;
}
.mn-sub-link {
    display: block; text-decoration: none; color: var(--ink-soft);
    font-size: 0.88rem; font-weight: 500; padding: 8px 0;
    border-bottom: 1px solid var(--line-soft);
    transition: color 0.15s, padding-left 0.15s;
}
.mn-sub-link:last-child { border-bottom: none; }
.mn-sub-link:hover { color: var(--ink); padding-left: 6px; }
.mn-new:hover     { color: #15803d; }
.mn-best:hover    { color: #854d0e; }
.mn-limited:hover { color: #6d28d9; }
.mn-sale:hover    { color: #b91c1c; }


/* BACK BUTTON */
.back-btn {
    background: transparent; border: none; color: var(--ink); cursor: pointer;
    width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; flex-shrink: 0; transition: background 0.2s;
}
.back-btn:hover { background: var(--bg-alt); }

/* HAMBURGER (mobile only) */
.mobile-menu-btn { display: none; }

/* MOBILE NAV OVERLAY */
.mobile-nav-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 500;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

/* MOBILE NAV DRAWER */
.mobile-nav {
    position: fixed; top: 0; right: -340px; width: 320px; max-width: 90vw; height: 100vh;
    background: var(--white); z-index: 600; display: flex; flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -6px 0 32px rgba(0,0,0,0.15);
    overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav-top {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 22px; border-bottom: 1px solid var(--line-soft);
}
.mobile-nav-close {
    background: transparent; border: none; font-size: 1.2rem; cursor: pointer;
    color: var(--ink); width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.mobile-nav-close:hover { background: var(--bg-alt); }
.mobile-nav-links {
    display: flex; flex-direction: column; padding: 20px 0;
    border-bottom: 1px solid var(--line-soft);
}
.mobile-nav-links a.mn-link {
    text-decoration: none; color: var(--ink); font-size: 1rem; font-weight: 600;
    padding: 16px 24px; letter-spacing: 0.5px; text-transform: uppercase;
    transition: background 0.15s, color 0.15s; border-left: 3px solid transparent;
}
.mobile-nav-links a.mn-link:hover { background: var(--bg-alt); border-left-color: var(--ink); }
.mobile-nav-links a.mn-link.active { color: var(--gold); border-left-color: var(--gold); }
.mobile-nav-social { padding: 24px 22px; }
.msoc-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--ink-faint); margin: 0 0 14px; }
.msoc-links { display: flex; flex-direction: column; gap: 10px; }
.msoc-link {
    display: flex; align-items: center; gap: 12px; text-decoration: none;
    color: var(--ink); font-size: 0.9rem; font-weight: 500;
    padding: 10px 12px; border-radius: 8px; background: var(--bg-alt);
    transition: background 0.2s, transform 0.15s;
}
.msoc-link:hover { background: var(--bg); transform: translateX(4px); }
.msoc-link span { font-size: 0.9rem; }

.icon-btn {
    position: relative; background: transparent; border: none; border-radius: 50%;
    width: 42px; height: 42px; cursor: pointer; display: flex; align-items: center;
    justify-content: center; transition: background 0.2s ease; flex-shrink: 0; color: var(--ink);
}
.icon-btn:hover { background: var(--bg-alt); }
.icon-btn svg { width: 19px; height: 19px; stroke: currentColor; }
.cart-icon-btn { position: relative; }
.cart-badge {
    position: absolute; top: 2px; right: 2px; background: var(--ink); color: var(--white);
    font-size: 0.62rem; font-weight: 700; min-width: 16px; height: 16px; border-radius: 9px;
    display: flex; align-items: center; justify-content: center; padding: 0 4px; pointer-events: none;
}
.wishlist-badge { background: var(--gold); color: var(--ink); }

.search-popover {
    position: absolute; top: 100%; right: 36px; margin-top: 10px; background: var(--white);
    border: 1px solid var(--line); border-radius: 4px; box-shadow: 0 14px 36px rgba(0,0,0,0.14);
    padding: 10px; width: 320px; max-width: 88vw; opacity: 0; transform: translateY(-8px);
    pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease; z-index: 220;
}
.search-popover.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.search-popover input {
    width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 3px;
    font-size: 0.88rem; outline: none; font-family: inherit; background: var(--bg); color: var(--ink);
}
.search-popover input:focus { border-color: var(--ink); }


/* CART / WISHLIST */
.cart-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar, .wishlist-sidebar {
    position: fixed; right: -440px; top: 0; width: 420px; max-width: 92vw; height: 100vh;
    background: var(--white); border-left: 1px solid var(--line); z-index: 300; display: flex;
    flex-direction: column; transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.18);
}
.cart-sidebar.open, .wishlist-sidebar.open { right: 0; }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 22px; border-bottom: 1px solid var(--line); }
.cart-header h3 { margin: 0; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }
.close-cart-btn {
    background: transparent; border: none; color: var(--ink); font-size: 1.2rem; cursor: pointer;
    width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; transition: background 0.2s;
}
.close-cart-btn:hover { background: var(--bg-alt); }
.cart-items { flex: 1; overflow-y: auto; padding: 10px 0; }
.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-track { background: transparent; }
.cart-items::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.cart-empty { text-align: center; color: var(--ink-faint); padding: 60px 20px; font-size: 0.92rem; }
.cart-item { display: flex; align-items: center; gap: 12px; padding: 14px 22px; border-bottom: 1px solid var(--line-soft); }
.cart-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 2px; flex-shrink: 0; background: var(--bg); }
.cart-item-details { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.86rem; font-weight: 600; margin: 0 0 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-meta { font-size: 0.74rem; color: var(--ink-faint); margin: 0 0 4px; letter-spacing: 0.2px; }
.cart-item-price { font-size: 0.86rem; color: var(--ink); font-weight: 700; margin: 0; }
.cart-item-qty { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.cart-item-qty button {
    width: 24px; height: 24px; border: 1px solid var(--line); background: transparent; color: var(--ink);
    border-radius: 50%; cursor: pointer; font-size: 0.95rem; line-height: 1; display: flex;
    align-items: center; justify-content: center; transition: background 0.2s;
}
.cart-item-qty button:hover { background: var(--bg-alt); }
.cart-item-qty span { min-width: 18px; text-align: center; font-size: 0.86rem; }
.remove-item-btn, .wishlist-remove-btn {
    background: transparent; border: none; cursor: pointer; font-size: 0.95rem; padding: 4px;
    opacity: 0.45; transition: opacity 0.2s; flex-shrink: 0;
}
.remove-item-btn:hover, .wishlist-remove-btn:hover { opacity: 1; }
.wishlist-item-move {
    background: var(--ink); color: var(--white); border: none; border-radius: 2px; padding: 7px 10px;
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.5px; cursor: pointer;
    font-family: inherit; flex-shrink: 0;
}
.wishlist-item-move:hover { background: #222; }
.cart-footer { padding: 20px 22px; border-top: 1px solid var(--line); background: var(--white); }
.cart-total { display: flex; justify-content: space-between; font-size: 0.92rem; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.8px; }
.cart-total span:last-child { font-size: 1.15rem; letter-spacing: 0; text-transform: none; font-weight: 700; }
.checkout-btn {
    width: 100%; padding: 15px; background: var(--whatsapp); color: white; border: none;
    border-radius: 3px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; cursor: pointer; transition: background 0.2s ease, transform 0.1s ease;
}
.checkout-btn:hover { background: #20bd59; transform: translateY(-1px); }
.checkout-btn:active { transform: translateY(0); }

/* PRODUCT MODAL */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 400; display: flex;
    align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
    background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 34px 30px;
    width: 90%; max-width: 460px; position: relative; transform: scale(0.92) translateY(16px);
    transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-close-btn {
    position: absolute; top: 16px; right: 16px; background: var(--bg); border: none; color: var(--ink);
    font-size: 0.95rem; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; display: flex;
    align-items: center; justify-content: center; transition: background 0.2s;
}
.modal-close-btn:hover { background: var(--bg-alt); }
.modal-product-img {
    width: 100%; max-height: 220px; object-fit: cover; border-radius: 3px;
    margin-bottom: 16px; display: block; background: var(--bg-alt);
}
.modal-box h3 { margin: 0 0 4px; font-size: 1.15rem; color: var(--ink); padding-right: 30px; font-weight: 400; }
.modal-price { color: var(--ink); font-size: 1.05rem; font-weight: 700; margin: 0 0 22px; }
.modal-label { font-size: 0.72rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 1px; margin: 0 0 10px; font-weight: 700; }
.size-options { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.size-btn {
    padding: 9px 16px; border: 1px solid var(--line); border-radius: 2px; background: transparent;
    color: var(--ink); cursor: pointer; transition: all 0.2s ease; font-size: 0.85rem; font-weight: 500; font-family: inherit;
}
.size-btn:hover { border-color: var(--ink); }
.size-btn.selected { border-color: var(--ink); background: var(--ink); color: var(--white); }
.color-options { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.color-option-btn {
    display: flex; align-items: center; gap: 7px; padding: 8px 14px; border: 1px solid var(--line);
    border-radius: 20px; background: transparent; color: var(--ink); cursor: pointer; font-size: 0.8rem;
    transition: all 0.2s ease; font-family: inherit;
}
.color-option-btn .color-swatch { width: 14px; height: 14px; border-radius: 50%; display: inline-block; border: 1px solid rgba(0,0,0,0.25); flex-shrink: 0; }
.color-option-btn:hover { border-color: var(--ink); }
.color-option-btn.selected { border-color: var(--ink); background: var(--ink); color: var(--white); }
.confirm-add-btn {
    width: 100%; padding: 14px; background: var(--ink); color: white; border: none; border-radius: 2px;
    font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; cursor: pointer;
    transition: background 0.2s ease; font-family: inherit;
}
.confirm-add-btn:hover { background: #222; }


/* HOME / HERO SECTION */
.hero {
    display: flex;
    align-items: stretch;
    min-height: calc(100vh - 73px);
    background: #F5F4F2;
    position: relative;
    overflow: hidden;
}
.hero-text {
    flex: 0 0 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 6vw;
    z-index: 2;
    position: relative;
}
.hero-headline {
    font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.5px;
    color: #0E0E0E;
    margin: 0 0 24px;
    text-transform: uppercase;
}
.hero-accent-line {
    width: 48px;
    height: 2px;
    background: #9A8060;
    margin-bottom: 24px;
    flex-shrink: 0;
}
.hero-sub {
    font-size: 0.97rem;
    line-height: 1.75;
    color: #4A4A47;
    margin: 0 0 36px;
    max-width: 380px;
    font-weight: 400;
}
.hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 15px 28px;
    background: #0E0E0E;
    color: #fff;
    border: 1px solid #0E0E0E;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease, transform 0.15s ease;
    font-family: 'Poppins', sans-serif;
}
.hero-btn-primary:hover { background: #222; transform: translateY(-2px); }
.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 15px 28px;
    background: transparent;
    color: #0E0E0E;
    border: 1px solid #0E0E0E;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease, transform 0.15s ease;
    font-family: 'Poppins', sans-serif;
}
.hero-btn-outline:hover { background: #0E0E0E; color: #fff; transform: translateY(-2px); }

.hero-img-wrap {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 520px;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.8s ease;
}
.hero-img-wrap:hover .hero-img { transform: scale(1.03); }

/* Scroll indicator */
.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
    pointer-events: none;
    animation: fadeInUp 1.2s ease 0.8s both;
}
.hero-scroll-hint span {
    font-size: 0.58rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #4A4A47;
    font-weight: 600;
}
.scroll-dot-wrap {
    width: 20px;
    height: 32px;
    border: 1.5px solid #4A4A47;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}
.scroll-dot {
    width: 4px;
    height: 7px;
    background: #4A4A47;
    border-radius: 3px;
    animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    60%       { transform: translateY(10px); opacity: 0.3; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateX(-50%) translateY(16px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* PRODUCTS SECTION */
.products-header { text-align: center; padding: 50px 20px 10px; }
.products-header h2 { font-size: 2.1rem; margin: 0 0 10px; font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: 0.5px; }
.products-header p { color: var(--ink-faint); margin: 0; font-size: 0.9rem; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; padding: 28px 30px; max-width: 1400px; margin: 0 auto; }
.loading-products { grid-column: 1 / -1; text-align: center; padding: 60px; color: var(--ink-faint); font-size: 1rem; }
.product-card {
    background: var(--white); border: 1px solid var(--line-soft); border-radius: 2px; overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; position: relative;
    cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,0,0,0.10); border-color: var(--line); }
.product-img-wrap { position: relative; overflow: hidden; background: var(--bg-alt); }
.product-img-wrap img { width: 100%; height: 380px; object-fit: cover; display: block; transition: transform 0.4s ease; cursor: pointer; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.wishlist-toggle-btn {
    position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,0.9); border: 1px solid var(--line); display: flex; align-items: center;
    justify-content: center; cursor: pointer; font-size: 0.95rem; transition: transform 0.15s ease, background 0.15s ease; z-index: 2;
}
.wishlist-toggle-btn:hover { transform: scale(1.08); }
.wishlist-toggle-btn.active { color: var(--danger); }
.oos-badge {
    position: absolute; top: 12px; left: 12px; background: var(--ink); color: white; font-size: 0.65rem;
    font-weight: 700; padding: 5px 11px; border-radius: 2px; text-transform: uppercase; letter-spacing: 0.5px;
}
.product-info { padding: 18px 16px; }
.product-info h3 { font-size: 0.88rem; margin: 0 0 8px; color: var(--ink); font-weight: 500; line-height: 1.3; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }
.product-price { font-size: 0.95rem; font-weight: 700; color: var(--ink); margin: 0 0 14px; }
.color-swatches { display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }
.color-dot { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--white); box-shadow: 0 0 0 1px var(--line); display: inline-block; cursor: default; flex-shrink: 0; }
.add-to-cart-btn {
    width: 100%; padding: 11px; background: var(--ink); color: white; border: none; border-radius: 2px;
    font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; cursor: pointer;
    transition: background 0.2s ease; font-family: inherit;
}
.add-to-cart-btn:hover:not(:disabled) { background: #222; }
.add-to-cart-btn:disabled { background: var(--bg-alt); color: var(--ink-faint); cursor: not-allowed; }

/* ── ADMIN CONTROLS on product cards (visible only when admin is logged in) ── */
.card-admin-bar {
    position: absolute; bottom: 0; left: 0; right: 0;
    display: flex; gap: 0;
    background: rgba(10,10,10,0.82);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 3;
}
.product-card:hover .card-admin-bar { opacity: 1; }
.card-admin-edit, .card-admin-delete {
    flex: 1; padding: 9px 6px; border: none; cursor: pointer;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
    text-transform: uppercase; transition: background 0.15s; font-family: inherit;
}
.card-admin-edit   { background: transparent; color: #C9A35A; border-right: 1px solid rgba(255,255,255,0.1); }
.card-admin-delete { background: transparent; color: #F87171; }
.card-admin-edit:hover   { background: rgba(201,163,90,0.2); }
.card-admin-delete:hover { background: rgba(248,113,113,0.18); }

/* ── SELECT MODE ── */
.btn-select-mode {
    padding: 8px 14px; border: 1px solid var(--line-soft);
    background: transparent; color: var(--ink-faint); border-radius: 8px;
    font-size: 0.78rem; font-weight: 600; cursor: pointer; font-family: inherit;
    transition: all 0.2s; white-space: nowrap; flex-shrink: 0;
}
.btn-select-mode:hover { border-color: var(--gold, #C9A35A); color: var(--gold, #C9A35A); }
.btn-select-mode.active { background: rgba(201,163,90,0.1); border-color: #C9A35A; color: #C9A35A; }

/* Checkbox overlay top-left of card image */
.card-select-overlay {
    position: absolute; top: 10px; left: 10px; z-index: 5;
    cursor: pointer; display: block;
}
.card-select-overlay input { display: none; }
.card-select-box {
    width: 22px; height: 22px; border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.35);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s; backdrop-filter: blur(4px);
}
.card-select-check:checked + .card-select-box {
    background: #C9A35A; border-color: #C9A35A;
}
.card-select-check:checked + .card-select-box::after {
    content: "✓"; color: #fff; font-size: 13px; font-weight: 800; line-height: 1;
}
/* Selected card highlight */
.product-card.selected { outline: 2.5px solid #C9A35A; outline-offset: -2px; }
.product-card.selected .product-img-wrap img { opacity: 0.85; }

/* Floating action bar */
.select-action-bar {
    position: fixed; bottom: -80px; left: 50%; transform: translateX(-50%);
    background: #111; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; padding: 12px 20px;
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
    z-index: 1000; transition: bottom 0.35s cubic-bezier(0.34,1.56,0.64,1);
    white-space: nowrap;
}
.select-action-bar.visible { bottom: 28px; }
#select-count-label { color: #aaa; font-size: 0.82rem; font-weight: 600; min-width: 80px; }
.select-bar-actions { display: flex; gap: 8px; }
.sel-btn-all {
    padding: 8px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.15);
    background: transparent; color: #ccc; font-size: 0.78rem; font-weight: 600;
    cursor: pointer; font-family: inherit; transition: all 0.15s;
}
.sel-btn-all:hover { border-color: #C9A35A; color: #C9A35A; }
.sel-btn-delete {
    padding: 8px 18px; border-radius: 8px; border: none;
    background: rgba(248,113,113,0.15); color: #F87171;
    border: 1px solid rgba(248,113,113,0.3);
    font-size: 0.78rem; font-weight: 700; cursor: pointer; font-family: inherit;
    transition: all 0.15s;
}
.sel-btn-delete:hover:not(:disabled) { background: rgba(248,113,113,0.28); }
.sel-btn-delete:disabled { opacity: 0.35; cursor: not-allowed; }
.sel-btn-cancel {
    padding: 8px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.12);
    background: transparent; color: #888; font-size: 0.78rem; font-weight: 600;
    cursor: pointer; font-family: inherit; transition: all 0.15s;
}
.sel-btn-cancel:hover { border-color: #aaa; color: #ccc; }

/* LOOKBOOK SECTION */
.lookbook-header { text-align: center; padding: 60px 20px 20px; }
.lookbook-header h2 { font-size: 2.1rem; margin: 0 0 10px; font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.lookbook-header p { color: var(--ink-faint); margin: 0 auto; font-size: 0.9rem; max-width: 520px; }
.lookbook-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 280px; gap: 6px; padding: 40px 30px 70px; max-width: 1400px; margin: 0 auto; }
.lookbook-tile { position: relative; overflow: hidden; background: var(--bg-alt); cursor: pointer; }
.lookbook-tile:nth-child(3n+1) { grid-row: span 2; }
.lookbook-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.lookbook-tile:hover img { transform: scale(1.06); }
.lookbook-caption {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent); color: white; font-size: 0.78rem;
    letter-spacing: 0.5px; text-transform: uppercase; font-weight: 600;
}

/* ABOUT SECTION */
.about-content {
    max-width: 860px; margin: 80px auto; padding: 50px 40px; text-align: center; line-height: 1.9;
    background: var(--white); border: 1px solid var(--line-soft); border-radius: 2px;
}
.about-content h2 { margin-bottom: 26px; font-size: 2.2rem; font-family: Georgia, "Times New Roman", serif; letter-spacing: 0.5px; font-weight: 400; }
.about-content p { margin-bottom: 16px; font-size: 1.02rem; color: var(--ink-soft); }

/* CONTACT SECTION */
.contact-hero {
    text-align: center;
    padding: 60px 20px 30px;
}
.contact-hero img { border-radius: 50%; margin-bottom: 16px; }
.contact-hero h2 {
    font-size: 2rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    margin: 0 0 10px;
}
.contact-hero p { color: var(--ink-faint); font-size: 0.95rem; margin: 0; }

.contact-section { display: flex; gap: 32px; justify-content: center; align-items: flex-start; flex-wrap: wrap; max-width: 1100px; margin: 0 auto 70px; padding: 0 24px; }

.contact-info { flex: 0 0 280px; display: flex; flex-direction: column; gap: 22px; padding-top: 8px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.ci-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; opacity: 0.8; }
.contact-info-item strong { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.contact-info-item p { margin: 0; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; }

/* Form card — matches the screenshot style */
.contact-form-wrap {
    flex: 1 1 400px;
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: 4px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.cf-group { margin-bottom: 18px; }
.cf-group label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--ink);
    margin-bottom: 8px;
}
.cf-group input, .cf-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: var(--bg);
    color: var(--ink);
    font-size: 0.92rem;
    outline: none;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color 0.2s ease;
    resize: vertical;
}
.cf-group input:focus, .cf-group textarea:focus { border-color: var(--ink); background: var(--white); }
.cf-group textarea { min-height: 140px; }
#cf-send-btn {
    width: 100%;
    padding: 15px;
    background: var(--ink);
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
    font-family: inherit;
    margin-top: 6px;
}
#cf-send-btn:hover { background: #222; transform: translateY(-1px); }
#cf-send-btn:disabled { background: var(--bg-alt); color: var(--ink-faint); cursor: not-allowed; transform: none; }
.cf-status { font-size: 0.82rem; margin-top: 12px; text-align: center; min-height: 18px; }
.cf-status.success { color: var(--success); }
.cf-status.error { color: var(--danger); }


/* RESPONSIVE — HERO */
@media (max-width: 900px) {
    .hero { flex-direction: column; min-height: unset; }
    .hero-text { flex: none; padding: 60px 28px 40px; text-align: center; align-items: center; }
    .hero-sub { text-align: center; max-width: 100%; }
    .hero-cta-row { justify-content: center; }
    .hero-img-wrap { width: 100%; min-height: 340px; }
    .hero-scroll-hint { bottom: 16px; }
    .contact-section { flex-direction: column; align-items: stretch; }
    header { padding: 12px 16px; }
    .navbar { gap: 14px; }
    .navbar a { font-size: 0.7rem; }
    .lookbook-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .lookbook-tile:nth-child(3n+1) { grid-row: span 1; }
    /* Bug 4: iOS parallax fix at tablet breakpoint */
    .about-bg { background-attachment: scroll; }
}
@media (max-width: 600px) {
    .navbar { display: none; }
    .mobile-menu-btn { display: flex; }
    /* M1: product grid cards — tighter on small phones */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 12px; }
    .product-img-wrap img { height: 210px; }
    /* M2: color swatches must wrap on narrow cards */
    .color-swatches { flex-wrap: wrap; gap: 5px; }
    /* M3: cart/wishlist sidebar fills the screen edge-to-edge on tiny phones */
    .cart-sidebar, .wishlist-sidebar { width: 100vw; max-width: 420px; }
    .about-content { margin: 24px 16px; padding: 24px 16px; }
    .modal-box { padding: 24px 18px; }
    .size-btn { padding: 7px 12px; font-size: 0.82rem; }
    /* M5: Hero headline clamp to prevent overflow on 360px phones */
    .hero-headline { font-size: clamp(1.9rem, 7vw, 2.6rem); }
    .announce-bar { font-size: 0.62rem; padding: 9px 40px; letter-spacing: 1px; }
    .lookbook-grid { grid-template-columns: 1fr; }
    .lookbook-tile:nth-child(3n+1) { grid-row: span 1; }
    header { padding: 12px 16px; }
    /* M4: Toast must clear the back-to-top button on mobile */
    .toast { bottom: 76px; }
}

/* =============================================
   CATEGORIES PAGE (standalone section)
   ============================================= */
.cat-page-header {
    text-align: center;
    padding: 56px 30px 32px;
    max-width: 680px;
    margin: 0 auto;
}
.cat-page-header .sec-eye {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--gold);
    margin: 0 0 8px;
}
.cat-page-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    margin: 0 0 10px;
    color: var(--ink);
}
.cat-page-header p {
    font-size: 0.9rem;
    color: var(--ink-faint);
    margin: 0;
}
.cat-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 10px 30px 70px;
    max-width: 1400px;
    margin: 0 auto;
}
.cat-page-card {
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}
.cat-page-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(201,163,90,0.06), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.cat-page-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,0,0,0.12); border-color: var(--line); }
.cat-page-card:hover::after { opacity: 1; }
.cat-page-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-alt);
    position: relative;
}
.cat-page-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.cat-page-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(14,14,14,0.2) 100%);
}
.cat-page-card:hover .cat-page-card-img img { transform: scale(1.08); }
.cat-page-card-info {
    padding: 12px 14px 14px;
    position: relative;
    z-index: 1;
}
.cat-page-card-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}
.cat-page-card-count {
    font-size: 0.7rem;
    color: var(--ink-faint);
}
@media (max-width: 768px) {
    .cat-page-grid { padding: 10px 16px 50px; gap: 14px; }
    .cat-page-header { padding: 36px 20px 20px; }
}
@media (max-width: 480px) {
    .cat-page-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* All Products banner — separate wide card above the category grid */
#cat-page-all {
    padding: 0 30px 12px;
    max-width: 1400px;
    margin: 0 auto;
}
#cat-page-all::before {
    content: 'Shop Everything';
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 10px;
}
.cat-page-card--all {
    display: flex;
    align-items: stretch;
    height: 140px;
    width: 100%;
}
.cat-page-card--all .cat-page-card-img {
    width: 220px;
    flex-shrink: 0;
    aspect-ratio: unset;
    height: 100%;
}
.cat-page-card--all .cat-page-card-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 24px;
    flex: 1;
}
.cat-page-card--all .cat-page-card-name {
    font-size: 1rem;
    letter-spacing: 1.2px;
    white-space: normal;
}
.cat-page-card--all .cat-page-card-count {
    font-size: 0.78rem;
    margin-top: 4px;
}

/* Separator between All Products and custom grid */
.cat-page-grid {
    position: relative;
}
.cat-page-grid:not(:empty)::before {
    content: 'Shop By Category';
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 14px;
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    #cat-page-all { padding: 0 16px 10px; }
    .cat-page-card--all { height: 110px; }
    .cat-page-card--all .cat-page-card-img { width: 140px; }
}
@media (max-width: 480px) {
    .cat-page-card--all { height: 90px; }
    .cat-page-card--all .cat-page-card-img { width: 110px; }
}


/* =============================================
   SHOP HEADER (products section)
   ============================================= */
.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 30px 16px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 16px;
    flex-wrap: wrap;
}
.shop-header-left { display: flex; align-items: baseline; gap: 12px; }
.shop-header-left h2 {
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin: 0;
    color: var(--ink);
}
.shop-count {
    font-size: 0.75rem;
    color: var(--ink-faint);
    font-weight: 500;
    letter-spacing: 0.3px;
}
.shop-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
}
.shop-search-input {
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    color: var(--ink);
    font-size: 0.84rem;
    font-family: inherit;
    outline: none;
    width: 220px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.shop-search-input:focus {
    border-color: var(--ink);
    box-shadow: 0 0 0 3px rgba(14,14,14,0.06);
}
.btn-back-cats {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-back-cats:hover { background: var(--bg); border-color: var(--ink); }
@media (max-width: 600px) {
    .shop-header { padding: 20px 16px 12px; flex-direction: column; align-items: flex-start; }
    /* M6: toolbar wraps as a column, search takes full width, back-to-cats button below */
    .shop-toolbar { width: 100%; flex-direction: column; align-items: flex-start; gap: 8px; }
    .shop-search-input { width: 100%; }
    .btn-back-cats { align-self: flex-start; }
}


/* =============================================
   PRODUCT GRID UTILITIES
   ============================================= */
.no-results { text-align: center; padding: 70px 20px; color: var(--ink-faint); }
.no-results p { font-size: 1rem; line-height: 1.8; }
.products-grid { transition: opacity 0.3s ease, transform 0.3s ease; }
.tag-badges { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 9px; }
.tag-badge { font-size: 0.6rem; font-weight: 700; padding: 3px 8px; border-radius: 2px; text-transform: uppercase; letter-spacing: 0.5px; display: inline-block; }
.tag-badge.new-arrival { background: var(--bg-alt); color: var(--ink); border: 1px solid var(--line); }
.tag-badge.best-seller { background: var(--gold-soft); color: #8a6c2e; border: 1px solid rgba(201,163,90,0.4); }
.tag-badge.limited { background: var(--ink); color: var(--white); border: 1px solid var(--ink); }
.tag-badge.on-sale { background: rgba(192,57,43,0.1); color: var(--danger); border: 1px solid rgba(192,57,43,0.25); }
.product-price-wrap { display: flex; align-items: center; gap: 8px; margin: 0 0 14px; }
.original-price { text-decoration: line-through; color: var(--ink-faint); font-size: 0.82rem; font-weight: 400; }
.sale-price { color: var(--danger); }
.load-more-wrap { text-align: center; padding: 30px 0 60px; }
.load-more-btn {
    padding: 14px 46px; background: transparent; border: 1px solid var(--ink); border-radius: 2px;
    color: var(--ink); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; transition: all 0.25s ease; font-family: inherit;
}
.load-more-btn:hover { background: var(--ink); color: white; transform: translateY(-2px); }

/* =============================================
   TOAST NOTIFICATION
   ============================================= */
.toast {
    position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
    background: var(--ink); color: var(--white); padding: 12px 24px; border-radius: 24px;
    font-size: 0.82rem; font-weight: 600; letter-spacing: 0.3px;
    opacity: 0; pointer-events: none; z-index: 9999;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap; box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.error { background: var(--danger); }

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top-btn {
    position: fixed; bottom: 28px; right: 24px; width: 46px; height: 46px;
    background: var(--ink); color: var(--white); border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    opacity: 0; pointer-events: none; transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
    z-index: 400; box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}
.back-to-top-btn.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top-btn:hover { background: #333; }

/* =============================================
   CONTACT SOCIAL LINKS
   ============================================= */
.contact-social { margin-top: 16px; }
.csoc-label {
    font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    color: var(--ink-faint); margin: 0 0 12px;
}
.csoc-links { display: flex; flex-wrap: wrap; gap: 10px; }
.csoc-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 14px; border-radius: 8px; font-size: 0.78rem; font-weight: 600;
    text-decoration: none; transition: all 0.2s ease; border: none; cursor: pointer;
    color: var(--white);
}
.csoc-btn.wa  { background: #25D366; }
.csoc-btn.ig  { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.csoc-btn.tt  { background: #010101; }
.csoc-btn.sc  { background: #FFFC00; color: #000; }
.csoc-btn:hover { opacity: 0.88; transform: translateY(-2px); }

/* =============================================
   MOBILE RESPONSIVE PATCHES
   ============================================= */
@media (max-width: 768px) {
    .category-section { padding: 0 16px 24px; }
    .category-section-header { padding: 24px 0 16px; }
    .category-section-header h3 { font-size: 1.3rem; }
}
@media (max-width: 600px) {
    .mobile-menu-btn { display: flex; }
    .back-to-top-btn { bottom: 20px; right: 16px; width: 42px; height: 42px; }
}

/* =============================================
   PRODUCT DETAIL PAGE
   ============================================= */
.pd-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px 80px;
}

/* Breadcrumb */
.pd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 24px 0 32px;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--ink-faint);
}
.pd-bc-link {
    text-decoration: none;
    color: var(--ink-faint);
    transition: color 0.2s;
    font-weight: 500;
}
.pd-bc-link:hover { color: var(--ink); }
.pd-bc-sep { color: var(--line); }
.pd-bc-current { color: var(--ink); font-weight: 600; }

/* Two-column layout */
.pd-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Image Panel */
.pd-image-panel {
    position: sticky;
    top: 90px;
}
.pd-main-img-wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-alt);
    aspect-ratio: 4/5;
}
.pd-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.pd-main-img-wrap:hover .pd-main-img { transform: scale(1.04); }

.pd-tag-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}
.pd-wishlist-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform 0.15s ease, background 0.15s;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.pd-wishlist-btn:hover { transform: scale(1.1); background: white; }
.pd-wishlist-btn.active { color: var(--danger); }

/* Info Panel */
.pd-info-panel { padding-top: 8px; }

.pd-category-pill {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--gold);
    background: var(--gold-soft);
    border: 1px solid rgba(201,163,90,0.3);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.pd-product-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--ink);
    margin: 0 0 16px;
    letter-spacing: -0.2px;
}

.pd-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.pd-price {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.5px;
}
.pd-price-sale {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--danger);
    letter-spacing: -0.5px;
}
.pd-price-original {
    font-size: 1rem;
    font-weight: 400;
    color: var(--ink-faint);
    text-decoration: line-through;
}
.pd-sale-badge {
    background: rgba(192,57,43,0.1);
    color: var(--danger);
    border: 1px solid rgba(192,57,43,0.25);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pd-description {
    font-size: 0.94rem;
    line-height: 1.8;
    color: var(--ink-soft);
    margin: 0 0 6px;
}

.pd-divider {
    height: 1px;
    background: var(--line-soft);
    margin: 24px 0;
}

/* Option groups */
.pd-option-group { margin-bottom: 24px; }

.pd-option-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.pd-option-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--ink);
}
.pd-selected-value {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--ink-soft);
}
.pd-size-guide-btn {
    background: none;
    border: none;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ink-faint);
    cursor: pointer;
    text-decoration: underline;
    font-family: inherit;
    padding: 0;
    transition: color 0.2s;
}
.pd-size-guide-btn:hover { color: var(--ink); }

/* Size buttons */
.pd-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pd-size-btn {
    padding: 10px 18px;
    border: 1.5px solid var(--line);
    border-radius: 3px;
    background: transparent;
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    min-width: 52px;
    text-align: center;
}
.pd-size-btn:hover { border-color: var(--ink); background: var(--bg-alt); }
.pd-size-btn.selected { border-color: var(--ink); background: var(--ink); color: white; }

/* Color swatches */
.pd-color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.pd-color-swatch-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1.5px solid var(--line);
    border-radius: 24px;
    background: transparent;
    color: var(--ink);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}
.pd-color-swatch-btn:hover { border-color: var(--ink); }
.pd-color-swatch-btn.selected { border-color: var(--ink); background: var(--ink); color: white; }
.pd-color-swatch-btn.selected .pd-swatch-dot { border-color: rgba(255,255,255,0.4); }
.pd-swatch-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,0.2);
    flex-shrink: 0;
}

/* Actions */
.pd-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: center;
}
.pd-qty-row {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--line);
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
}
.pd-qty-btn {
    background: transparent;
    border: none;
    width: 42px;
    height: 50px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--ink);
    transition: background 0.15s;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pd-qty-btn:hover { background: var(--bg-alt); }
.pd-qty-value {
    min-width: 42px;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 600;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    line-height: 50px;
}
.pd-add-cart-btn {
    flex: 1;
    height: 50px;
    background: var(--ink);
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
    font-family: inherit;
}
.pd-add-cart-btn:hover { background: #222; transform: translateY(-1px); }
.pd-add-cart-btn:disabled { background: var(--bg-alt); color: var(--ink-faint); cursor: not-allowed; transform: none; }

.pd-whatsapp-btn {
    width: 100%;
    height: 50px;
    background: var(--whatsapp);
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s ease, transform 0.1s ease;
    font-family: inherit;
    margin-bottom: 24px;
}
.pd-whatsapp-btn:hover { background: #20bd59; transform: translateY(-1px); }

/* Meta Info */
.pd-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    background: var(--bg-alt);
    border-radius: 8px;
    border: 1px solid var(--line-soft);
}
.pd-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--ink-soft);
}
.pd-meta-icon { font-size: 1rem; flex-shrink: 0; }

/* Related Products */
.pd-related {
    margin-top: 72px;
    padding-top: 40px;
    border-top: 1px solid var(--line-soft);
}
.pd-related-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--ink);
    margin: 0 0 28px;
    letter-spacing: 0.3px;
}
.pd-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
/* Related cards use the same .product-card styles — just a lighter variant */
.pd-related-grid .product-card { cursor: pointer; }
.pd-related-grid .product-img-wrap img { height: 280px; }

/* =============================================
   SIZE GUIDE MODAL
   ============================================= */
.size-guide-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}
.size-guide-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.size-guide-box {
    background: var(--white);
    border-radius: 8px;
    padding: 36px 32px;
    width: 100%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.94) translateY(16px);
    transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.size-guide-overlay.open .size-guide-box { transform: scale(1) translateY(0); }
.size-guide-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-alt);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.size-guide-close:hover { background: var(--line); }
.size-guide-box h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 0 10px;
    color: var(--ink);
}
.sg-note {
    font-size: 0.84rem;
    color: var(--ink-soft);
    margin: 0 0 20px;
    line-height: 1.6;
}
.sg-table-wrap { overflow-x: auto; }
.sg-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.84rem;
}
.sg-table th, .sg-table td {
    padding: 11px 14px;
    text-align: center;
    border-bottom: 1px solid var(--line-soft);
}
.sg-table th {
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--ink-faint);
    background: var(--bg-alt);
}
.sg-table td:first-child { font-weight: 700; color: var(--ink); }
.sg-table tr:last-child td { border-bottom: none; }
.sg-table tr:hover td { background: var(--bg); }
.sg-tip {
    font-size: 0.82rem;
    color: var(--ink-soft);
    margin: 16px 0 0;
    line-height: 1.6;
    padding: 12px 16px;
    background: var(--gold-soft);
    border-radius: 6px;
    border-left: 3px solid var(--gold);
}

/* =============================================
   PRODUCT DETAIL — RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
    .pd-main { grid-template-columns: 1fr; gap: 32px; }
    .pd-image-panel { position: static; }
    .pd-related-grid { grid-template-columns: repeat(2, 1fr); }
    .pd-wrap { padding: 0 20px 60px; }
}
@media (max-width: 600px) {
    .pd-wrap { padding: 0 16px 50px; }
    .pd-product-name { font-size: 1.5rem; }
    .pd-price { font-size: 1.3rem; }
    .pd-related-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .pd-related-grid .product-img-wrap img { height: 180px; }
    .pd-actions { flex-direction: column; }
    .pd-qty-row { width: 100%; justify-content: center; }
    .pd-add-cart-btn { width: 100%; }
    .pd-breadcrumb { padding: 16px 0 20px; font-size: 0.68rem; }
}

/* =============================================
   ABOUT SECTION — Background Image
   ============================================= */
.about-bg {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.50) 100%);
    z-index: 0;
}

.about-bg .about-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
    color: #fff;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.about-bg .about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: #fff;
    letter-spacing: 0.02em;
}

.about-bg .about-content p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.88);
    margin-bottom: 18px;
}

.about-bg .about-content strong {
    color: var(--gold);
    font-weight: 600;
}

@media (max-width: 600px) {
    .about-bg .about-content { padding: 80px 24px; }
    .about-bg .about-content h2 { font-size: 2rem; }
    .about-bg { background-attachment: scroll; }
}

/* =============================================
   SITE CREDIT FOOTER
   ============================================= */
.site-credit {
    width: 100%;
    text-align: center;
    padding: 18px 20px;
    background: var(--bg-alt);
    border-top: 1px solid var(--line-soft);
    font-size: 0.78rem;
    color: var(--ink-faint);
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    z-index: 10;
}
.credit-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: opacity 0.2s;
}
.credit-link:hover { opacity: 0.75; text-decoration: underline; }

/* Desktop navbar credit badge */
.nav-dev-credit {
    font-size: 0.65rem;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: var(--ink-faint);
    text-decoration: none;
    letter-spacing: 0.06em;
    padding: 3px 7px;
    border: 1px solid var(--line);
    border-radius: 4px;
    opacity: 0.55;
    transition: opacity 0.2s, border-color 0.2s, color 0.2s;
    white-space: nowrap;
    margin-right: 6px;
}
.nav-dev-credit:hover { opacity: 1; color: var(--gold); border-color: var(--gold); }
@media (max-width: 900px) { .nav-dev-credit { display: none; } }

/* Mobile nav drawer credit */
.mobile-nav-credit {
    padding: 14px 20px;
    text-align: center;
    font-size: 0.72rem;
    color: var(--ink-faint);
    border-top: 1px solid var(--line-soft);
    margin-top: auto;
}
.mn-credit-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.03em;
}
.mn-credit-link:hover { text-decoration: underline; }



/* =============================================
   CUSTOMER REVIEWS SECTION
   ============================================= */
.reviews-section {
    display: none; /* shown by JS only on home page */
    padding: 80px 0 60px;
    background: var(--bg);
}
.reviews-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 24px;
}
.reviews-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin: 4px 0 16px;
    color: var(--ink);
}
.reviews-stars-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}
.rev-star {
    color: var(--gold);
    font-size: 1.3rem;
}
.rev-summary {
    color: var(--ink-soft);
    font-size: 0.9rem;
    margin-left: 8px;
}

/* Reviews grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 24px;
}

/* Review card */
.review-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    position: relative;
}
.review-card:hover {
    box-shadow: 0 6px 28px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.review-card::before {
    content: '\201C';
    position: absolute;
    top: 14px;
    right: 20px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    color: var(--gold);
    opacity: 0.25;
    line-height: 1;
}
.review-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.review-meta { flex: 1; }
.review-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink);
}
.review-location {
    font-size: 0.78rem;
    color: var(--ink-faint);
    margin-top: 2px;
}
.review-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
    white-space: nowrap;
}
.review-text {
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}
.review-item-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-soft);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(201,163,90,0.3);
    align-self: flex-start;
}
.review-date {
    font-size: 0.72rem;
    color: var(--ink-faint);
    margin-top: 4px;
}

/* Write a Review button */
.write-review-wrap {
    text-align: center;
    margin-bottom: 40px;
}
.write-review-btn {
    background: var(--ink);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 14px 36px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.write-review-btn:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-2px);
}

/* Review submission form */
.review-form-wrap {
    max-width: 680px;
    margin: 0 auto 60px;
    padding: 0 24px;
}
.review-form {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.review-form h3 {
    margin: 0 0 6px;
    font-size: 1.4rem;
    color: var(--ink);
}
.review-form-sub {
    font-size: 0.83rem;
    color: var(--ink-soft);
    margin: 0 0 28px;
}
.rf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.rf-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}
.rf-group label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.rf-req { color: var(--gold); }
.rf-group input,
.rf-group textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    background: var(--bg);
    color: var(--ink);
    transition: border-color 0.2s;
    resize: vertical;
}
.rf-group input:focus,
.rf-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.rf-char-count {
    font-size: 0.73rem;
    color: var(--ink-faint);
    text-align: right;
}

/* Star rating picker */
.rf-star-row {
    display: flex;
    gap: 6px;
    cursor: pointer;
}
.rf-star {
    font-size: 1.8rem;
    color: var(--line);
    transition: color 0.15s, transform 0.12s;
    cursor: pointer;
    user-select: none;
}
.rf-star.selected,
.rf-star:hover { color: var(--gold); }
.rf-star:hover { transform: scale(1.15); }

.rf-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
.rf-submit-btn {
    flex: 1;
    padding: 13px;
    background: var(--ink);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.rf-submit-btn:hover { background: var(--gold); color: var(--ink); transform: translateY(-1px); }
.rf-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.rf-cancel-btn {
    padding: 13px 22px;
    background: transparent;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-soft);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
.rf-cancel-btn:hover { border-color: var(--ink); color: var(--ink); }
.rf-status {
    margin: 12px 0 0;
    font-size: 0.85rem;
    text-align: center;
    min-height: 20px;
}
.rf-status.success { color: var(--success); }
.rf-status.error   { color: var(--danger); }

@media (max-width: 600px) {
    .rf-row { grid-template-columns: 1fr; }
    .review-form { padding: 24px 18px; }
    .reviews-grid { grid-template-columns: 1fr; }
}

/* =============================================
   SITE FOOTER
   ============================================= */
.site-footer {
    background: var(--ink);
    color: rgba(255,255,255,0.75);
    padding: 64px 0 0;
    margin-top: 0;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
    gap: 48px 32px;
}

/* Brand column */
/* .footer-brand-col — layout handled by grid parent, no extra rules needed */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.footer-logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.12);
}
.footer-brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--white);
}
.footer-tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--gold);
    margin: 0 0 10px;
}
.footer-desc {
    font-size: 0.82rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin: 0 0 22px;
}
.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.footer-soc-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.footer-soc-btn:hover {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Footer columns */
/* .footer-col — layout handled by grid parent, no extra rules needed */
.footer-col-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-link {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}
.footer-link:hover { color: var(--gold); padding-left: 4px; }

/* Contact column */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-ci-icon {
    font-size: 1rem;
    opacity: 0.7;
    flex-shrink: 0;
    margin-top: 1px;
}
.footer-ci-text {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s;
}
.footer-ci-text:hover { color: var(--gold); }
.footer-wa-link { color: var(--whatsapp) !important; }
.footer-wa-link:hover { color: #1db954 !important; }
.footer-checkout-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    padding: 10px 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 52px;
    padding: 20px 32px;
}
.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-copyright {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    margin: 0;
}
.footer-bottom-sep {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.06em;
}
.footer-credit-line {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    margin: 0;
}
.footer-dev-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
}
.footer-dev-link:hover { text-decoration: underline; }

@media (max-width: 1000px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
    .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    .footer-inner { grid-template-columns: 1fr; padding: 0 20px; }
    .footer-brand-col { grid-column: auto; }
    .footer-bottom { padding: 20px; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
}
