/* =====================================================================
   VARIETY BOOTS - Storefront Stylesheet
   Black & white palette · lacedup.pk-inspired layout & logo placement
   ===================================================================== */

:root {
    --gold: #111111;
    --gold-light: #f5f5f5;
    --gold-deep: #000000;
    --gold-dark: #222222;
    --black: #000000;
    --charcoal: #111111;
    --charcoal-2: #1a1a1a;
    --charcoal-3: #242424;
    --line: rgba(0, 0, 0, 0.1);
    --cream: #ffffff;
    --muted: #777777;
    --muted-2: #8a8a8a;
    --text-dark: #111111;
    --danger: #c62828;
    --success: #2e7d32;
    --radius: 0;
    --radius-sm: 0;
    --shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 8px 24px rgba(0, 0, 0, 0.18);
    --gold-gradient: linear-gradient(135deg, #2a2a2a 0%, #000000 100%);
    --font-head: "Cormorant Garamond", "Times New Roman", Georgia, serif;
    --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
    --nav-h: 88px;
    --container: 1280px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --accent-sale: #c62828;
}

/* Bootstrap coexistence — keep brand UI dominant */
.container { max-width: var(--container) !important; }
.btn { border-radius: 0; }
.form-control, .form-select, input:not([type=checkbox]):not([type=radio]), select, textarea {
    border-radius: var(--radius-sm);
}

/* ------------------------------- Reset ------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; color: var(--text-dark); }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: #000; color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: #000; }

/* ----------------------------- Layout ------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.text-gold { color: var(--black) !important; }
.bg-dark { background: var(--black); color: #fff; }
.bg-charcoal { background: var(--charcoal); color: #fff; }

/* Section heading */
.section-head { text-align: center; margin-bottom: 44px; }
.section-head .eyebrow {
    display: inline-block; font-family: var(--font-body); font-size: .72rem; letter-spacing: 3.5px;
    text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); letter-spacing: .5px; font-weight: 600; }
.section-head p { color: var(--muted-2); max-width: 560px; margin: 8px auto 0; }
.section-head .divider { width: 48px; height: 2px; margin: 16px auto 0; background: #000; border-radius: 0; }
.bg-dark .section-head h2, .bg-charcoal .section-head h2 { color: #fff; }
.bg-dark .section-head p, .bg-charcoal .section-head p { color: #aaa; }
.bg-dark .section-head .eyebrow, .bg-charcoal .section-head .eyebrow { color: #999; }
.bg-dark .section-head .divider, .bg-charcoal .section-head .divider { background: #fff; }

/* ------------------------------ Buttons ----------------------------- */
.btn {
    display: inline-flex !important; align-items: center; justify-content: center; gap: 9px;
    padding: 13px 28px; border: 1px solid transparent; border-radius: 0 !important;
    font-weight: 600; font-size: .88rem; letter-spacing: .8px; text-transform: uppercase;
    cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
    text-align: center; line-height: 1.1; text-decoration: none !important;
    --bs-btn-bg: transparent; --bs-btn-border-color: transparent;
}
.btn:active { transform: scale(.98); }
.btn-gold { background: #000; color: #fff; box-shadow: none; }
.btn-gold:hover { transform: translateY(-2px); background: #222; color: #fff; box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; border-color: #000; color: #000; }
.btn-outline:hover { background: #000; color: #fff; transform: translateY(-2px); }
.bg-dark .btn-outline, .bg-charcoal .btn-outline { border-color: #fff; color: #fff; }
.bg-dark .btn-outline:hover, .bg-charcoal .btn-outline:hover { background: #fff; color: #000; }
.btn-dark { background: #000; color: #fff; border-color: #000; }
.btn-dark:hover { background: #222; transform: translateY(-2px); }
.btn-light { background: #fff; color: #111; border-color: #ddd; }
.btn-light:hover { border-color: #000; color: #000; }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 34px; font-size: .92rem; }
.btn-sm { padding: 8px 16px; font-size: .78rem; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* ------------------------- Announcement bar ------------------------- */
.topbar {
    background: #000; color: #fff; font-size: .75rem; letter-spacing: .6px;
    border-bottom: none; overflow: hidden;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 34px; gap: 14px; }
.topbar .announce {
    overflow: hidden; white-space: nowrap; flex: 1; min-width: 0;
    mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}
.topbar .announce-track {
    display: inline-flex; align-items: center; gap: 0;
    width: max-content;
    animation: announceMarquee 28s linear infinite;
    will-change: transform;
}
.topbar .announce-item {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0 48px; color: #fff; white-space: nowrap;
}
.topbar .announce-item i { color: #fff; font-size: .85em; }
.topbar .tb-links { display: flex; gap: 18px; white-space: nowrap; flex-shrink: 0; }
.topbar .tb-links a:hover { color: #ccc; }
@keyframes announceMarquee {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
@media (max-width: 992px){
    .topbar .container { padding-left: 0; padding-right: 0; }
    .topbar .tb-links { display: none; }
    .topbar .announce {
        font-size: .68rem; letter-spacing: .3px;
        mask-image: none; -webkit-mask-image: none;
    }
    .topbar .announce-track { animation-duration: 22s; }
    .topbar .announce-item { padding: 0 36px; }
}
@media (prefers-reduced-motion: reduce){
    .topbar .announce-track { animation: none; transform: none; }
    .nav-sale, .mobile-menu a.nav-sale { animation: none; opacity: 1; }
}

/* ------------------------------ Header ------------------------------ */
/* lacedup-style: white bar, logo left, menu center, icons right */
.site-header {
    position: sticky; top: 0; z-index: 900;
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.nav {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: var(--nav-h);
}
.nav-left {
    display: none;
    align-items: center;
    gap: 0;
    z-index: 2;
}
.nav .brand {
    display: flex; align-items: center; justify-content: flex-start;
    flex-shrink: 0; z-index: 2;
}
.nav .brand img {
    height: 70px; width: auto; max-width: 200px;
    object-fit: contain; background: transparent;
}
.nav .brand .brand-txt { display: none; }

.nav-menu {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 2px 0; margin: 0; padding: 0;
    flex: 1;
}
.nav-menu > li > a {
    color: #111; font-weight: 500; font-size: .82rem; letter-spacing: .4px;
    padding: 10px 11px; border-radius: 0; text-transform: capitalize;
    position: relative; display: inline-flex; align-items: center; gap: 5px;
    white-space: nowrap;
}
.nav-menu > li > a::after {
    content:""; position:absolute; left:11px; right:11px; bottom:4px; height:1px;
    background:#000; transform:scaleX(0); transform-origin:left; transition:transform .3s var(--ease);
}
.nav-menu > li > a:hover { color: #000; }
.nav-menu > li > a:hover::after { transform: scaleX(1); }
.nav-menu .has-dropdown { position: relative; }

/* Sale — text-only blink (no border / fill flash) */
.nav-sale {
    display: inline-flex; align-items: center; gap: 4px;
    font-weight: 800 !important; letter-spacing: .6px;
    padding: 8px 11px !important; border-radius: 0;
    text-transform: uppercase; font-size: .82rem !important;
    color: #c62828 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    animation: saleTextBlink 1.2s ease-in-out infinite;
}
.nav-menu > li > a.nav-sale::after { display: none !important; }
@keyframes saleTextBlink {
    0%, 100% { color: #c62828 !important; opacity: 1; }
    50% { color: #ff1744 !important; opacity: .35; }
}
.mobile-menu a.nav-sale {
    display: flex; justify-content: flex-start; margin: 0;
    text-align: left; padding-left: 22px;
    animation: saleTextBlink 1.2s ease-in-out infinite;
}
.dropdown {
    position: absolute; top: calc(100% + 4px); left: 0; min-width: 200px; background: #fff;
    border: 1px solid #eee; border-radius: 0; padding: 8px; box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .25s var(--ease);
    z-index: 20;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
    display: flex; align-items:center; gap: 10px; color: #222; padding: 10px 12px;
    border-radius: 0; font-size: .84rem;
}
.dropdown a:hover { background: #f5f5f5; color: #000; }

.nav-actions { display: flex; align-items: center; gap: 2px; margin-left: 0; z-index: 2; position: relative; }
.nav-icon {
    position: relative; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
    color: #111; border-radius: 0; font-size: 1.05rem; transition: all .25s var(--ease); background: transparent;
    border: 1px solid transparent;
}
.nav-icon:hover { color: #000; background: #f5f5f5; }
.nav-icon .badge-count {
    position: absolute; top: 0; right: -2px; background: #000; color: #fff; font-size: .6rem;
    font-weight: 700; min-width: 16px; height: 16px; border-radius: 50%;
    align-items: center; justify-content: center; padding: 0 3px; line-height: 1;
}
.nav-toggle {
    display: none; background: none; border: none; color: #111; font-size: 1.35rem;
    width: 40px; height: 40px; align-items: center; justify-content: center; padding: 0;
}

/* Desktop: search sits with right icons */
@media (min-width: 993px){
    .nav-left {
        display: flex;
        order: 3;
        margin-left: 0;
    }
    .nav .brand { order: 1; }
    .nav-menu { order: 2; }
    .nav-actions { order: 4; }
    .nav-toggle { display: none !important; }
    .nav-search-btn { display: inline-flex; }
}

/* Search overlay */
.search-pop {
    position: absolute; top: 100%; right: 0; width: min(420px, 92vw); background: #fff;
    border: 1px solid #eee; border-radius: 0; padding: 14px; box-shadow: var(--shadow); display: none; z-index: 950;
}
.search-pop.open { display: block; animation: fadeInDown .25s var(--ease); }
.search-pop form { display: flex; gap: 8px; }
.search-pop input { flex: 1; }
.search-results { margin-top: 10px; max-height: 320px; overflow: auto; }
.search-results a { display: flex; gap: 10px; align-items: center; padding: 8px; border-radius: 0; color: #111; }
.search-results a:hover { background: #f5f5f5; }
.search-results img { width: 46px; height: 46px; object-fit: cover; border-radius: 0; background: #f0f0f0; }

/* ---------------------------- Mobile menu --------------------------- */
.mobile-menu {
    position: fixed; inset: 0 0 0 auto; width: min(340px, 88vw); background: #fff;
    border-left: 1px solid #eee; transform: translateX(100%); transition: transform .35s var(--ease);
    z-index: 1000; padding: 24px; overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .mm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.mobile-menu .mm-head img { height: 56px; width: auto; background: transparent; }
.mobile-menu a {
    color: #111; display: block; padding: 14px 6px; border-bottom: 1px solid #f0f0f0;
    font-weight: 500; font-size: .95rem; letter-spacing: .3px;
}
.mobile-menu a:hover { color: #000; padding-left: 10px; }
.mm-close { background: none; border: none; color: #111; font-size: 1.6rem; line-height: 1; }
.overlay-mask { position: fixed; inset: 0; background: rgba(0,0,0,.45); opacity: 0; visibility: hidden; transition: .3s; z-index: 999; }
.overlay-mask.open { opacity: 1; visibility: visible; }

/* ------------------------------ Hero -------------------------------- */
.hero { position: relative; background: #000; }
.hero-slider {
    position: relative; overflow: hidden;
    touch-action: pan-y;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}
.hero-slider:active { cursor: grabbing; }
.hero-slide { position: relative; display: none; min-height: clamp(420px, 56vw, 620px); }
.hero-slide.active { display: block; animation: heroFade .8s var(--ease); }
.hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-slide .hero-inner {
    position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center;
    height: 100%; min-height: inherit; max-width: 680px; padding: 48px 0;
}
.hero-slide .hero-brand {
    font-family: var(--font-body); font-size: clamp(.78rem, 1.6vw, .9rem); letter-spacing: 4px;
    color: #fff; text-transform: uppercase; margin-bottom: 14px; font-weight: 600;
}
.hero-slide .hero-brand span { display: block; font-size: .72em; letter-spacing: 3px; color: rgba(255,255,255,.7); margin-top: 4px; }
.hero-slide h1 { color: #fff; font-size: clamp(2.2rem, 5.4vw, 3.8rem); margin-bottom: 16px; font-weight: 600; letter-spacing: .5px; }
.hero-slide p { color: rgba(255,255,255,.78); font-size: clamp(.95rem, 1.8vw, 1.12rem); max-width: 480px; margin-bottom: 26px; }
.hero-slide .btn-gold { background: #fff; color: #000; }
.hero-slide .btn-gold:hover { background: #f0f0f0; color: #000; }
.hero-slide .btn-outline { border-color: #fff; color: #fff; }
.hero-slide .btn-outline:hover { background: #fff; color: #000; }
.hero-slide::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 48%, rgba(0,0,0,.15) 100%);
    z-index: 1;
}
.hero-nav { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 5; }
.hero-dot { width: 10px; height: 10px; border-radius: 0; border: 1px solid #fff; background: transparent; padding: 0; transition: .3s; }
.hero-dot.active { background: #fff; width: 28px; }
.hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 44px; height: 44px;
    border-radius: 0; background: rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.35); color: #fff;
    font-size: 1rem; display: flex; align-items:center; justify-content:center; transition: .3s;
}
.hero-arrow:hover { background: #fff; color: #000; }
.hero-arrow.prev { left: 18px; } .hero-arrow.next { right: 18px; }
@media (max-width: 640px){ .hero-arrow { display: none; } }

/* --------------------------- Feature strip -------------------------- */
.feature-strip { background: #fafafa; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.feature-strip .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.feature-item { display: flex; align-items: center; gap: 14px; padding: 22px 14px; color: #111; }
.feature-item i { font-size: 1.45rem; color: #000; }
.feature-item b { display: block; font-size: .92rem; font-weight: 700; }
.feature-item span { color: var(--muted); font-size: .76rem; }
@media (max-width: 860px){ .feature-strip .grid { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 480px){
    .feature-strip .grid { grid-template-columns: 1fr; }
    .feature-item { padding: 14px 8px; }
}

/* --------------------------- Product grid --------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px){ .product-grid { grid-template-columns: repeat(3,1fr);} }
@media (max-width: 760px){ .product-grid, .product-grid.cols-3 { grid-template-columns: repeat(2,1fr); gap: 14px;} }
@media (max-width: 420px){ .product-grid { grid-template-columns: 1fr; } }

.product-card {
    background: #fff; border: 1px solid #eee; border-radius: 0; overflow: hidden; position: relative;
    display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #ccc; }
.product-card .pc-media { position: relative; aspect-ratio: 1/1; background: #f5f5f5; overflow: hidden; }
.product-card .pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), opacity .4s; }
.product-card .pc-media img.pc-alt { position: absolute; inset: 0; opacity: 0; }
.product-card:hover .pc-media img.pc-main { opacity: 0; }
.product-card:hover .pc-media img.pc-alt { opacity: 1; transform: scale(1.05); }
.pc-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 3; }
.badge-tag { font-size: .64rem; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; padding: 5px 10px; border-radius: 0; color: #fff; }
.badge-sale { background: var(--accent-sale); color: #fff; }
.badge-new { background: #000; color: #fff; }
.badge-hot { background: #fff; color: #000; border: 1px solid #000; }
.badge-out { background: #555; color: #fff; }

.pc-actions { position: absolute; top: 12px; right: 12px; display: flex; flex-direction: column; gap: 8px; z-index: 3; }
.pc-actions button, .pc-actions a {
    width: 38px; height: 38px; border-radius: 0; background: rgba(255,255,255,.95); color: #111; border: 1px solid #eee;
    display: flex; align-items: center; justify-content: center; font-size: .9rem; transform: translateX(16px); opacity: 0;
    transition: all .3s var(--ease); box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.product-card:hover .pc-actions button, .product-card:hover .pc-actions a { transform: translateX(0); opacity: 1; }
.pc-actions button:nth-child(2){ transition-delay: .05s; }
.pc-actions button:nth-child(3){ transition-delay: .1s; }
.pc-actions button:hover, .pc-actions a:hover { background: #000; color: #fff; border-color: #000; }
.pc-actions .active { background: #000; color: #fff; border-color: #000; }

.pc-quick { position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 3; transform: translateY(120%); transition: transform .35s var(--ease); }
.product-card:hover .pc-quick { transform: translateY(0); }
.pc-quick .btn { width: 100%; padding: 11px; }

.pc-body { padding: 14px 14px 16px; display: flex; flex-direction: column; flex: 1; }
.pc-meta-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 2px; }
.pc-brand { font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase; color: #666; font-weight: 600; }
.pc-cat { font-size: .62rem; letter-spacing: .5px; text-transform: uppercase; color: #777; background: #f3f3f3; padding: 2px 8px; border-radius: 0; }
.pc-title { font-family: var(--font-body); font-weight: 600; font-size: .94rem; margin: 5px 0 8px; color: var(--text-dark); }
.pc-title a:hover { color: #000; text-decoration: underline; }
.pc-rating { display: flex; align-items: center; gap: 6px; font-size: .76rem; color: #111; margin-bottom: 10px; }
.pc-rating span { color: var(--muted-2); }
.pc-colors { display: flex; gap: 6px; margin-bottom: 8px; }
.pc-colors i { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(0,0,0,.2); display: inline-block; }
.pc-sizes { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 10px; }
.pc-sizes span {
    font-size: .66rem; font-weight: 600; min-width: 26px; height: 22px; padding: 0 6px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid #e5e5e5; border-radius: 0; color: #777; background: #fafafa;
}
.pc-sizes .more { border-style: dashed; }
.pc-price { margin-top: auto; display: flex; align-items: baseline; flex-wrap: wrap; gap: 9px; }
.pc-price .now { font-weight: 700; font-size: 1.05rem; color: var(--text-dark); }
.pc-price .was { text-decoration: line-through; color: var(--muted-2); font-size: .84rem; }
.pc-price .off { color: var(--accent-sale); font-size: .76rem; font-weight: 600; }
.pc-stock { margin-left: auto; font-size: .66rem; font-weight: 600; letter-spacing: .4px; text-transform: uppercase; }
.pc-stock.in { color: var(--success); }
.pc-stock.out { color: var(--danger); }

/* Dark product cards on dark sections */
.bg-dark .product-card, .bg-charcoal .product-card { background: #161616; border-color: #2a2a2a; }
.bg-dark .pc-title, .bg-charcoal .pc-title { color: #fff; }
.bg-dark .pc-price .now, .bg-charcoal .pc-price .now { color: #fff; }
.bg-dark .pc-brand, .bg-charcoal .pc-brand { color: #aaa; }
.bg-dark .pc-cat, .bg-charcoal .pc-cat { background: #222; color: #ccc; }
.bg-dark .pc-sizes span, .bg-charcoal .pc-sizes span { background: #1c1c1c; border-color: #333; color: #999; }
.bg-dark .pc-media, .bg-charcoal .pc-media { background: #0d0d0d; }

/* --------------------------- Category cards ------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
@media (max-width: 980px){ .cat-grid { grid-template-columns: repeat(3,1fr);} }
@media (max-width: 560px){ .cat-grid { grid-template-columns: repeat(2,1fr); gap: 10px;} }
.cat-card { position: relative; border-radius: 0; overflow: hidden; aspect-ratio: 3/4; display: block; border: 1px solid #eee; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.cat-card:hover img { transform: scale(1.06); }
.cat-card .cat-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.05) 55%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 16px;
}
.cat-card h4 { color: #fff; font-size: 1.05rem; margin: 0; font-family: var(--font-head); }
.cat-card span { color: rgba(255,255,255,.75); font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase; }

/* -------------------------- Promo banners --------------------------- */
.promo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 760px){ .promo-grid { grid-template-columns: 1fr; } }
.promo-card {
    position: relative; border-radius: 0; overflow: hidden; min-height: 240px;
    display: flex; align-items: center; padding: 40px; background: #111; border: 1px solid #222;
}
.promo-card::before { content:""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 50%, rgba(255,255,255,.06), transparent 60%); }
.promo-card .promo-content { position: relative; z-index: 2; max-width: 70%; }
.promo-card small { color: #aaa; letter-spacing: 3px; text-transform: uppercase; font-size: .7rem; }
.promo-card h3 { color: #fff; font-size: 1.7rem; margin: 8px 0 14px; }

/* ---------------------------- Brands strip -------------------------- */
.brands { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px; }
.brand-chip {
    display: flex; align-items: center; gap: 10px; padding: 14px 24px; border: 1px solid #2a2a2a;
    border-radius: 0; color: #fff; font-family: var(--font-head); font-size: 1.1rem; letter-spacing: 1px;
    transition: .3s; background: #161616;
}
.brand-chip i { color: #fff; }
.brand-chip:hover { border-color: #fff; color: #fff; transform: translateY(-3px); }

/* ----------------------------- Reviews ------------------------------ */
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 860px){ .review-grid { grid-template-columns: 1fr; } }
.review-card { background: #161616; border: 1px solid #2a2a2a; border-radius: 0; padding: 28px; position: relative; }
.review-card .quote { position: absolute; top: 16px; right: 22px; font-size: 3rem; color: rgba(255,255,255,.08); font-family: var(--font-head); }
.review-card .stars { color: #fff; margin-bottom: 12px; }
.review-card p { color: #aaa; font-style: italic; }
.review-card .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review-card .who .av {
    width: 44px; height: 44px; border-radius: 50%; background: #fff; color: #000;
    display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.review-card .who b { color: #fff; display: block; font-size: .9rem; }
.review-card .who span { color: #888; font-size: .74rem; }

/* --------------------------- Newsletter ----------------------------- */
.newsletter { background: #0a0a0a; border-top: 1px solid #222; }
.newsletter-box { text-align: center; max-width: 620px; margin: 0 auto; }
.newsletter-box h2 { color: #fff; }
.newsletter-box .eyebrow { color: #999; }
.newsletter-box p { color: #999; margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
    flex: 1; border-radius: 0; border: 1px solid #333; background: #151515; color: #fff;
}
.newsletter-form input:focus { border-color: #fff; box-shadow: none; }
.newsletter-form .btn { border-radius: 0 !important; }
@media (max-width: 520px){ .newsletter-form { flex-direction: column; gap: 10px; } }

/* ------------------------------ Footer ------------------------------ */
.site-footer { background: #000; color: #999; border-top: 1px solid #1a1a1a; padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 34px; }
@media (max-width: 900px){ .footer-grid { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr;} }
.footer-grid h5 {
    color: #fff; font-family: var(--font-body); font-size: .78rem; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 18px; font-weight: 700;
}
.footer-grid a { color: #999; display: block; padding: 5px 0; font-size: .88rem; }
.footer-grid a:hover { color: #fff; padding-left: 4px; }
.footer-brand img {
    height: 90px; margin-bottom: 14px; background: transparent;
}
.footer-brand p { font-size: .88rem; max-width: 280px; color: #888; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 12px; font-size: .88rem; align-items: flex-start; }
.footer-contact i { color: #fff; margin-top: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
    width: 40px; height: 40px; border: 1px solid #333; border-radius: 0;
    display: flex; align-items: center; justify-content: center; color: #fff;
}
.footer-social a:hover { background: #fff; color: #000; border-color: #fff; }
.footer-bottom {
    border-top: 1px solid #1a1a1a; margin-top: 46px; padding: 22px 0;
    text-align: center; font-size: .8rem; color: #666;
}
.footer-bottom a { color: #fff; }

/* Floating WhatsApp (lacedup-style) */
.wa-float {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 2500;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float svg {
    width: 32px;
    height: 32px;
    display: block;
}
.wa-float:hover {
    transform: scale(1.08);
    color: #fff !important;
    box-shadow: 0 10px 28px rgba(37, 211, 102, .55);
}
@media (max-width: 480px){
    .wa-float { right: 14px; bottom: 16px; width: 54px; height: 54px; }
    .wa-float svg { width: 30px; height: 30px; }
}

/* ------------------------------ Forms ------------------------------- */
input, select, textarea {
    width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 0;
    font-family: inherit; font-size: .9rem; color: var(--text-dark); background: #fff;
    transition: border-color .25s, box-shadow .25s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: #000; box-shadow: 0 0 0 2px rgba(0,0,0,.08); }
input::placeholder, textarea::placeholder { color: #aaa; }
label { font-weight: 500; font-size: .84rem; margin-bottom: 6px; display: block; color: var(--text-dark); }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px){ .form-row { grid-template-columns: 1fr; } }
.form-dark input, .form-dark select, .form-dark textarea { background: #161616; border-color: #333; color: #fff; }
.form-dark input::placeholder { color: #777; }
.form-dark label { color: #fff; }

/* Auth card */
.auth-wrap {
    min-height: calc(100vh - var(--nav-h)); display: flex; align-items: center; justify-content: center;
    padding: 50px 20px; background: #f7f7f7;
}
.auth-card {
    width: 100%; max-width: 460px; background: #fff; border: 1px solid #eee;
    border-radius: 0; padding: 40px; box-shadow: var(--shadow);
}
.auth-card h1 { color: #111; text-align: center; font-size: 1.9rem; }
.auth-card .sub { color: #777; text-align: center; margin-bottom: 26px; font-size: .9rem; }
.auth-card .alt { text-align: center; margin-top: 18px; color: #777; font-size: .9rem; }
.auth-card .alt a { color: #000; font-weight: 700; text-decoration: underline; }

/* ------------------------------ Alerts ------------------------------ */
.alert { padding: 13px 18px; border-radius: 0; font-size: .9rem; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: rgba(46,125,50,.08); color: #2e7d32; border: 1px solid rgba(46,125,50,.3); }
.alert-error { background: rgba(198,40,40,.08); color: #b71c1c; border: 1px solid rgba(198,40,40,.3); }
.alert-info { background: #f5f5f5; color: #333; border: 1px solid #ddd; }

/* ---------------------------- Breadcrumb ---------------------------- */
.breadcrumb-bar { background: #fafafa; border-bottom: 1px solid #eee; padding: 16px 0; }
.breadcrumb-bar .breadcrumb {
    display: flex; gap: 8px; align-items: center; color: #888; font-size: .82rem;
    flex-wrap: wrap; margin: 0; padding: 0; background: transparent; list-style: none;
}
.breadcrumb-bar .breadcrumb a { color: #888; }
.breadcrumb-bar .breadcrumb a:hover { color: #000; }
.breadcrumb-bar .breadcrumb .sep { color: #ccc; }
.breadcrumb-bar .breadcrumb .current { color: #111; font-weight: 600; }

/* ------------------------------ Toast ------------------------------- */
.toast-wrap { position: fixed; bottom: 26px; right: 26px; z-index: 3000; display: flex; flex-direction: column; gap: 10px; }
.toast {
    background: #111; color: #fff; border: 1px solid #333; border-left: 3px solid #fff;
    border-radius: 0; padding: 14px 18px; min-width: 260px; box-shadow: var(--shadow);
    display: flex; align-items: center; gap: 12px; transform: translateX(120%); transition: transform .4s var(--ease);
}
.toast.show { transform: translateX(0); }
.toast i { color: #fff; font-size: 1.05rem; }
.toast.success { border-left-color: var(--success); }
.toast.success i { color: var(--success); }
.toast.error { border-left-color: var(--danger); }
.toast.error i { color: var(--danger); }

/* ------------------------- Utility & anim --------------------------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.mt-0{margin-top:0}.mb-0{margin-bottom:0}.text-center{text-align:center}
.divider-line { height: 1px; background: #eee; border: none; margin: 0; }

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-12px);} to { opacity: 1; transform: none; } }
@keyframes heroFade { from { opacity: .3; } to { opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }
.spinner { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; display: inline-block; }

/* --------------------------- Quick view ----------------------------- */
.qv-modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; }
.qv-modal.open { display: flex; }
.qv-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.65); backdrop-filter: blur(2px); }
.qv-dialog {
    position: relative; z-index: 2; background: #fff; border-radius: 0; max-width: 860px;
    width: 100%; max-height: 90vh; overflow: auto; box-shadow: var(--shadow); animation: fadeInDown .3s var(--ease);
}
.qv-close {
    position: absolute; top: 12px; right: 16px; z-index: 5; background: #f5f5f5; border: none;
    width: 38px; height: 38px; border-radius: 0; font-size: 1.5rem; color: #333; line-height: 1;
}
.qv-close:hover { background: #000; color: #fff; }
.qv-body .qv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; padding: 26px; }
@media (max-width: 640px){ .qv-body .qv-grid { grid-template-columns: 1fr; } }
.qv-body .qv-img { background: #f5f5f5; border-radius: 0; aspect-ratio: 1/1; overflow: hidden; }
.qv-body .qv-img img { width: 100%; height: 100%; object-fit: cover; }

/* Responsive nav — lacedup mobile: [menu][search] | logo | [cart] */
@media (max-width: 1100px){
    .nav-menu > li > a { padding: 8px 8px; font-size: .78rem; }
}
@media (max-width: 992px){
    .site-header .container { padding-left: 12px; padding-right: 12px; }
    .nav {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 0;
        min-height: 76px;
    }
    .nav-left {
        display: flex;
        justify-self: start;
        align-items: center;
        gap: 2px;
    }
    .nav-toggle { display: inline-flex; font-size: 1.35rem; width: 44px; height: 44px; }
    .nav-search-btn { display: inline-flex; width: 44px; height: 44px; font-size: 1.12rem; }
    .nav-icon { width: 44px; height: 44px; font-size: 1.12rem; }
    .nav .brand {
        justify-self: center;
        justify-content: center;
    }
    .nav .brand img {
        height: 78px;
        max-width: 200px;
    }
    .nav-menu { display: none; }
    .nav-actions {
        justify-self: end;
        justify-content: flex-end;
    }
    .nav-desktop-only { display: none !important; }
    .nav-cart-btn .badge-count {
        display: flex !important;
        top: 1px;
        right: -1px;
    }
    .search-pop {
        position: fixed;
        top: 76px;
        left: 12px;
        right: 12px;
        width: auto;
    }
    :root { --nav-h: 76px; }
    .hero-slide { min-height: clamp(380px, 72vw, 520px); }
}
@media (max-width: 480px){
    .nav { min-height: 72px; }
    .nav .brand img { height: 72px; max-width: 180px; }
    .search-pop { top: 72px; }
    :root { --nav-h: 72px; }
    .container { padding: 0 16px; }
    .section { padding: 52px 0; }
    .site-header .container { padding-left: 10px; padding-right: 10px; }
}
