/* =========================================================================
   Nawayak — storefront design system (brand: blue #1E73BE + orange #F7941D)
   ========================================================================= */

:root {
    --primary: #1e73be;
    --primary-dark: #155a94;
    --primary-soft: #eaf2fb;
    --accent: #f7941d;
    --accent-dark: #e07d00;
    --accent-soft: #fff3e3;
    --topbar-bg: #103e6b;
    --nav-text: #16263b;

    --title: #18222f;
    --text: #5a6473;
    --muted: #97a0ad;
    --bg: #ffffff;
    --bg-muted: #f5f8fc;
    --border: #e8edf3;
    --success: #2e9e4f;
    --danger: #e23b3b;

    --radius: 14px;
    --radius-sm: 10px;
    --radius-pill: 40px;
    --container: 1300px;

    --shadow-sm: 0 1px 2px rgba(20, 40, 80, .06), 0 2px 6px rgba(20, 40, 80, .04);
    --shadow: 0 6px 18px rgba(20, 40, 80, .08);
    --shadow-lg: 0 20px 45px rgba(20, 40, 80, .15);
    --ring: 0 0 0 3px rgba(30, 115, 190, .15);

    --font: "Poppins", Arial, Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .15s ease; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { color: var(--title); font-weight: 700; line-height: 1.2; margin: 0 0 .5em; letter-spacing: -.01em; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent); color: #fff; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 18px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.site-main { min-height: 50vh; }

/* ----- buttons ----- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .55em;
    padding: 12px 24px; border: 0; border-radius: var(--radius-pill);
    font-weight: 600; font-size: 13.5px; line-height: 1; cursor: pointer;
    transition: transform .12s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 6px 16px rgba(30, 115, 190, .28); }
.btn--primary:hover { background: var(--primary-dark); box-shadow: 0 10px 22px rgba(30, 115, 190, .34); }
.btn--accent { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; box-shadow: 0 6px 16px rgba(247, 148, 29, .3); }
.btn--accent:hover { filter: brightness(1.05); box-shadow: 0 10px 22px rgba(247, 148, 29, .38); }
.btn--dark { background: #16263b; color: #fff; box-shadow: var(--shadow); }
.btn--dark:hover { background: #0c1623; }
.btn--ghost { background: #fff; color: var(--primary); border: 1.5px solid var(--border); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary-dark); }
.btn--ghost-light { background: rgba(255, 255, 255, .15); color: #fff; border: 1.5px solid rgba(255, 255, 255, .55); backdrop-filter: blur(4px); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .28); }
.btn--block { width: 100%; }
.btn--lg { padding: 14px 30px; font-size: 14.5px; }

/* =========================================================================
   Header
   ========================================================================= */
.topbar { background: var(--topbar-bg); color: #eaf1f8; font-size: 12.5px; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 40px; }
.topbar__msg { margin: 0; font-weight: 500; }
.topbar__contact { display: flex; align-items: center; gap: 16px; }
.topbar__call { display: inline-flex; align-items: center; gap: 7px; color: #eaf1f8; font-weight: 500; }
.topbar__call:hover { color: #fff; }
.topbar__call strong { color: var(--accent); font-weight: 700; }
.topbar__social { display: flex; gap: 8px; }

/* header click-to-call + WhatsApp */
.header-actions__icon { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px;
    border-radius: 50%; transition: transform .15s, background .15s, color .15s; }
.header-actions__call { background: var(--primary-soft); color: var(--primary); }
.header-actions__call:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }
.header-actions__wa { background: #e9f9ef; color: #25d366; }
.header-actions__wa:hover { background: #25d366; color: #fff; transform: translateY(-1px); }

.soc { width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, .12); color: #fff; transition: background .15s ease, transform .15s ease; }
.soc:hover { background: var(--accent); transform: translateY(-2px); }
.soc svg { width: 15px; height: 15px; }

.site-header { position: sticky; top: 0; z-index: 50; }
.header-main { background: #fff; border-bottom: 1px solid var(--border); transition: box-shadow .2s ease; }
.site-header.is-stuck .header-main { box-shadow: var(--shadow); }
.header-main__inner { display: flex; align-items: center; gap: 26px; min-height: 88px; }

.logo__mark { font-size: 30px; font-weight: 800; letter-spacing: -1px; color: var(--primary); position: relative; }
.logo__mark::after { content: "."; color: var(--accent); }
.logo__mark--light { color: #fff; }

.search { flex: 1; min-width: 0; display: flex; align-items: center; max-width: 640px;
    border: 2px solid var(--border); border-radius: var(--radius-pill); overflow: hidden; background: #fff; transition: border-color .15s, box-shadow .15s; }
.search:focus-within { border-color: var(--primary); box-shadow: var(--ring); }
.search__input { min-width: 0; flex: 1; border: 0; outline: 0; padding: 12px 20px; font-size: 14px; color: var(--title); background: transparent; }
.search__btn { background: var(--primary); color: #fff; border: 0; padding: 0 20px; align-self: stretch; display: flex; align-items: center; transition: background .15s; }
.search__btn:hover { background: var(--primary-dark); }

.header-actions { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.cart-link { position: relative; color: var(--title); display: inline-flex; padding: 6px; transition: color .15s; }
.cart-link:hover { color: var(--primary); }
.cart-link__count {
    position: absolute; top: -4px; right: -6px; background: var(--accent); color: #fff;
    font-size: 11px; font-weight: 700; min-width: 19px; height: 19px; padding: 0 5px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 6px rgba(247, 148, 29, .5);
}
.nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: 0; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--title); display: block; border-radius: 2px; }

/* ----- main nav / mega ----- */
.mainnav { background: #fff; border-bottom: 1px solid var(--border); }
.mainnav .container { position: relative; }
.mainnav__list { display: flex; flex-wrap: nowrap; justify-content: space-between; gap: 0; }
.mainnav__item { position: static; }
.mainnav__item > a {
    display: inline-flex; align-items: center; gap: 3px; padding: 14px 10px; font-size: 12px; font-weight: 600;
    text-transform: uppercase; color: var(--nav-text); letter-spacing: .1px; position: relative; white-space: nowrap;
}
.mainnav__item > a::after { content: ""; position: absolute; left: 10px; right: 10px; bottom: 8px; height: 2px; background: var(--accent); transform: scaleX(0); transition: transform .18s ease; border-radius: 2px; }
.mainnav__item > a:hover { color: var(--primary); }
.mainnav__item > a:hover::after { transform: scaleX(1); }
.chev { transition: transform .18s ease; opacity: .55; flex-shrink: 0; }
.mainnav__item.has-mega:hover > a .chev { transform: rotate(180deg); }

/* full-width mega panel with subcategory columns */
.mega { position: absolute; left: 0; right: 0; top: 100%; z-index: 40; background: #fff;
    border: 1px solid var(--border); border-top: 3px solid var(--primary); border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: var(--shadow-lg); display: none; }
.mainnav__item.has-mega:hover .mega { display: block; }
.mega__inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px 36px; padding: 28px 26px; }
.mega__col-title { display: block; font-weight: 700; color: var(--title); text-transform: uppercase; font-size: 12px; letter-spacing: .5px; margin-bottom: 12px; padding-bottom: 9px; border-bottom: 2px solid var(--accent-soft); }
.mega__col-title:hover { color: var(--primary); }
.mega__col-list li a { display: block; padding: 5px 0; font-size: 13px; color: var(--text); }
.mega__col-list li a:hover { color: var(--primary); padding-left: 4px; }
/* keep the nav on a single line on smaller desktops */
@media (max-width: 1366px) and (min-width: 769px) {
    .mainnav__item > a { font-size: 11px; padding: 12px 7px; letter-spacing: 0; gap: 2px; }
    .mainnav__item > a::after { left: 7px; right: 7px; }
    .chev { width: 9px; height: 9px; }
}
@media (max-width: 1150px) and (min-width: 769px) {
    .mainnav__item > a { font-size: 10px; padding: 11px 5px; gap: 1px; }
    .mainnav__item > a::after { left: 5px; right: 5px; }
    .chev { width: 8px; height: 8px; }
}

/* drawer pieces — hidden on desktop, used by the mobile menu */
.mainnav__drawerhead, .mainnav__extra { display: none; }
.drawer-backdrop { position: fixed; inset: 0; background: rgba(10, 20, 35, .5); z-index: 80; opacity: 0; visibility: hidden; transition: opacity .25s ease; }
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }
body.drawer-open { overflow: hidden; }
.drawer-close { background: none; border: 0; font-size: 32px; line-height: 1; color: var(--title); cursor: pointer; padding: 0 4px; }

/* =========================================================================
   Hero
   ========================================================================= */
.hero { position: relative; overflow: hidden; color: #fff;
    background: radial-gradient(120% 140% at 85% 10%, #ffc56b 0%, #f7941d 42%, #ec7c12 100%); }
.hero::before { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%;
    background: rgba(255, 255, 255, .12); top: -120px; right: 8%; }
.hero::after { content: ""; position: absolute; width: 200px; height: 200px; border-radius: 50%;
    background: rgba(255, 255, 255, .1); bottom: -90px; left: 38%; }
.hero__inner { position: relative; z-index: 1; display: flex; align-items: center; gap: 30px; min-height: 420px; padding: 54px 18px; }
.hero__text { flex: 1.1; }
.hero__eyebrow { display: inline-block; background: rgba(255, 255, 255, .2); padding: 6px 16px; border-radius: var(--radius-pill);
    font-size: 12.5px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 16px; }
.hero__title { color: #fff; font-size: 50px; font-weight: 800; line-height: 1.07; margin-bottom: 16px; text-shadow: 0 2px 14px rgba(140, 70, 0, .18); }
.hero__lead { font-size: 16px; max-width: 460px; margin-bottom: 26px; color: rgba(255, 255, 255, .94); }
.hero__cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__art { flex: 1; position: relative; min-height: 260px; display: flex; align-items: center; justify-content: center; }
.hero__badge { width: 150px; height: 150px; border-radius: 50%; background: #fff; color: var(--accent-dark);
    display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); transform: rotate(-8deg); }
.hero__badge span { font-size: 40px; font-weight: 800; line-height: 1; }
.hero__badge small { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ----- home hero slider ----- */
.hero-slider { position: relative; overflow: hidden; aspect-ratio: 1903 / 590; background: var(--primary); }
.hero-slider__slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; }
.hero-slider__slide.is-active { opacity: 1; z-index: 1; }
.hero-slider__slide img { width: 100%; height: 100%; object-fit: cover; object-position: left center; display: block; }
.hero-slider__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 46px; height: 46px;
    border-radius: 50%; border: 0; background: rgba(255, 255, 255, .85); color: #16263b; font-size: 26px; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); opacity: 0; transition: opacity .2s, background .15s; }
.hero-slider:hover .hero-slider__nav { opacity: 1; }
.hero-slider__nav:hover { background: #fff; }
.hero-slider__nav--prev { left: 18px; }
.hero-slider__nav--next { right: 18px; }
.hero-slider__dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.hero-slider__dot { width: 10px; height: 10px; border-radius: 50%; border: 0; padding: 0; background: rgba(255, 255, 255, .55); cursor: pointer; transition: background .15s, width .15s; }
.hero-slider__dot.is-active { background: #fff; width: 26px; border-radius: 5px; }
@media (max-width: 992px) { .hero-slider { aspect-ratio: 5/2; } }
@media (max-width: 600px) { .hero-slider__nav { display: none; } .hero-slider { aspect-ratio: unset; height: 260px; } }
@media (max-width: 400px) { .hero-slider { height: 220px; } }

/* ----- features strip ----- */
.features { background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,.07); position: relative; z-index: 2; }
.features__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.feature { display: flex; align-items: center; gap: 16px; padding: 26px 22px; border-right: 1px solid var(--border); transition: background .18s; }
.feature:last-child { border-right: 0; }
.feature:hover { background: var(--primary-soft); }
.feature__icon { width: 54px; height: 54px; border-radius: 16px; flex-shrink: 0;
    background: linear-gradient(135deg, #e8f2fb 0%, #cce2f5 100%); color: var(--primary);
    display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(30,115,190,.13); }
.feature__icon svg { width: 26px; height: 26px; }
.feature__icon svg, .footer__feature svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature strong { display: block; color: var(--title); font-size: 14px; margin-bottom: 2px; }
.feature span { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* =========================================================================
   Sections / titles
   ========================================================================= */
.section { padding: 54px 0; }
.section--muted { background: var(--bg-muted); }
.section__head { text-align: center; margin-bottom: 34px; }
.section__title { font-size: 28px; margin: 0 0 30px; position: relative; text-align: center; }
.section__head .section__title { margin: 0; }
.section__title::after { content: ""; display: block; width: 56px; height: 3px; background: var(--accent); margin: 12px auto 0; border-radius: 3px; }
.section__eyebrow { display: block; color: var(--accent-dark); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.section__note { text-align: center; color: var(--muted); margin-bottom: 18px; }
.section__cta { text-align: center; margin-top: 32px; }
.section--products .container { text-align: center; }

/* ----- category tiles ----- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
.cat-card { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; padding: 28px 14px 22px;
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s; position: relative; overflow: hidden; }
.cat-card::before { content: ""; position: absolute; inset: 0; border-radius: var(--radius);
    border-top: 3px solid var(--accent); opacity: 0; transition: opacity .2s; }
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,.11); border-color: transparent; }
.cat-card:hover::before { opacity: 1; }
.cat-card__icon { width: 88px; height: 88px; border-radius: 50%; background: var(--bg-muted); border: 2px solid var(--accent-soft);
    background-position: center; background-size: cover; transition: border-color .2s, transform .2s; display: flex; align-items: center; justify-content: center; }
.cat-card__deficon { width: 38px; height: 38px; fill: none; stroke: var(--accent); stroke-width: 1.5; opacity: .65; }
.cat-card:hover .cat-card__icon { border-color: var(--accent); transform: scale(1.08); }
.cat-card__name { font-weight: 700; color: var(--title); font-size: 13px; line-height: 1.3; }
.cat-card__count { font-size: 11px; color: var(--muted); margin-top: -6px; background: var(--bg-muted); border-radius: 20px; padding: 2px 10px; }

/* ----- home stats band ----- */
.stats-band { background: linear-gradient(120deg, var(--primary), #0e3a64); color: #fff; }
.stats-band__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 42px 18px; text-align: center; }
.stat-item strong { display: block; font-size: 34px; font-weight: 800; line-height: 1; color: #fff; }
.stat-item span { font-size: 13px; color: rgba(255, 255, 255, .82); margin-top: 8px; display: block; }

/* =========================================================================
   Product card + grid
   ========================================================================= */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 22px; text-align: left; }
.product-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 14px; display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease, border-color .18s; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-card__media { position: relative; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px; background: var(--bg-muted); border-radius: var(--radius-sm); overflow: hidden; }
.product-card__media img { max-height: 86%; max-width: 86%; object-fit: contain; transition: transform .3s ease; mix-blend-mode: multiply; }
.product-card:hover .product-card__media img { transform: scale(1.07); }
.product-card__badge { position: absolute; top: 10px; left: 10px; font-size: 11px; font-weight: 700; color: #fff;
    background: var(--accent); padding: 4px 11px; border-radius: 20px; box-shadow: 0 4px 10px rgba(247, 148, 29, .35); }
.product-card__badge--out { background: var(--danger); box-shadow: none; }
.product-card__title { font-size: 13.5px; font-weight: 500; color: var(--title); margin: 0 0 8px; min-height: 2.7em;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card__title a:hover { color: var(--primary); }
.product-card__price { font-weight: 800; color: var(--title); font-size: 16px; margin-bottom: 6px; }
.product-card__price del { color: var(--muted); font-weight: 400; font-size: 13px; margin-right: 6px; }
.product-card__price ins { color: var(--accent-dark); text-decoration: none; }
.product-card__price .from { font-size: 11px; color: var(--muted); font-weight: 500; }
.product-card__stock { font-size: 12px; color: var(--success); margin-bottom: 12px; font-weight: 500; }
.product-card__stock::before { content: "●"; font-size: 8px; vertical-align: middle; margin-right: 5px; }
.product-card__stock--out { color: var(--danger); }
.product-card__swatches { display: flex; gap: 5px; margin-bottom: 14px; flex-wrap: wrap; min-height: 17px; }
.swatch { width: 17px; height: 17px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--border); display: inline-block; }
/* push the buy control to the bottom so every card's button aligns on one line,
   whether it's a direct <a> (variable) or a <form> (simple product) */
.product-card > .btn,
.product-card > .add-cart-form { margin-top: auto; }
.product-card > .add-cart-form .btn { margin-top: 0; }

/* =========================================================================
   Shop / category layout
   ========================================================================= */
.page-head { background: linear-gradient(120deg, var(--primary-soft), #fff); padding: 30px 0; border-bottom: 1px solid var(--border); }
.page-head__title { font-size: 28px; margin: 0; }
.breadcrumb { font-size: 12.5px; color: var(--muted); margin-bottom: 8px; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb__sep { color: var(--border); }

.shop-layout { display: grid; grid-template-columns: 270px 1fr; gap: 32px; padding: 36px 0; }
.shop-sidebar .widget { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; margin-bottom: 18px; }
.widget__title { font-size: 14px; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--accent-soft); }
.widget ul li { padding: 6px 0; font-size: 13.5px; }
.widget ul li a:hover { color: var(--primary); padding-left: 3px; }
.widget ul li.is-active > a { color: var(--primary); font-weight: 600; }
.widget__count { color: var(--muted); font-size: 12px; }
.shop-main { min-width: 0; }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; gap: 12px; flex-wrap: wrap;
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 18px; }
.shop-toolbar select { padding: 9px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff; font-family: inherit; }
.shop-count { color: var(--text); font-size: 13px; font-weight: 500; }
.sort-form { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.price-inputs { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.price-inputs input { width: 100%; padding: 9px 10px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: inherit; }
.filter-check { display: flex; align-items: center; gap: 8px; font-size: 13px; margin-bottom: 14px; }

.pagination { display: flex; gap: 7px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.pagination a, .pagination span { min-width: 40px; height: 40px; padding: 0 12px; border-radius: var(--radius-sm);
    border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; font-size: 13.5px; font-weight: 500; background: #fff; transition: all .15s; }
.pagination .is-current { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination a:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

/* =========================================================================
   Single product
   ========================================================================= */
.product { padding: 38px 0; }
.product__top { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.gallery { display: flex; gap: 14px; align-items: flex-start; }
.gallery__thumbs { display: flex; flex-direction: column; gap: 10px; width: 80px; flex-shrink: 0; }
.gallery__thumb { width: 80px; height: 80px; border: 2px solid var(--border); border-radius: var(--radius-sm); padding: 6px; cursor: pointer; display: flex; align-items: center; justify-content: center; background: #fff; transition: border-color .15s; }
.gallery__thumb img { max-width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.gallery__thumb:hover { border-color: var(--accent); }
.gallery__thumb.is-active { border-color: var(--primary); }
.gallery__main { flex: 1; min-width: 0; position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; padding: 28px; background: var(--bg-muted); cursor: zoom-in; }
.gallery__main img { max-height: 100%; max-width: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .12s ease-out; }
.gallery__badge { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--accent); color: #fff; font-weight: 700; font-size: 13px; padding: 5px 12px; border-radius: 20px; box-shadow: 0 4px 10px rgba(247,148,29,.35); }
.gallery__badge--out { background: var(--danger); box-shadow: none; top: auto; bottom: 14px; }
.gallery__zoom { position: absolute; bottom: 14px; right: 14px; z-index: 2; width: 34px; height: 34px; border-radius: 50%; background: #fff; color: var(--primary); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); pointer-events: none; }
.product__title { font-size: 30px; margin-bottom: 4px; }
.product__sku { color: var(--muted); font-size: 12.5px; margin: 0 0 14px; }
.product__price { font-size: 28px; font-weight: 800; color: var(--primary); margin: 6px 0 12px; }
.product__price del { color: var(--muted); font-weight: 400; font-size: 18px; margin-right: 10px; }
.product__price ins { color: var(--accent-dark); text-decoration: none; }
.product__price .from { font-size: 14px; color: var(--muted); font-weight: 500; }
.product__stock { font-weight: 600; color: var(--success); margin-bottom: 18px; display: inline-flex; align-items: center; gap: 7px;
    background: #eaf7ee; padding: 5px 14px; border-radius: var(--radius-pill); font-size: 13px; }
.product__stock--out { color: var(--danger); background: #fdeaea; }
.product__stock--low { color: #b45309; background: #fff7ed; }
.product__short { color: var(--text); margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.product__eyebrow { display: inline-block; color: var(--accent-dark); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 6px; }
.product__eyebrow:hover { text-decoration: underline; }
.product__price-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.product__price-row .product__price { margin-bottom: 0; }
.product__save { background: var(--accent-soft); color: var(--accent-dark); font-weight: 700; font-size: 12.5px; padding: 5px 13px; border-radius: var(--radius-pill); }
.page-head--slim { padding: 16px 0; background: #fff; border-bottom: 1px solid var(--border); }

/* product specs table */
.product-specs { width: 100%; border-collapse: collapse; max-width: 720px; }
.product-specs th, .product-specs td { padding: 12px 16px; border: 1px solid var(--border); text-align: left; font-size: 13.5px; vertical-align: top; }
.product-specs th { width: 230px; background: var(--bg-muted); color: var(--title); font-weight: 600; }
.product-specs a { color: var(--primary); }
.product-specs a:hover { text-decoration: underline; }

.variations { margin-bottom: 20px; }
.variation-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.variation-row__label { min-width: 92px; font-weight: 600; color: var(--title); font-size: 13px; }
.swatch-options { display: flex; gap: 9px; flex-wrap: wrap; }
.swatch-option { width: 32px; height: 32px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--border); cursor: pointer; transition: box-shadow .15s, transform .12s; }
.swatch-option:hover { transform: scale(1.08); }
.swatch-option.is-selected { box-shadow: 0 0 0 2px var(--primary); }
.swatch-text { padding: 8px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-pill); background: #fff; cursor: pointer; font-size: 13px; transition: all .15s; }
.swatch-text:hover { border-color: var(--accent); }
.swatch-text.is-selected { border-color: var(--primary); color: var(--primary); font-weight: 600; }
select.variation-select { padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: inherit; min-width: 190px; }

.add-row { display: flex; align-items: center; gap: 14px; margin: 22px 0; flex-wrap: wrap; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius-pill); overflow: hidden; }
.qty button { width: 42px; height: 46px; background: #fff; border: 0; font-size: 18px; color: var(--title); transition: background .15s; }
.qty button:hover { background: var(--bg-muted); color: var(--primary); }
.qty input { width: 48px; height: 46px; text-align: center; border: 0; outline: 0; font-size: 15px; font-family: inherit; }
.product__wa { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; color: #1da851; font-weight: 600; font-size: 13.5px; }
.product__wa:hover { text-decoration: underline; }

.product__tabs { margin-top: 44px; }
.tabs__nav { display: flex; gap: 6px; border-bottom: 2px solid var(--border); margin-bottom: 20px; flex-wrap: wrap; }
.tabs__btn { background: none; border: 0; padding: 12px 20px; font-weight: 600; color: var(--muted); border-bottom: 3px solid transparent; margin-bottom: -2px; transition: color .15s; }
.tabs__btn.is-active { color: var(--primary); border-bottom-color: var(--primary); }
.tabs__panel { display: none; color: var(--text); line-height: 1.8; }
.tabs__panel.is-active { display: block; }
.product__tabs img { border-radius: var(--radius-sm); margin: 12px 0; }
.related { margin-top: 50px; }

/* =========================================================================
   Cart
   ========================================================================= */
.cart-layout { display: grid; grid-template-columns: 1fr 350px; gap: 32px; padding: 36px 0; }
.cart-table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cart-table th, .cart-table td { padding: 16px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: middle; }
.cart-table th { font-size: 12px; text-transform: uppercase; color: var(--muted); background: var(--bg-muted); }
.cart-table tr:last-child td { border-bottom: 0; }
.cart-item__media { width: 72px; }
.cart-item__media img { width: 64px; height: 64px; object-fit: contain; background: var(--bg-muted); border-radius: var(--radius-sm); padding: 4px; }
.cart-item__name { font-weight: 500; color: var(--title); }
.cart-item__name:hover { color: var(--primary); }
.cart-item__variant { font-size: 12px; color: var(--muted); }
.cart-remove { color: var(--danger); background: none; border: 0; font-size: 20px; line-height: 1; transition: transform .15s; }
.cart-remove:hover { transform: scale(1.2); }
.cart-qty-form { display: inline-flex; align-items: center; gap: 8px; }
.cart-totals { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; align-self: start; position: sticky; top: 110px; box-shadow: var(--shadow-sm); }
.cart-totals h3 { font-size: 17px; }
.cart-totals__row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed var(--border); }
.cart-totals__row--grand { font-weight: 800; color: var(--title); font-size: 18px; border-bottom: 0; padding-top: 14px; }
.cart-totals .btn { margin-top: 14px; }
.cart-freeship { font-size: 12.5px; color: var(--accent-dark); background: var(--accent-soft); padding: 8px 12px; border-radius: var(--radius-sm); margin: 8px 0 12px; }
.freeship { margin: 10px 0 14px; }
.freeship__msg { margin: 0 0 7px; font-size: 12.5px; color: var(--accent-dark); }
.freeship__msg--ok { color: var(--success); font-weight: 600; }
.freeship__bar { height: 8px; background: var(--bg-muted); border-radius: 6px; overflow: hidden; }
.freeship__bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), #ffb74d); border-radius: 6px; transition: width .4s ease; }
.cart-empty { text-align: center; padding: 70px 0; }
.cart-empty p { color: var(--muted); margin-bottom: 18px; font-size: 16px; }

/* =========================================================================
   Checkout
   ========================================================================= */
.checkout-layout { display: grid; grid-template-columns: 1fr 370px; gap: 32px; padding: 36px 0; }
.checkout-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.checkout-intro { color: var(--muted); margin-bottom: 20px; font-size: 13.5px; }
.checkout-form h3, .order-summary h3 { font-size: 17px; margin-bottom: 16px; }
.checkout-form .btn { margin-top: 22px; }
.checkout-cod { margin-top: 14px; font-weight: 600; color: var(--success); }
.checkout-or { display: flex; align-items: center; text-align: center; color: var(--muted); font-size: 12.5px; margin: 16px 0 12px; }
.checkout-or::before, .checkout-or::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.checkout-or span { padding: 0 12px; }
.checkout-trust { list-style: none; margin: 18px 0 0; padding: 16px 0 0; border-top: 1px dashed var(--border); display: grid; gap: 9px; font-size: 13px; color: var(--text); }
.checkout-trust a { color: var(--primary); font-weight: 600; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: 13px; color: var(--title); }
.form-field input, .form-field textarea { padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: inherit; font-size: 14px; outline: 0; transition: border-color .15s, box-shadow .15s; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--primary); box-shadow: var(--ring); }
.form-error { color: var(--danger); font-size: 12.5px; }
.field-hint { display: block; font-size: 12px; color: var(--muted); margin-top: 4px; }
.alert { padding: 13px 16px; border-radius: var(--radius-sm); margin-bottom: 18px; }
.alert--error { background: #fdeaea; color: #9b1c1c; }
.alert--success { background: #e7f6e8; color: #226c24; }
.order-summary { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; align-self: start; position: sticky; top: 110px; box-shadow: var(--shadow-sm); }
.order-summary__item { display: flex; justify-content: space-between; gap: 10px; padding: 9px 0; border-bottom: 1px dashed var(--border); font-size: 13.5px; }

/* ----- confirmation ----- */
.confirm { text-align: center; padding: 64px 0; max-width: 660px; }
.confirm__icon { width: 84px; height: 84px; border-radius: 50%; background: var(--success); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 44px; margin: 0 auto 22px; box-shadow: 0 10px 30px rgba(46, 158, 79, .35); }
.confirm__wa { background: #25d366; color: #fff; margin: 20px 0; box-shadow: 0 8px 20px rgba(37, 211, 102, .35); }
.confirm__wa:hover { background: #1da851; }
.confirm__box { text-align: left; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin: 24px 0; box-shadow: var(--shadow-sm); }
.confirm__cust { margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--border); color: var(--text); }
.confirm__cust p { margin: 4px 0; }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: #0f1d2e; color: #aeb9c8; margin-top: 60px; font-size: 13.5px; }
.footer__top { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 30px 18px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.footer__feature { display: flex; align-items: center; gap: 12px; }
.footer__feature svg { width: 26px; height: 26px; color: var(--accent); flex-shrink: 0; }
.footer__feature strong { display: block; color: #fff; font-size: 13.5px; }
.footer__feature span { font-size: 12px; color: #8794a6; }
.footer__cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 32px; padding: 46px 18px; }
.footer__title { color: #fff; font-size: 15px; margin-bottom: 18px; }
.footer__col ul li { padding: 6px 0; }
.footer__col a:hover { color: var(--accent); padding-left: 3px; }
.footer__about p { margin: 14px 0; line-height: 1.7; }
.footer__social { display: flex; gap: 9px; }
.footer__social .soc { background: rgba(255, 255, 255, .08); }
.footer__newsletter { display: flex; margin-top: 12px; border-radius: var(--radius-pill); overflow: hidden; background: rgba(255, 255, 255, .1); }
.footer__newsletter input { flex: 1; min-width: 0; border: 0; background: transparent; color: #fff; padding: 11px 16px; outline: 0; font-family: inherit; }
.footer__newsletter input::placeholder { color: #8794a6; }
.footer__newsletter button { border: 0; background: var(--accent); color: #fff; padding: 0 18px; font-weight: 600; cursor: pointer; }
.footer__pay { margin-top: 16px; color: var(--accent); font-weight: 600; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 18px 0; text-align: center; font-size: 12.5px; color: #8794a6; }

/* ----- whatsapp float ----- */
.wa-float { position: fixed; right: 24px; bottom: 24px; z-index: 60; width: 58px; height: 58px; border-radius: 50%;
    background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(37, 211, 102, .45); transition: transform .15s; }
.wa-float:hover { background: #1da851; transform: scale(1.08); }

.error-page { text-align: center; padding: 70px 0; }
.error-page h1 { font-size: 88px; color: var(--primary); margin-bottom: 0; }

/* =========================================================================
   Espace Professionnel (B2B)
   ========================================================================= */
.pro-hero { position: relative; overflow: hidden; color: #fff; padding: 64px 0;
    background: radial-gradient(120% 150% at 80% 0%, #2b8fe0 0%, var(--primary) 45%, #0e3a64 100%); }
.pro-hero::before { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: rgba(255,255,255,.07); right: -90px; top: -120px; }
.pro-hero::after { content: ""; position: absolute; width: 200px; height: 200px; border-radius: 50%; background: rgba(247,148,29,.22); left: 35%; bottom: -110px; }
.pro-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: center; }
.pro-hero__badge { display: inline-block; background: rgba(255,255,255,.18); padding: 7px 16px; border-radius: var(--radius-pill); font-size: 12.5px; font-weight: 600; letter-spacing: .4px; margin-bottom: 16px; }
.pro-hero h1 { color: #fff; font-size: 44px; margin: 0 0 14px; }
.pro-hero__text p { font-size: 16px; max-width: 540px; color: rgba(255,255,255,.92); margin-bottom: 26px; }
.pro-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.pro-hero__stats { display: grid; gap: 14px; }
.pro-hero__stats div { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); padding: 16px 20px; backdrop-filter: blur(4px); }
.pro-hero__stats strong { display: block; font-size: 30px; font-weight: 800; line-height: 1; color: #fff; }
.pro-hero__stats span { font-size: 12.5px; color: rgba(255,255,255,.85); }

.pro-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: transform .18s ease, box-shadow .18s ease; }
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.benefit-card__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--primary-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.benefit-card__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.benefit-card h3 { font-size: 16px; margin: 0 0 8px; }
.benefit-card p { margin: 0; font-size: 13.5px; }

.pro-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pro-step { text-align: center; padding: 10px; position: relative; }
.pro-step__num { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 22px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 8px 18px rgba(30,115,190,.3); }
.pro-step h3 { font-size: 16px; margin: 0 0 6px; }
.pro-step p { margin: 0; font-size: 13.5px; }

.pro-form-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 30px; align-items: start; }
.pro-form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.pro-form-card h2 { font-size: 22px; margin: 0 0 4px; }
.pro-form-card__sub { color: var(--muted); margin-bottom: 20px; font-size: 13.5px; }
.pro-form-card .btn { margin-top: 20px; }
.pro-contact { background: linear-gradient(160deg, var(--primary), #0e3a64); color: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.pro-contact h3 { color: #fff; font-size: 19px; }
.pro-contact p { color: rgba(255,255,255,.9); font-size: 13.5px; }
.pro-contact__list { margin: 20px 0; display: grid; gap: 14px; }
.pro-contact__list li { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.pro-contact__list svg { width: 22px; height: 22px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.pro-contact .btn { margin-top: 6px; }

@media (max-width: 860px) {
    .pro-hero__inner { grid-template-columns: 1fr; }
    .pro-hero__stats { grid-template-columns: repeat(3, 1fr); }
    .pro-benefits { grid-template-columns: 1fr 1fr; }
    .pro-steps { grid-template-columns: 1fr; }
    .pro-form-grid { grid-template-columns: 1fr; }
    .pro-hero h1 { font-size: 34px; }
}
@media (max-width: 560px) {
    .pro-benefits { grid-template-columns: 1fr; }
    .pro-hero__stats { grid-template-columns: 1fr; }
}

/* ----- cookie consent ----- */
.cookie-consent { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 120; max-width: 760px; margin: 0 auto;
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 12px 40px rgba(16,36,64,.18);
    padding: 16px 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cookie-consent__text { margin: 0; font-size: 13.5px; color: var(--text); flex: 1; min-width: 220px; line-height: 1.6; }
.cookie-consent__text a { color: var(--primary); text-decoration: underline; }
.cookie-consent__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-consent .btn { padding: 9px 18px; }
@media (max-width: 560px) { .cookie-consent { flex-direction: column; align-items: stretch; text-align: center; }
    .cookie-consent__actions { justify-content: center; } }

/* ----- content pages ----- */
.page-content { max-width: 880px; margin: 0 auto; padding: 38px 0 10px; line-height: 1.85; color: var(--text); }
.page-content h2, .page-content h3 { margin-top: 1.4em; }
.page-content p { margin: 0 0 1em; }
.page-content ul, .page-content ol { margin: 0 0 1em; padding-left: 1.4em; }
.page-content ul { list-style: disc; } .page-content ol { list-style: decimal; }
.page-content a { color: var(--primary); text-decoration: underline; }
.page-content img { border-radius: var(--radius-sm); margin: 12px 0; }
.page-content table { width: 100%; border-collapse: collapse; margin: 1em 0; }
.page-content th, .page-content td { border: 1px solid var(--border); padding: 9px 12px; text-align: left; }

/* ----- contact page (local SEO) ----- */
.contact-page { padding: 36px 0 10px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 28px; align-items: stretch; }
.contact-info { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.contact-info h2 { font-size: 19px; margin-bottom: 18px; }
.contact-list { display: grid; gap: 16px; margin-bottom: 22px; }
.contact-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 14px; line-height: 1.6; }
.contact-list svg { width: 22px; height: 22px; fill: none; stroke: var(--primary); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.contact-list a:hover { color: var(--primary); }
.contact-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); min-height: 400px; box-shadow: var(--shadow-sm); }
.contact-map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }

/* ----- footer NAP ----- */
.footer__nap { display: grid; gap: 9px; margin: 14px 0; }
.footer__nap li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; }
.footer__nap svg { width: 17px; height: 17px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 1px; }
.footer__nap a:hover { color: #fff; }

@media (max-width: 860px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { min-height: 300px; }
    .contact-map iframe { min-height: 300px; }
}

.page-head__sub { margin: 8px 0 0; color: var(--text); font-size: 14.5px; max-width: 680px; }

/* ----- FAQ page (FAQPage schema / AI-citable Q&A) ----- */
.faq-page { max-width: 860px; margin: 0 auto; padding: 36px 0 14px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item[open] { border-color: var(--primary); }
.faq-q { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 18px 22px; font-weight: 600; font-size: 15.5px; color: var(--title); }
.faq-q::-webkit-details-marker { display: none; }
.faq-chevron { width: 20px; height: 20px; fill: none; stroke: var(--primary); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; transition: transform .2s ease; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-a { padding: 0 22px 20px; color: var(--text); line-height: 1.75; font-size: 14.5px; }
.faq-a a { color: var(--primary); text-decoration: underline; }
.faq-item--extra .faq-a.page-content { max-width: none; padding: 0 22px 20px; }
.faq-cta { margin-top: 26px; background: linear-gradient(160deg, var(--primary), #0e3a64); color: #fff;
    border-radius: var(--radius); padding: 28px 30px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.faq-cta h2 { font-size: 19px; margin: 0 0 4px; }
.faq-cta p { margin: 0; opacity: .9; font-size: 14px; }
.faq-cta__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ----- About page (clear facts for AI extraction) ----- */
.about-page { padding: 36px 0 10px; }
.about-intro { max-width: 820px; margin: 0 auto; }
.about-intro > p { color: var(--text); line-height: 1.85; margin: 0 0 1em; }
.about-lead { font-size: 17px; color: var(--title) !important; }
.about-facts { list-style: none; margin: 24px 0; padding: 0; display: grid; gap: 1px; background: var(--border);
    border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.about-facts li { display: grid; grid-template-columns: 220px 1fr; gap: 16px; background: #fff; padding: 14px 20px; font-size: 14.5px; }
.about-facts__k { font-weight: 600; color: var(--title); }
.about-facts a { color: var(--primary); }
.about-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.about-extra { padding-top: 18px; }
@media (max-width: 600px) {
    .about-facts li { grid-template-columns: 1fr; gap: 2px; }
    .faq-cta { padding: 22px; }
}

/* =========================================================================
   Premium components
   ========================================================================= */

/* ----- product card hover actions ----- */
.product-card__media-link { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.product-card__actions { position: absolute; top: 10px; right: 10px; display: flex; flex-direction: column; gap: 8px; z-index: 2;
    opacity: 0; transform: translateX(12px); transition: opacity .2s ease, transform .2s ease; }
.product-card:hover .product-card__actions { opacity: 1; transform: none; }
.pc-act { width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--title); border: 0; cursor: pointer;
    display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); transition: background .15s, color .15s, transform .12s; }
.pc-act:hover { background: var(--primary); color: #fff; transform: scale(1.08); }
.pc-act--cart:hover { background: var(--accent); }
.pc-act[disabled] { opacity: .45; cursor: not-allowed; }
.pc-act svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ----- image lightbox ----- */
.gallery__main { cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; background: rgba(12, 22, 38, .92); z-index: 100; display: none; align-items: center; justify-content: center; padding: 30px; cursor: zoom-out; }
.lightbox.is-open { display: flex; animation: lb-in .2s ease; }
.lightbox img { max-width: 92%; max-height: 92%; object-fit: contain; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox__close { position: absolute; top: 22px; right: 26px; color: #fff; font-size: 34px; line-height: 1; background: none; border: 0; cursor: pointer; opacity: .85; }
.lightbox__close:hover { opacity: 1; }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }

/* ----- buy-box trust badges ----- */
.buy-trust { list-style: none; padding: 20px 0 0; margin: 22px 0 0; border-top: 1px solid var(--border); display: grid; gap: 12px; }
.buy-trust li { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text); }
.buy-trust svg { width: 24px; height: 24px; color: var(--primary); fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.buy-trust strong { color: var(--title); }

/* ----- mobile sticky buy bar (product page) ----- */
.mobile-buybar { display: none; }
@media (max-width: 768px) {
    .mobile-buybar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; background: #fff;
        border-top: 1px solid var(--border); box-shadow: 0 -4px 16px rgba(16, 36, 64, .12); padding: 10px 14px;
        align-items: center; gap: 12px; }
    .mobile-buybar__info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
    .mobile-buybar__name { font-size: 11.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .mobile-buybar__price { font-weight: 800; color: var(--primary); font-size: 16px; }
    .mobile-buybar__price del { font-size: 12px; color: var(--muted); font-weight: 400; margin-right: 4px; }
    .mobile-buybar__price ins { text-decoration: none; }
    .mobile-buybar__price .from { font-size: 10px; color: var(--muted); font-weight: 500; }
    .mobile-buybar__btn { flex-shrink: 0; }
    body.has-buybar { padding-bottom: 72px; }
    body.has-buybar .wa-float { bottom: 84px; }
}

/* ----- mobile shop filters drawer ----- */
.shop-sidebar__head { display: none; }
.filter-toggle { display: none; align-items: center; gap: 7px; padding: 9px 15px; border: 1px solid var(--border);
    border-radius: var(--radius-sm); background: #fff; font-family: inherit; font-weight: 600; font-size: 13px; color: var(--title); cursor: pointer; }
.filter-toggle svg { width: 16px; height: 16px; }
@media (max-width: 768px) {
    .filter-toggle { display: inline-flex; }
    .shop-sidebar { position: fixed; top: 0; left: 0; bottom: 0; width: 320px; max-width: 88vw; background: #fff; z-index: 90;
        transform: translateX(-100%); transition: transform .3s ease; overflow-y: auto; padding: 16px; margin: 0;
        box-shadow: 6px 0 30px rgba(0, 0, 0, .18); }
    .shop-sidebar.is-open { transform: translateX(0); }
    .shop-sidebar__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; font-weight: 700; font-size: 16px; color: var(--title); }
    .shop-sidebar .widget { margin-bottom: 14px; }
}

/* ----- gradient CTA banner ----- */
.cta-banner { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--primary), #0e3a64);
    border-radius: var(--radius); padding: 42px 44px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    color: #fff; box-shadow: var(--shadow-lg); }
.cta-banner::before { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: rgba(255, 255, 255, .08); right: -90px; top: -130px; }
.cta-banner::after { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; background: rgba(247, 148, 29, .25); left: -60px; bottom: -90px; }
.cta-banner__text { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin: 0 0 6px; font-size: 27px; }
.cta-banner p { margin: 0; color: rgba(255, 255, 255, .92); }
.cta-banner .btn { position: relative; z-index: 1; flex-shrink: 0; }

/* ----- checkout / order steps ----- */
.steps { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 8px 0 24px; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 13px; font-weight: 600; }
.step__num { width: 27px; height: 27px; border-radius: 50%; background: var(--border); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12.5px; }
.step.is-done .step__num { background: var(--success); }
.step.is-active .step__num { background: var(--primary); }
.step.is-active, .step.is-done { color: var(--title); }
.step__sep { width: 44px; height: 2px; background: var(--border); border-radius: 2px; }

/* ----- (.reveal kept as a harmless hook; content is always visible) ----- */

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 992px) {
    .product__top { grid-template-columns: 1fr; gap: 26px; }
    .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
    .shop-layout { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: repeat(2, 1fr); }
    .footer__cols { grid-template-columns: 1fr 1fr; }
    .hero__title { font-size: 42px; }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; order: -1; }
    .header-main__inner { flex-wrap: wrap; gap: 14px; min-height: 70px; }
    .search { order: 3; flex-basis: 100%; max-width: none; }
    .header-actions__pro { display: none; }
    /* off-canvas drawer */
    .mainnav { position: fixed; top: 0; left: 0; bottom: 0; width: 300px; max-width: 84vw; background: #fff;
        z-index: 90; transform: translateX(-100%); transition: transform .3s ease; overflow-y: auto;
        display: block; border: 0; box-shadow: 6px 0 30px rgba(0, 0, 0, .18); }
    .mainnav.is-open { transform: translateX(0); }
    .mainnav .container { padding: 0; max-width: none; }
    .mainnav__drawerhead { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); }
    .mainnav__list { flex-direction: column; gap: 0; }
    .mainnav__item > a { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; border-bottom: 1px solid var(--border); text-transform: none; font-size: 14.5px; font-weight: 600; }
    .mainnav__item > a::after { display: none; }
    .mega { display: none !important; }
    .mainnav__extra { display: flex; flex-direction: column; padding: 8px 0 30px; border-top: 8px solid var(--bg-muted); }
    .mainnav__extra a { padding: 13px 20px; font-weight: 500; color: var(--text); }
    .mainnav__extra a:hover { color: var(--primary); }
    .hero__inner { min-height: 320px; padding: 40px 18px; }
    .hero__title { font-size: 34px; }
    .hero__art { display: none; }
    .form-grid { grid-template-columns: 1fr; }
    .footer__cols { grid-template-columns: 1fr; }
    .topbar__msg { font-size: 11.5px; }
    /* features - stacked icon layout on tablet/mobile */
    .features__inner { gap: 0; }
    .feature { flex-direction: column; text-align: center; justify-content: center; gap: 10px; padding: 20px 10px; }
    .feature__icon { width: 48px; height: 48px; }
    .feature strong { font-size: 12.5px; line-height: 1.35; }
    .feature span { font-size: 11px; }
    .cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .stats-band__inner { grid-template-columns: repeat(2, 1fr); gap: 26px 14px; padding: 32px 16px; }
    .stat-item strong { font-size: 28px; }
    .cta-banner { padding: 30px 24px; text-align: center; flex-direction: column; align-items: center; justify-content: center; }
    .cta-banner h2 { font-size: 22px; }
    .cta-banner .btn { width: 100%; max-width: 320px; justify-content: center; }
    .gallery { flex-direction: column-reverse; }
    .gallery__thumbs { flex-direction: row; width: auto; flex-wrap: wrap; }
    .gallery__thumb { width: 64px; height: 64px; }
    .gallery__main { cursor: default; }
    .product-specs th { width: 140px; }
    .section { padding: 40px 0; }
    .product { padding: 24px 0; }
    .related { margin-top: 36px; }
    .page-head { padding: 22px 0; }
    .add-row { gap: 10px; }
    .add-row .btn { flex: 1; justify-content: center; }

    /* cart table -> cards */
    .cart-table { border: 0; background: transparent; }
    .cart-table thead { display: none; }
    .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; }
    .cart-table tr { display: grid; grid-template-columns: 72px 1fr auto;
        grid-template-areas: "img name remove" "img price price" "img qty total";
        column-gap: 12px; row-gap: 8px; align-items: center;
        background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 12px; margin-bottom: 12px; }
    .cart-table td { border: 0; padding: 0; }
    .cart-item__media { grid-area: img; align-self: start; width: 72px; }
    .cart-item__cell--name { grid-area: name; }
    .cart-item__cell--remove { grid-area: remove; justify-self: end; align-self: start; }
    .cart-item__cell--price { grid-area: price; color: var(--muted); font-size: 13px; }
    .cart-item__cell--price::before { content: attr(data-label) " : "; }
    .cart-item__cell--qty { grid-area: qty; }
    .cart-item__cell--total { grid-area: total; text-align: right; }
    .cart-item__cell--total::before { content: attr(data-label) " : "; color: var(--muted); font-weight: 400; font-size: 11.5px; }
    .cart-totals { position: static; }
    .cart-totals__row--grand { font-size: 17px; }
}
@media (max-width: 560px) {
    .container { padding: 0 14px; }
    /* features - horizontal scroll on small mobile */
    .features__inner { display: flex; overflow-x: auto; scrollbar-width: none; }
    .features__inner::-webkit-scrollbar { display: none; }
    .feature { flex: 0 0 130px; border-right: 1px solid var(--border); border-bottom: 0; min-width: 0; }
    .feature:last-child { border-right: 0; }
    .footer__top { grid-template-columns: 1fr; }
    .logo__mark { font-size: 24px; }
    .section__title { font-size: 22px; }
    .topbar__contact { display: none; }
    .topbar__inner { justify-content: center; }
    .header-main__inner { gap: 12px; min-height: 60px; }
    .cat-card { padding: 18px 10px 14px; gap: 10px; }
    .cat-card__icon { width: 64px; height: 64px; }
    .cat-card__name { font-size: 12px; }
    .product-card__title { font-size: 12.5px; }
    .product-card { padding: 10px; }
    .product__title { font-size: 23px; }
    .product__price { font-size: 23px; }
    .page-head__title { font-size: 21px; }
    .breadcrumb { font-size: 11.5px; }
}
@media (max-width: 380px) {
    .feature { flex: 0 0 110px; }
    .header-actions { gap: 10px; }
}
