/* ═══════════════════════════════════════════════════════════
   Wrexio — Global stylesheet
   Colours, fonts and price typography are overridable at runtime
   from the settings table (see includes/functions.php theme_css()).
   ═══════════════════════════════════════════════════════════ */

:root {
    --primary-brand: #007a65;
    --primary-brand-dark: #006154;
    --nav-bg: #2563eb;                 /* main navigation strip (decoupled) */
    --categories-btn-bg: #005243;      /* Categories dropdown button (decoupled) */
    --footer-bg: #1e3a8a;              /* footer canvas (decoupled) */
    --accent-gold: #0f172a;
    --accent-gold-hover: #1e293b;
    --action-blue: #2563eb;
    --action-blue-hover: #1d4ed8;
    --discount-green: #007a65;
    --bg-main: #ffffff;
    --bg-page: #f4f6f9;   /* subtle light-gray page background so white cards pop */
    --surface-light: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border-subtle: #e2e8f0;
    --danger: #dc2626;
    --warning-bg: #fff4e5;
    --warning-border: #f5b971;
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-sans: 'Inter', 'DM Sans', system-ui, sans-serif;
    --font-headings: 'Playfair Display', 'Georgia', serif;  /* admin-configurable */
    --font-prices: 'Inter', sans-serif;   /* prices: ALWAYS clean bold sans-serif */
    /* Homepage per-section type sizes (admin-configurable) */
    --size-hero-title: 46px;
    --size-section-title: 26px;
    --size-story-title: 30px;
    --size-features-title: 26px;
    --size-newsletter-title: 28px;
    --radius-standard: 4px;
    --shadow-card: 0 1px 3px rgba(15, 23, 42, .08);
    --shadow-hover: 0 10px 28px rgba(15, 23, 42, .12);
}

/* Prices must never render in a serif face. */
.price, .price-now, .price-detail { font-family: var(--font-prices) !important; font-weight: 800; }

* { box-sizing: border-box; }

html { overflow-y: scroll; }   /* always reserve scrollbar so centred content never shifts */
html, body {
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;         /* guard against accidental horizontal scroll shifting layout */
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--bg-page);
    font-size: 15px;
    line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-headings); font-weight: 700; line-height: 1.2; }
/* Outline icons inherit the surrounding text colour and never carry a fill. */
svg { display: inline-block; vertical-align: middle; }

.container { max-width: 1460px; margin: 0 auto; padding: 0 40px; }
.legal-content { line-height: 1.8; color: var(--text-dark); font-size: 15.5px; }
.legal-content p { margin: 0 0 16px; }
.serif { font-family: var(--font-serif); }
.muted { color: var(--text-muted); }
.text-gold { color: var(--accent-gold); }
.strike { text-decoration: line-through; color: var(--text-muted); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px; justify-content: center;
    border: none; cursor: pointer; font-family: var(--font-sans); font-weight: 600;
    padding: 11px 20px; border-radius: var(--radius-standard); font-size: 14px;
    transition: background .15s, box-shadow .15s, transform .05s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary-brand); color: #fff; }
.btn-primary:hover { background: var(--nav-bg, #0f172a); }
.btn-gold { background: var(--accent-gold); color: #fff; }
.btn-gold:hover { background: var(--accent-gold-hover); }
.btn-blue { background: var(--action-blue); color: #fff; }
.btn-blue:hover { background: var(--action-blue-hover); }
.btn-outline { background: #fff; border: 1px solid var(--border-subtle); color: var(--text-dark); }
.btn-outline:hover { border-color: var(--primary-brand); color: var(--primary-brand); }
.btn-dark { background: #1e2233; color: #fff; }
.btn-dark:hover { background: #0f172a; }
.btn-light { background: #fff; color: var(--text-dark); }
.btn-light:hover { background: #f1f5f9; }
.btn-block { width: 100%; }
.btn-lg { padding: 14px 26px; font-size: 15px; }

/* ── Top announcement strip ────────────────────────────────── */
.top-strip {
    background: var(--primary-brand); color: #fff; font-size: 12.5px;
}
.top-strip .container { display: flex; justify-content: space-between; align-items: center; height: 38px; flex-wrap: wrap; gap: 6px; }
.top-strip a { color: #d7f2ec; }
.top-strip .strip-item { display: inline-flex; align-items: center; gap: 6px; }

/* ── Brand row ─────────────────────────────────────────────── */
.brand-row { background: var(--bg-main); border-bottom: 1px solid var(--border-subtle); }
.brand-row .container { display: flex; align-items: center; gap: 28px; height: 84px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo .mark {
    width: 34px; height: 34px; display: grid; place-items: center; color: var(--primary-brand);
}
.logo .word { font-family: var(--font-headings); font-size: 26px; font-weight: 800; color: var(--primary-brand); letter-spacing: .5px; }
.logo .word span { color: var(--accent-gold); }

.search-form { flex: 1 1 auto; display: flex; min-width: 0; }   /* fill row so actions sit at the right edge */
.search-form input {
    flex: 1; border: 1px solid var(--border-subtle); border-right: none;
    border-radius: var(--radius-standard) 0 0 var(--radius-standard);
    padding: 11px 16px; font-size: 14px; outline: none; font-family: var(--font-sans);
}
.search-form input:focus { border-color: var(--primary-brand); }
.search-form button {
    background: var(--accent-gold); color: #fff; border: none; cursor: pointer;
    padding: 0 22px; border-radius: 0 var(--radius-standard) var(--radius-standard) 0; font-size: 16px;
}
.search-form button:hover { background: var(--accent-gold-hover); }

.header-actions { display: flex; align-items: center; gap: 22px; }
.header-actions .h-link { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-dark); }
.header-actions .h-link .ico { display: inline-flex; color: var(--text-dark); }
.header-actions .h-link small { display: block; color: var(--text-muted); font-size: 11px; }
.header-actions .h-link b { font-size: 13.5px; }
.header-actions .h-link .label { display: block; }
.cart-link { position: relative; }
.cart-badge {
    position: absolute; top: -8px; left: 14px; background: var(--accent-gold); color: #fff;
    font-size: 10px; min-width: 18px; height: 18px; border-radius: 9px; display: grid; place-items: center;
    padding: 0 4px; font-weight: 700;
}

/* ── Navigation bar ────────────────────────────────────────── */
.mainnav { background: var(--nav-bg); }
.mainnav .container { display: flex; align-items: center; gap: 4px; height: 50px; }
.mainnav a, .mainnav .nav-item > span {
    color: #eafaf6; font-size: 13.5px; font-weight: 500; padding: 0 16px; height: 50px;
    display: inline-flex; align-items: center; cursor: pointer; position: relative;
}
.mainnav a:hover, .mainnav .nav-item:hover > span { background: rgba(255,255,255,.1); }
.nav-item { position: relative; }
.cat-anchor { background: var(--categories-btn-bg); font-weight: 600 !important; }
.dropdown {
    position: absolute; top: 50px; left: 0; min-width: 250px; background: #fff;
    border: 1px solid var(--border-subtle); box-shadow: var(--shadow-hover); border-radius: 0 0 6px 6px;
    z-index: 60; display: none; padding: 6px 0;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a { color: var(--text-dark) !important; height: auto !important; padding: 9px 18px !important; display: block; font-size: 13.5px; }
.dropdown a:hover { background: var(--surface-light); color: var(--primary-brand) !important; }

/* ── Breadcrumb strip ──────────────────────────────────────── */
/* Slim, left-aligned breadcrumb bar (full path) */
.page-strip { background: var(--surface-light); border-bottom: 1px solid var(--border-subtle); padding: 13px 0; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; font-size: 13px; color: var(--text-muted); }
.crumbs a { color: var(--text-muted); }
.crumbs a:hover { color: var(--primary-brand); }
.crumbs .sep { margin: 0 8px; color: var(--border-subtle); }
.crumbs .current { color: var(--text-dark); font-weight: 600; }

/* ── Section titles ────────────────────────────────────────── */
.section { padding: 46px 0; }
.section-title { font-size: var(--size-section-title); margin: 0 0 6px; text-align: center; }
.section-sub { text-align: center; color: var(--text-muted); margin: 0 0 30px; }
.title-left { text-align: left; }

/* ── Product grid + cards ──────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.product-card {
    background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-standard);
    padding: 12px; position: relative; display: flex; flex-direction: column;
    transition: box-shadow .18s, transform .18s, border-color .18s;
}
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); border-color: #d4dbe0; }
.card-badge {
    position: absolute; top: 12px; left: 12px; z-index: 3;
    border: none; color: #fff; background: var(--nav-bg);
    font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px;
}
.card-badge.save-pill { font-size: 13px; padding: 5px 15px; }
.card-img { height: 190px; display: grid; place-items: center; margin-bottom: 12px; }
.card-img img { max-height: 190px; object-fit: contain; }
.card-cat { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 5px; }
.card-name { font-family: var(--font-sans); font-size: 14px; font-weight: 600; line-height: 1.35; margin: 0 0 12px; min-height: 38px; }
.card-name a:hover { color: var(--primary-brand); }
.card-foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; }
.price-block .price-now { font-family: var(--font-prices); font-size: 21px; font-weight: 800; color: var(--accent-gold); line-height: 1.1; }
.price-block .price-old { font-size: 13px; }
.price-block .vat { font-size: 10.5px; color: var(--text-muted); }
/* Flat WHITE button with a single-colour cart outline (never solid/house icon) */
.add-cart-btn {
    width: 42px; height: 42px; border-radius: var(--radius-standard); background: #fff;
    border: 1px solid var(--border-subtle); color: var(--primary-brand); cursor: pointer;
    display: grid; place-items: center; transition: border-color .15s, box-shadow .15s, color .15s;
}
.add-cart-btn:hover { border-color: var(--primary-brand); box-shadow: var(--shadow-hover); }

/* ── Hero (diamond image collage + text) ─────────────────────── */
.hero-diamond {
    background:
        radial-gradient(circle at 1px 1px, rgba(100,116,139,.10) 1px, transparent 0) 0 0 / 26px 26px,
        linear-gradient(120deg, #eceefb 0%, #f4f5fb 60%, #eef0f8 100%);
    overflow: hidden;
}
.hero-diamond-grid { display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: 20px; min-height: 460px; }
.hero-diamonds { position: relative; height: 460px; }
.diamond {
    position: absolute; top: 50%; width: 232px; height: 232px; border-radius: 22px; overflow: hidden;
    border: 5px solid #fff; box-shadow: 0 18px 40px rgba(15,23,42,.18);
    transform: translateY(-50%) rotate(45deg);
}
.diamond img { width: 100%; height: 100%; object-fit: cover; transform: rotate(-45deg) scale(1.42); }
.diamond.d1 { left: 20px;  width: 210px; height: 210px; z-index: 2; }
.diamond.d2 { left: 210px; z-index: 3; }
.diamond.d3 { left: 405px; width: 210px; height: 210px; z-index: 2; }
.deco-diamond { position: absolute; top: 50%; border-radius: 18px; background: #2b2f45; transform: translateY(-50%) rotate(45deg); z-index: 1; }
.deco-diamond.deco-1 { left: -70px; width: 200px; height: 200px; }
.deco-diamond.deco-2 { left: 300px; top: 16%; width: 90px; height: 90px; background: rgba(43,47,69,.85); }
.hero-copy { padding: 0 10px; }
.hero-copy h1 { font-size: var(--size-hero-title); margin: 0 0 14px; color: var(--text-dark); line-height: 1.12; }
.hero-copy p { font-size: 17px; color: var(--text-muted); margin: 0 0 26px; max-width: 460px; }

/* ── Value strip (colour bar, big filled icons in bordered tiles) ── */
.value-strip { background: var(--nav-bg); color: #fff; }
.value-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 32px 20px; }
.value-item { display: flex; align-items: center; gap: 16px; }
.value-item .ico-tile { flex: 0 0 auto; width: 60px; height: 60px; border-radius: 12px; border: 1.5px solid rgba(255,255,255,.5); display: grid; place-items: center; color: #fff; }
.value-item b { display: block; font-size: 17.5px; margin-bottom: 3px; }
.value-item small { color: rgba(255,255,255,.85); font-size: 14px; line-height: 1.35; }

/* ── Features cards ("Why Choose Wrexio?") — bigger icons + text ── */
.features { background: var(--surface-light); }
.features .section-title { margin-bottom: 40px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card { background: #fff; border: 1px solid var(--border-subtle); border-radius: 8px; padding: 44px 34px; text-align: center; }
.feature-card .ico { color: var(--primary-brand); margin-bottom: 20px; display: inline-flex; }
.feature-card h4 { font-family: var(--font-headings); font-size: 22px; margin: 0 0 12px; }
.feature-card p { color: var(--text-muted); font-size: 15.5px; line-height: 1.6; margin: 0; }

/* ── Trust strip ───────────────────────────────────────────── */
.trust-strip { background: var(--surface-light); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.trust-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 26px 20px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item .ico { font-size: 26px; color: var(--primary-brand); }
.trust-item b { display: block; font-size: 14px; }
.trust-item small { color: var(--text-muted); font-size: 12px; }

/* ── Category chips ────────────────────────────────────────── */
.cat-chips { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.cat-chip {
    background: #fff; border: 1px solid var(--border-subtle); border-radius: 6px; padding: 18px 10px;
    text-align: center; transition: .15s;
}
.cat-chip:hover { border-color: var(--primary-brand); box-shadow: var(--shadow-card); transform: translateY(-2px); }
.cat-chip .ico { font-size: 26px; }
.cat-chip span { display: block; font-size: 12.5px; margin-top: 8px; font-weight: 500; }

/* ── Forms ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 15px; }
label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
label .req { color: var(--danger); }
input[type=text], input[type=email], input[type=password], input[type=number],
input[type=tel], input[type=search], select, textarea {
    width: 100%; padding: 11px 13px; border: 1px solid var(--border-subtle);
    border-radius: var(--radius-standard); font-family: var(--font-sans); font-size: 14px;
    background: #fff; outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--primary-brand); box-shadow: 0 0 0 3px rgba(0,122,101,.1); }
textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkbox-line { display: flex; align-items: flex-start; gap: 9px; font-weight: 500; font-size: 13.5px; margin: 10px 0; }
.checkbox-line input { width: auto; margin-top: 3px; }
.checkout-link { color: var(--text-dark); font-weight: 700; text-decoration: none; transition: color .15s; }
.checkout-link:hover { color: var(--primary-brand); }

/* ── Cards / panels ────────────────────────────────────────── */
.panel { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-standard); padding: 22px; }
.panel-title { font-size: 18px; margin: 0 0 16px; }
.alert { padding: 12px 16px; border-radius: var(--radius-standard); font-size: 13.5px; margin-bottom: 16px; }
.alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }
.alert-success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #047857; }
.alert-info { background: #eff6ff; border: 1px solid #bfdbfe; color: #1d4ed8; }

/* ── Tables ────────────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.data-table th, .data-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border-subtle); }
.data-table th { background: var(--surface-light); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .4px; color: var(--text-muted); }
.spec-table th { width: 40%; }

.status-pill { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11.5px; font-weight: 600; }
.status-pending_verification { background: #fff4e5; color: #b45309; }
.status-processing { background: #eff6ff; color: #1d4ed8; }
.status-shipped { background: #f0f9ff; color: #0369a1; }
.status-delivered { background: #ecfdf5; color: #047857; }
.status-cancelled { background: #fef2f2; color: #b91c1c; }
.status-open { background: #fff4e5; color: #b45309; }
.status-answered { background: #eff6ff; color: #1d4ed8; }
.status-closed { background: #f1f5f9; color: #475569; }

/* ── Footer ────────────────────────────────────────────────── */
/* Footer — white main columns + coloured bottom bar (decoupled --footer-bg) */
.site-footer { background: #fff; color: #475569; margin-top: 0; font-size: 15px; border-top: 1px solid var(--border-subtle); }
.footer-cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 34px; padding: 44px 0 40px; }
.site-footer h4 { color: var(--text-dark); font-family: var(--font-headings); font-size: 19px; font-weight: 700; letter-spacing: 0; text-transform: none; margin: 0 0 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 7px; }
.site-footer a { color: #475569; }
.site-footer a:hover { color: var(--primary-brand); }
.footer-identity p { margin: 9px 0; line-height: 1.5; }
.footer-identity strong { color: var(--text-dark); font-weight: 700; }
.footer-bottom-band { background: var(--footer-bg); color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding: 20px 0; font-size: 14px; }
.footer-bottom .fine { font-size: 12px; opacity: .82; margin-top: 4px; }
.pay-badges { display: flex; gap: 10px; align-items: center; }
.pay-badges span { background: #fff; color: #1e293b; padding: 7px 14px; border-radius: 5px; font-weight: 700; font-size: 12px; }
.pay-badges img { height: 34px; background: #fff; padding: 6px 12px; border-radius: 5px; object-fit: contain; }
.back-to-top { position: fixed; right: 20px; bottom: 20px; width: 46px; height: 46px; border-radius: 10px; background: var(--nav-bg, #0f172a); border: none; color: #fff; cursor: pointer; display: grid; place-items: center; z-index: 60; box-shadow: 0 8px 22px rgba(15,23,42,.28); transition: background .15s, transform .15s; }
.back-to-top:hover { background: var(--primary-brand); transform: translateY(-2px); }

/* ── Layout helpers ────────────────────────────────────────── */
.split { display: grid; gap: 30px; }
.split-shop { grid-template-columns: 280px 1fr; }
.split-cart { grid-template-columns: 1fr 360px; }
.split-product { grid-template-columns: 1fr 1fr; align-items: start; }
.split-checkout { grid-template-columns: 1fr 400px; }
.sticky-col { position: sticky; top: 20px; }

/* ── Sidebar filter ────────────────────────────────────────── */
.filter-box { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-standard); padding: 18px; margin-bottom: 18px; }
.filter-box h4 { font-family: var(--font-sans); font-size: 13px; text-transform: uppercase; letter-spacing: .5px; margin: 0 0 14px; color: var(--primary-brand); }
.filter-list { list-style: none; margin: 0; padding: 0; }
.filter-list li { margin-bottom: 9px; }
.filter-list label { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 13.5px; margin: 0; cursor: pointer; }
.filter-list label input { width: auto; }
.filter-list .count { margin-left: auto; color: var(--text-muted); font-size: 12px; }
.range-vals { display: flex; justify-content: space-between; font-size: 13px; margin: 12px 0; font-weight: 600; }
input[type=range] { width: 100%; accent-color: var(--primary-brand); }

/* ── Quantity stepper ──────────────────────────────────────── */
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--border-subtle); border-radius: var(--radius-standard); overflow: hidden; }
.qty-stepper button { width: 34px; height: 38px; border: none; background: var(--surface-light); cursor: pointer; font-size: 16px; }
.qty-stepper button:hover { background: #e8eceb; }
.qty-stepper input {
    width: 46px; height: 38px; padding: 0; border: none;
    border-left: 1px solid var(--border-subtle); border-right: 1px solid var(--border-subtle);
    text-align: center; border-radius: 0; font-size: 14px; font-weight: 600; color: var(--text-dark);
    -moz-appearance: textfield; appearance: textfield;
}
/* Hide native number-input spin buttons that were overlapping the digit */
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ── Order summary ledger ──────────────────────────────────── */
.ledger-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-subtle); font-size: 14px; }
.ledger-row.total { font-size: 20px; font-weight: 700; border-bottom: none; padding-top: 16px; }
.ledger-row.total .val { font-family: var(--font-prices); font-weight: 800; }
.ledger-discount {
    color: var(--discount-green); background: #e7f5f1; border: 1px solid #b6e2d6;
    border-radius: var(--radius-standard); padding: 10px 12px; margin: 6px 0;
    font-weight: 600;
}
/* Discount value must never wrap across lines */
.ledger-discount .val { color: var(--discount-green); font-family: var(--font-prices); font-weight: 800; white-space: nowrap; display: inline-flex; align-items: center; }
.ledger-discount a { color: var(--discount-green); }
.ledger-note { font-size: 11.5px; color: var(--text-muted); text-align: right; }

/* ── Processing overlay ────────────────────────────────────── */
.processing-overlay {
    position: fixed; inset: 0; background: rgba(255,255,255,.97); z-index: 999;
    display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 20px;
}
.processing-overlay.active { display: flex; }
.processing-overlay h3 { font-size: 26px; margin: 0 0 10px; }
.progress-track { width: min(440px, 90vw); height: 8px; background: var(--surface-light); border-radius: 20px; overflow: hidden; margin: 22px 0 10px; }
.progress-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--primary-brand), var(--accent-gold)); transition: width .3s; }
.progress-pct { font-weight: 700; color: var(--primary-brand); }
.processing-meta { color: var(--text-muted); font-size: 13px; margin-top: 12px; line-height: 1.7; }

/* ── Bank transfer verification ─────────────────────────────── */
.bv-wrap { background: var(--surface-light); }
.bv-card { background: #fff; border: 1px solid var(--border-subtle); border-radius: 16px; box-shadow: 0 8px 30px rgba(15,23,42,.05); padding: 40px; }
.bv-badge { display: inline-block; background: #eef2ff; color: var(--action-blue); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 6px; }
.bv-title { font-size: 30px; margin: 14px 0 10px; }
.bv-sub { color: var(--text-muted); max-width: 640px; line-height: 1.6; margin: 0 0 26px; }

.bv-status { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.bv-stat { background: #fff; border: 1px solid var(--border-subtle); border-radius: 12px; padding: 18px 20px; }
.bv-stat.hl { background: #eff4ff; border-color: #c7d7fe; }
.bv-stat .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); margin-bottom: 6px; }
.bv-stat .val { font-size: 22px; font-weight: 800; font-family: var(--font-prices); }
.bv-stat-top { display: flex; align-items: center; gap: 12px; }
.bv-stat-ico { font-size: 22px; color: var(--action-blue); }
.bv-progress { height: 6px; background: #d7e2fb; border-radius: 20px; overflow: hidden; margin-top: 14px; }
.bv-progress-fill { height: 100%; width: 100%; background: var(--action-blue); transition: width 1s linear; }

.bv-ribbon { background: var(--warning-bg); border: 1px solid var(--warning-border); color: #b45309; padding: 13px 18px; border-radius: 10px; font-size: 13.5px; margin-bottom: 24px; }

.bv-box { border: 1px solid var(--border-subtle); border-radius: 12px; padding: 24px; margin-bottom: 24px; }
.bv-box-title { font-size: 19px; margin: 0 0 18px; }

.copy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 0; }
.copy-box { background: #fff; border: 1px solid var(--border-subtle); border-radius: 10px; padding: 14px 16px; }
.copy-box .cb-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.copy-box .k { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); }
.copy-box .v { font-weight: 700; font-size: 15px; word-break: break-all; letter-spacing: .3px; }
.copy-btn { background: var(--action-blue); border: none; color: #fff; cursor: pointer; font-weight: 600; font-size: 12px; padding: 5px 14px; border-radius: 6px; white-space: nowrap; }
.copy-btn:hover { background: var(--action-blue-hover); }

.manifest { border: 1px solid var(--border-subtle); border-radius: 12px; overflow: hidden; margin-bottom: 26px; }
.mf-row { padding: 16px 22px; border-bottom: 1px solid var(--border-subtle); }
.mf-row:last-child { border-bottom: none; }
.mf-row:nth-child(even) { background: #f8fafc; }
.mf-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mf-label { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); margin-bottom: 5px; }
.mf-value { font-size: 15px; color: var(--text-dark); line-height: 1.5; word-break: break-word; }

.bv-uplabel { font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); font-weight: 700; margin-bottom: 12px; }
.bv-dropzone { display: block; border: 2px dashed #c7d2e0; border-radius: 12px; padding: 40px 20px; text-align: center; cursor: pointer; transition: .15s; background: #fff; }
.bv-dropzone:hover, .bv-dropzone.drag { border-color: var(--action-blue); background: #f5f8ff; }
.bv-dropzone .arrow { color: var(--action-blue); margin-bottom: 8px; }
.bv-dropzone .dz-main { font-size: 15px; }
.bv-dropzone .dz-link { color: var(--action-blue); }
.bv-dropzone .dz-hint { color: var(--text-muted); font-size: 12.5px; margin-top: 6px; }
.bv-dropzone .dz-file { color: var(--action-blue); font-weight: 600; font-size: 13px; margin-top: 8px; }

.bv-bullets { margin: 0; padding-left: 20px; color: var(--text-muted); font-size: 14px; line-height: 1.9; }
.bv-secure { background: #eff6ff; border: 1px solid #dbe7ff; color: #1e40af; border-radius: 10px; padding: 13px 18px; font-size: 13.5px; margin-bottom: 24px; }
.bv-save .bv-field { background: #f8fafc; border: 1px solid var(--border-subtle); border-radius: 10px; padding: 12px 16px; margin: 14px 0; }
.bv-url { background: #f8fafc; border: 1px solid var(--border-subtle); border-radius: 8px; padding: 10px 14px; font-size: 12.5px; color: var(--text-muted); word-break: break-all; margin-top: 10px; }
@media (max-width: 680px){ .bv-status, .copy-grid, .mf-row.two { grid-template-columns: 1fr; } .bv-card { padding: 22px; } }

/* ── Promo card (mint gradient, pill badge, corner circle) ──── */
.promo-card {
    position: relative; overflow: hidden; text-align: center; margin: 4px 0 2px;
    background: linear-gradient(135deg, #e8f6ef 0%, #eef1fb 100%);
    border: 1px solid #d8ece3; border-radius: 16px; padding: 24px 22px;
}
.promo-card::after {
    content: ''; position: absolute; top: -34px; right: -34px;
    width: 120px; height: 120px; border-radius: 50%; background: rgba(0,122,101,.08);
}
.promo-badge {
    position: relative; display: inline-block; background: rgba(255,255,255,.75);
    color: var(--primary-brand); font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; padding: 5px 15px; border-radius: 20px;
}
.promo-title { position: relative; font-family: var(--font-headings); font-size: 21px; font-weight: 700; margin: 14px 0 8px; }
.promo-text { position: relative; color: var(--text-muted); font-size: 13px; margin: 0 auto; max-width: 320px; line-height: 1.6; }

/* ── Utility bars (checkout) ───────────────────────────────── */
.util-bar { background: var(--surface-light); border: 1px solid var(--border-subtle); border-radius: var(--radius-standard); padding: 12px 16px; margin-bottom: 12px; font-size: 13.5px; }
.util-bar a { color: var(--action-blue); font-weight: 600; }

/* ── Product detail ────────────────────────────────────────── */
.product-media { background: #fff; border: 1px solid var(--border-subtle); border-radius: 8px; padding: 30px; display: grid; place-items: center; min-height: 380px; }
.product-media img { max-height: 380px; object-fit: contain; }
.product-gallery { position: relative; background: #fff; border: 1px solid var(--border-subtle); border-radius: 8px; padding: 30px; display: grid; place-items: center; min-height: 420px; }
.product-gallery img { max-height: 400px; object-fit: contain; }
.zoom-btn {
    position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 8px;
    background: #fff; border: 1px solid var(--border-subtle); color: var(--text-dark);
    display: grid; place-items: center; cursor: pointer; transition: .15s; z-index: 2;
}
.zoom-btn:hover { border-color: var(--primary-brand); color: var(--primary-brand); }
.thumb-row { display: flex; gap: 10px; margin-top: 14px; overflow-x: auto; padding-bottom: 4px; }
.thumb-row .thumb { flex: 0 0 auto; width: 74px; height: 74px; border: 1px solid var(--border-subtle); border-radius: 8px; padding: 6px; cursor: pointer; display: grid; place-items: center; transition: border-color .15s; }
.thumb-row .thumb img { max-height: 100%; object-fit: contain; }
.thumb-row .thumb:hover { border-color: #c7cfd6; }
.thumb-row .thumb.active { border-color: var(--primary-brand); box-shadow: 0 0 0 1px var(--primary-brand); }
.price-detail { font-family: var(--font-prices); font-size: 34px; color: var(--accent-gold); font-weight: 800; }

/* Zoom lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(15,23,42,.85); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 30px; cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 90vh; object-fit: contain; background: #fff; border-radius: 8px; padding: 10px; }

/* Grouped technical specifications (two-column masonry) */
.spec-groups { columns: 2; column-gap: 26px; }
.spec-group { break-inside: avoid; margin-bottom: 24px; border: 1px solid var(--border-subtle); border-radius: 8px; overflow: hidden; }
.spec-group-title { background: var(--surface-light); font-weight: 700; font-size: 15px; padding: 12px 16px; border-bottom: 1px solid var(--border-subtle); }
.spec-grid { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.spec-grid th, .spec-grid td { text-align: left; padding: 11px 16px; vertical-align: top; }
.spec-grid th { width: 55%; font-weight: 500; color: var(--text-dark); }
.spec-grid td { color: var(--text-muted); }
.spec-grid tr:nth-child(even) { background: #fafbfc; }
.spec-grid tr + tr { border-top: 1px solid var(--border-subtle); }
.spec-check { color: #16a34a; display: inline-flex; }
.spec-no { color: var(--text-muted); }
@media (max-width: 768px) { .spec-groups { columns: 1; } }

/* ── Contact ───────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 30px; }
.contact-card { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-standard); padding: 22px; text-align: center; }
.contact-card .ico { font-size: 28px; color: var(--primary-brand); margin-bottom: 10px; }
.contact-card b { display: block; margin-bottom: 6px; }
.contact-card p { color: var(--text-muted); margin: 2px 0; font-size: 13px; }
.map-embed { border: 0; width: 100%; height: 320px; border-radius: 8px; }

/* ── Auth split ────────────────────────────────────────────── */
.auth-split { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }

/* ── Our Story band (full-width image + left colour gradient overlay) ── */
.story-band { position: relative; background-size: cover; background-position: center right; overflow: hidden; }
.story-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(100deg, var(--story-color) 0%, var(--story-color) 34%, rgba(0,0,0,0) 72%);
}
.story-inner { position: relative; z-index: 2; padding: 78px 20px; }
.story-copy { max-width: 520px; color: #fff; }
.story-copy h2 { color: #fff; font-size: var(--size-story-title); margin: 0 0 18px; line-height: 1.15; }
.story-copy p { color: rgba(255,255,255,.92); margin: 0 0 26px; line-height: 1.7; font-size: 16px; }

/* ── Newsletter band — full-width, left-aligned (bg from settings) ── */
.newsletter-band { background-size: cover; background-position: center; padding: 66px 0; }
.newsletter-inner { max-width: 560px; }
.newsletter-band h2 { font-size: var(--size-newsletter-title); margin: 0 0 12px; }
.newsletter-inner p { margin: 0 0 22px; line-height: 1.6; font-size: 15px; color: var(--text-muted); }
.newsletter-band.on-image, .newsletter-band.on-image h2 { color: #fff; }
.newsletter-band.on-image .newsletter-inner p { color: rgba(255,255,255,.9); }
.newsletter-form { display: flex; max-width: 540px; }
.newsletter-form input { flex: 1; background: #fff; border: none; padding: 15px 18px; border-radius: 6px 0 0 6px; font-size: 14px; }
.newsletter-form .btn { border-radius: 0 6px 6px 0; }
@media (max-width: 560px){ .newsletter-form { flex-direction: column; gap: 10px; } .newsletter-form input, .newsletter-form .btn { border-radius: 6px; } }

/* ── Payment methods (clean, borderless, centered radios) ──── */
.pay-methods { border-top: 1px solid var(--border-subtle); }
.pay-option { border-bottom: 1px solid var(--border-subtle); padding: 16px 0; text-align: center; }
.pay-option .pay-head { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 700; font-size: 15px; cursor: pointer; }
.pay-option .pay-head input[type=radio] { width: 18px; height: 18px; accent-color: var(--primary-brand); cursor: pointer; }
.pay-body { display: none; margin-top: 14px; }
.pay-option.active .pay-body { display: block; }
.pay-sub { color: var(--text-muted); font-size: 13px; max-width: 380px; margin: 0 auto 14px; line-height: 1.55; }
.card-accordion { text-align: left; }   /* card fields stay left-aligned */

/* ── Mobile menu button (hamburger in brand row) ──────────── */
.mobile-menu-btn { display: none; background: none; border: none; color: var(--text-dark); cursor: pointer; padding: 4px; align-items: center; }
.nav-links { display: flex; align-items: center; }

/* ── Product buy controls (qty + Add To Cart, then Buy Now) ── */
.buy-form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 14px; max-width: 480px; }
.buy-row { display: flex; gap: 12px; align-items: stretch; }
.buy-row .qty-stepper { flex: 0 0 auto; }
.add-cart-main { flex: 1; }
.buy-now-main { width: 100%; }

/* ── Cart items (responsive: table-like on desktop, cards on mobile) ── */
.cart-head, .cart-item { display: grid; grid-template-columns: 2.6fr 1fr 1.3fr 1fr; align-items: center; gap: 12px; }
.cart-head { padding: 12px 14px; background: var(--surface-light); border: 1px solid var(--border-subtle); border-radius: var(--radius-standard) var(--radius-standard) 0 0; font-size: 11.5px; text-transform: uppercase; letter-spacing: .4px; color: var(--text-muted); font-weight: 600; }
.cart-item { padding: 16px 14px; border: 1px solid var(--border-subtle); border-top: none; }
.cart-item:last-child { border-radius: 0 0 var(--radius-standard) var(--radius-standard); }
.ci-product { display: flex; align-items: center; gap: 12px; position: relative; }
.ci-product img { width: 60px; height: 60px; object-fit: contain; flex: 0 0 auto; }
.ci-name { font-weight: 600; font-size: 14px; line-height: 1.35; }
.ci-name:hover { color: var(--primary-brand); }
.ci-remove { color: var(--danger); font-size: 20px; line-height: 1; text-decoration: none; }
.ci-price { color: var(--text-dark); }
.ci-total { font-weight: 700; }
.cart-item [data-label]::before { display: none; content: attr(data-label); }
@media (max-width: 680px) {
    .cart-head { display: none; }
    .cart-item { grid-template-columns: 1fr; gap: 12px; border: 1px solid var(--border-subtle); border-radius: 10px; margin-bottom: 14px; padding: 16px; }
    .cart-item:last-child { border-radius: 10px; }
    .ci-product { padding-right: 26px; }
    .ci-remove { position: absolute; top: 0; right: 0; }
    .cart-item .ci-price, .cart-item .ci-qty, .cart-item .ci-total { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #f1f5f9; padding-top: 12px; }
    .cart-item [data-label]::before { display: inline; font-weight: 600; color: var(--text-muted); font-size: 13px; }
}

/* ── Product page extras: stock line, meta, description ── */
.stock-avail { color: var(--action-blue); font-weight: 600; font-size: 15px; margin-bottom: 14px; }
.prod-meta { font-size: 14px; color: var(--text-dark); line-height: 2; margin-bottom: 16px; }
.prod-meta .pm-label { font-weight: 700; }
.prod-desc { color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ── Mobile slide-in drawer menu ── */
.drawer-overlay { position: fixed; inset: 0; background: rgba(15,23,42,.5); z-index: 998; opacity: 0; visibility: hidden; transition: opacity .25s; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.mobile-drawer {
    position: fixed; top: 0; left: 0; height: 100%; width: 300px; max-width: 84vw; background: #fff; z-index: 999;
    transform: translateX(-100%); transition: transform .28s ease; box-shadow: 4px 0 24px rgba(0,0,0,.15);
    display: flex; flex-direction: column; overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--border-subtle); }
.drawer-logo { font-family: var(--font-headings); font-size: 22px; font-weight: 800; color: var(--primary-brand); }
.drawer-logo span { color: var(--accent-gold); }
.drawer-close { background: none; border: none; font-size: 30px; line-height: 1; color: var(--text-dark); cursor: pointer; }
.drawer-tabs { display: flex; gap: 24px; padding: 14px 20px 0; border-bottom: 1px solid var(--border-subtle); }
.drawer-tab { background: none; border: none; padding: 0 0 12px; font-size: 15px; font-weight: 600; color: var(--text-muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.drawer-tab.active { color: var(--text-dark); border-bottom-color: var(--text-dark); }
.drawer-panel { display: none; padding: 10px 20px 20px; }
.drawer-panel.active { display: block; }
.drawer-panel > a { display: block; padding: 12px 0; font-size: 15px; font-weight: 600; color: var(--text-dark); border-bottom: 1px solid #f1f5f9; }
.drawer-panel > a:hover { color: var(--primary-brand); }
.drawer-acc { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: none; padding: 12px 0; font-size: 15px; font-weight: 600; color: var(--text-dark); cursor: pointer; border-bottom: 1px solid #f1f5f9; text-align: left; }
.drawer-acc span { transition: transform .2s; }
.drawer-acc.open span { transform: rotate(90deg); }
.drawer-sub { display: none; padding-left: 14px; }
.drawer-sub.open { display: block; }
.drawer-sub a { display: block; padding: 9px 0; font-size: 14px; color: var(--text-muted); }

/* ── Cookie consent ── */
.cookie-consent {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 900; background: #fff; border-top: 1px solid var(--border-subtle);
    box-shadow: 0 -6px 24px rgba(15,23,42,.10); padding: 18px 24px; display: none;
    align-items: center; gap: 20px; flex-wrap: wrap;
}
.cookie-consent.show { display: flex; }
.cookie-consent .cookie-body { flex: 1; min-width: 260px; }
.cookie-consent h4 { margin: 0 0 4px; font-size: 16px; }
.cookie-consent p { margin: 0; font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.cookie-consent .cookie-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-consent .cookie-close { position: absolute; top: 8px; right: 12px; background: none; border: none; font-size: 22px; color: var(--text-muted); cursor: pointer; }
@media (max-width: 680px) {
    .cookie-consent { flex-direction: column; align-items: stretch; text-align: left; padding: 22px 20px 20px; }
    .cookie-consent .cookie-actions { flex-direction: column-reverse; }
    .cookie-consent .cookie-actions .btn { width: 100%; justify-content: center; }
}

/* ── Cookie "Customize" preferences modal ── */
.cookie-modal-overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(15,23,42,.45); display: none; align-items: center; justify-content: center; padding: 20px; }
.cookie-modal-overlay.open { display: flex; }
.cookie-modal { background: #fff; border-radius: 12px; width: 660px; max-width: 100%; max-height: 90vh; display: flex; flex-direction: column; box-shadow: 0 24px 60px rgba(0,0,0,.3); overflow: hidden; }
.cm-head { display: flex; align-items: flex-start; justify-content: space-between; padding: 22px 24px 16px; border-bottom: 1px solid var(--border-subtle); }
.cm-head h3 { margin: 0; font-size: 19px; }
.cm-close { background: none; border: none; font-size: 24px; line-height: 1; color: var(--text-muted); cursor: pointer; }
.cm-body { padding: 20px 24px; overflow-y: auto; }
.cm-intro { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin: 0 0 12px; }
.cm-more { color: var(--action-blue); font-weight: 600; display: inline-block; margin-top: 4px; }
.cm-cat { border-bottom: 1px solid var(--border-subtle); }
.cm-cat:last-child { border-bottom: none; }
.cm-cat-head { width: 100%; background: none; border: none; padding: 16px 0; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-size: 15px; font-weight: 700; color: var(--text-dark); font-family: inherit; }
.cm-row { display: inline-flex; align-items: center; gap: 8px; }
.cm-chev { color: var(--text-muted); transition: transform .2s; display: inline-block; }
.cm-cat.open .cm-chev { transform: rotate(90deg); }
.cm-always { color: #16a34a; font-weight: 600; font-size: 13.5px; }
.cm-cat-body { display: none; padding: 0 0 16px; }
.cm-cat.open .cm-cat-body { display: block; }
.cm-cat-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin: 0 0 12px; }
.cm-nocookies { background: var(--surface-light); border-radius: 8px; padding: 12px 16px; font-size: 12.5px; color: var(--text-muted); }
.cm-switch { position: relative; display: inline-block; width: 40px; height: 22px; flex: 0 0 auto; }
.cm-switch input { opacity: 0; width: 0; height: 0; }
.cm-slider { position: absolute; inset: 0; background: #cbd5e1; border-radius: 20px; transition: .2s; }
.cm-slider::before { content: ''; position: absolute; height: 16px; width: 16px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: .2s; }
.cm-switch input:checked + .cm-slider { background: var(--action-blue); }
.cm-switch input:checked + .cm-slider::before { transform: translateX(18px); }
.cm-actions { display: flex; gap: 12px; padding: 16px 24px; border-top: 1px solid var(--border-subtle); }
.cm-actions .btn { flex: 1; justify-content: center; }
@media (max-width: 680px) {
    .cookie-modal { border-radius: 12px; max-height: 92vh; }
    .cm-actions { flex-direction: column-reverse; }
}

/* ── Responsive (mobile-first product grids: never single column) */
@media (max-width: 1024px) {
    .product-grid, .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .cat-chips { grid-template-columns: repeat(4, 1fr); }
    .footer-cols { grid-template-columns: 1fr 1fr; }
    .split-shop, .split-cart, .split-product, .split-checkout { grid-template-columns: 1fr; }
    /* Shop (mobile): filter+sort bar on top, products first, sidebar as a toggle */
    .split-shop .shop-mbar { display: flex; align-items: center; gap: 10px; }
    .split-shop .shop-mbar .shop-filter-btn { flex-shrink: 0; display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px; }
    .split-shop .shop-mbar .shop-filter-btn.active { border-color: var(--primary-brand); color: var(--primary-brand); }
    .split-shop .shop-mbar .shop-sort { flex: 1; }
    .split-shop .shop-mbar .shop-sort select { width: 100%; }
    .split-shop .shop-sidebar { display: none; }
    .split-shop .shop-sidebar.open { display: block; margin-bottom: 4px; }
    .shop-toolbar .shop-sort { display: none; }   /* use the mobile bar's sort instead */
    .shop-toolbar { justify-content: center; }
    .shop-hd { text-align: center; }
    /* Centre product-card text on mobile — but keep the title left-aligned */
    .pcard { text-align: center; }
    .pcard-price, .pcard-stock, .pcard-foot { justify-content: center; }
    .pcard-name, .pcard-brand { text-align: left; }
    /* Tighter section spacing on mobile (less wasted space under the breadcrumb) */
    .section { padding: 20px 0; }
    .page-strip { padding: 10px 0; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-diamond-grid { grid-template-columns: 1fr; gap: 0; min-height: 0; padding-top: 30px; padding-bottom: 30px; }
    .hero-copy { order: -1; text-align: center; margin-bottom: 10px; }
    .hero-copy p { max-width: none; }
    .hero-diamonds { height: 300px; transform: scale(.86); }
}
@media (max-width: 768px) {
    /* Product grids collapse to a balanced 2-column flow — never a single narrow block */
    .product-grid, .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .cat-chips { grid-template-columns: repeat(3, 1fr); }
    /* Value strip stacks to a single column (icon left, text right) */
    .value-strip .container, .features-grid, .status-cards, .copy-grid, .auth-split, .form-row { grid-template-columns: 1fr; }
    .value-strip .container { gap: 16px; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .hero-copy h1 { font-size: 30px; }
    .hero-diamonds { height: 260px; transform: scale(.72); }
    .story-inner { padding: 54px 20px; }
    .story-overlay { background: linear-gradient(100deg, var(--story-color) 0%, var(--story-color) 62%, rgba(0,0,0,.15) 100%); }
    .story-copy { max-width: none; }

    .container { padding: 0 16px; }   /* tighter side padding on phones */

    /* Header (mobile): hamburger left · logo centre · icons right, no search */
    .brand-row .container { flex-wrap: nowrap; height: auto; padding: 12px 16px; gap: 10px; }
    .mobile-menu-btn { display: inline-flex; }
    .logo { margin: 0 auto; }
    .logo .word { font-size: 23px; }
    .search-form { display: none; }
    .header-actions { gap: 18px; }
    .header-actions .h-link .label { display: none; }   /* icon-only account/cart */

    /* Top strip: only the contact line, centred on one row (hide delivery) */
    .top-strip .container { justify-content: center; text-align: center; height: auto; padding: 8px 20px; }
    .top-strip .strip-delivery { display: none; }

    /* Desktop blue nav bar is replaced by the slide-in drawer on mobile */
    .mainnav { display: none; }

    /* Footer bottom bar centred */
    .footer-bottom { flex-direction: column; text-align: center; padding: 26px 16px; }
    .footer-bottom .fb-text { text-align: center; }
    .pay-badges { justify-content: center; }
    .back-to-top { bottom: 14px; right: 14px; }

    /* Product detail: single column, title a touch smaller */
    .split-product h1 { font-size: 26px !important; }
    .product-gallery { min-height: 320px; padding: 18px; }
    .product-gallery img { max-height: 300px; }
}
@media (max-width: 480px) {
    .footer-cols { grid-template-columns: 1fr; }
    .cat-chips { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════
   Professional homepage redesign (navy / blue)
   ═══════════════════════════════════════════════════════════ */

/* Top bar */
.topbar { background: var(--nav-bg); color: #cbd5e1; font-size: 12.5px; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.tb-contact { display: inline-flex; align-items: center; gap: 7px; color: #cbd5e1; }
.tb-contact:hover { color: #fff; }
.tb-center { display: inline-flex; align-items: center; gap: 7px; color: #cbd5e1; }
/* Show the returns note only on desktop (hidden on tablet + mobile) */
@media (max-width: 1024px) { .tb-center { display: none; } }
.tb-items { display: flex; gap: 32px; }
.tb-i { display: inline-flex; align-items: center; gap: 7px; }

/* Brand row */
.brand-row { border-bottom: 1px solid var(--border-subtle); }
.brand-row .container { height: 80px; gap: 28px; }
.logo .word { color: var(--primary-brand); font-family: var(--font-headings); font-weight: 800; font-size: 30px; letter-spacing: -.5px; }
.search-form { flex: 1 1 auto; }
.search-form input { border-radius: 8px 0 0 8px; }
.search-form button { background: var(--primary-brand); border-radius: 0 8px 8px 0; }
.search-form button:hover { background: #1d4ed8; }
.header-actions .h-link .ico { color: var(--text-dark); }
.cart-badge { background: var(--primary-brand); }

/* Nav (white bar) */
.mainnav { background: #fff; border-bottom: 1px solid var(--border-subtle); }
.mainnav .container { height: 54px; }
.mainnav .nav-links a, .mainnav .nav-item > span { color: var(--text-dark); font-weight: 700; font-size: 14px; padding: 0 14px; height: 54px; }
.mainnav .nav-links a:hover { background: transparent; color: var(--primary-brand); }
.cat-anchor { background: #f1f5f9 !important; color: var(--text-dark) !important; border: 1px solid var(--border-subtle); border-radius: 8px; height: 40px !important; margin-right: 14px; gap: 9px; font-weight: 700; display: inline-flex; align-items: center; }
.cat-grid-ico { display: inline-flex; align-items: center; }
.cat-caret { font-size: 11px; opacity: .7; }
.nav-item:hover .cat-anchor { background: #e9eef5 !important; border-color: var(--primary-brand); }
.mainnav .dropdown { top: 100%; }
/* Invisible bridge so the menu stays open while the cursor travels from the button to the list */
.mainnav .dropdown::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.mainnav .dropdown a { color: var(--text-dark) !important; height: auto !important; transition: background .12s ease, color .12s ease, padding-left .12s ease; border-radius: 6px; }
.mainnav .dropdown a:hover { background: #eef4ff !important; color: var(--primary-brand) !important; padding-left: 24px !important; }

/* Hero — full-bleed edge-to-edge image with overlaid copy */
.hero2 {
    position: relative;
    border-bottom: 1px solid var(--border-subtle);
    background-color: #fff;
    background-image: var(--hero-img);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
}
.hero2-inner { display: flex; align-items: center; min-height: 480px; padding: 60px 40px; }
.hero2-copy { max-width: 640px; position: relative; z-index: 1; }
.hero2-copy h1 { font-size: 54px; line-height: 1.04; color: #0f172a; margin: 0 0 18px; letter-spacing: -1px; }
.hero2-copy > p { font-size: 18px; color: #475569; margin: 0 0 28px; max-width: 420px; }
.hero2-cta { display: flex; gap: 14px; margin-bottom: 34px; flex-wrap: wrap; }
.hero2-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.ht-item { display: flex; align-items: center; gap: 12px; }
.ht-ico { color: #0f172a; display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: #fff; border: 1px solid var(--border-subtle); border-radius: 12px; box-shadow: 0 2px 8px rgba(15,23,42,.07); flex-shrink: 0; }
.ht-ico svg { stroke-width: 1.8; }
.ht-item b { display: block; font-size: 13px; }
.ht-item small { color: var(--text-muted); font-size: 12px; }

/* Sections */
.section2 { padding: 16px 0; }
.hero2 + .section2 { padding-top: 26px; }   /* a touch more breathing room right under the hero */
.section2-head { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; margin-bottom: 22px; }
.section2-head h2 { font-size: 26px; margin: 0; grid-column: 2; text-align: center; }
.section2-head .see-all { grid-column: 3; justify-self: end; }
@media (max-width: 560px) {
    .section2-head { grid-template-columns: 1fr; justify-items: center; gap: 6px; }
    .section2-head h2, .section2-head .see-all { grid-column: 1; justify-self: center; }
}
.see-all { color: var(--primary-brand); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 4px; }

/* Category tiles */
.cat-tiles { display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px; }
.cat-tile { background: #fff; border: 1px solid var(--border-subtle); border-radius: 12px; padding: 22px 8px; text-align: center; transition: .15s; }
.cat-tile:hover { border-color: var(--primary-brand); box-shadow: 0 10px 26px rgba(37,99,235,.10); transform: translateY(-2px); }
.ct-ico { color: #0f172a; display: flex; justify-content: center; line-height: 0; }
.ct-ico svg { stroke-width: 1.2; display: block; }
.ct-ico img { object-fit: contain; }
.cat-tile:hover .ct-ico { color: var(--primary-brand); }
.ct-label { display: block; font-size: 13.5px; font-weight: 700; margin-top: 6px; color: #0f172a; }
.cat-tile { padding: 18px 8px; }

/* Product grid (5 per row) */
.pgrid5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }

/* Product card */
.pcard { background: #fff; border: 1px solid var(--border-subtle); border-radius: 12px; padding: 14px; position: relative; display: flex; flex-direction: column; transition: box-shadow .18s, transform .18s; }
.pcard:hover { box-shadow: 0 14px 32px rgba(15,23,42,.10); transform: translateY(-3px); }
.pcard-badge { position: absolute; top: 12px; left: 12px; background: #16a34a; color: #fff; font-size: 11px; font-weight: 700; padding: 3px 11px; border-radius: 20px; z-index: 2; }
.pcard-badge.is-new { background: var(--primary-brand); }
.pcard-img { height: 158px; display: grid; place-items: center; margin-bottom: 12px; }
.pcard-img img { max-height: 158px; object-fit: contain; }
.pcard-brand { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); font-weight: 600; }
.pcard-name { display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; font-size: 14px; font-weight: 600; line-height: 1.35; margin: 4px 0 8px; min-height: 38px; color: var(--text-dark); }
.pcard-name:hover { color: var(--primary-brand); }
.pcard-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.pp-now { font-family: var(--font-prices); font-weight: 800; font-size: 18px; color: #0f172a; white-space: nowrap; }
.pp-old { font-size: 13px; color: var(--text-muted); text-decoration: line-through; white-space: nowrap; }
.pcard-vat { font-size: 11px; color: var(--text-muted); margin: 3px 0 8px; }
.pcard-stock { font-size: 12px; font-weight: 600; display: flex; align-items: center; gap: 5px; margin: 0 0 10px; }
.pcard-stock.in { color: #16a34a; }
.pcard-stock.out { color: #dc2626; }
.pcard-stock .stock-dot { width: 8px; height: 8px; border-radius: 50%; background: #dc2626; display: inline-block; }
.pcard-cart:disabled { opacity: .4; cursor: not-allowed; }
.btn:disabled, .btn[disabled] { opacity: .55; cursor: not-allowed; pointer-events: none; box-shadow: none; }
/* Shop toolbar + sort */
.shop-mbar { display: none; }   /* mobile filter+sort bar, shown only on phones */
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; gap: 14px; flex-wrap: wrap; }
.shop-sort { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; }
.shop-sort label { font-size: 13px; color: var(--text-muted); white-space: nowrap; }
.shop-sort select { padding: 8px 12px; border: 1px solid var(--border-subtle); border-radius: 8px; background: #fff; font-size: 13.5px; font-weight: 600; color: var(--text-dark); cursor: pointer; }
.pcard-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #f1f5f9; padding-top: 10px; }
.pcard-rating { display: inline-flex; align-items: center; gap: 6px; }
.rv-count { font-size: 12px; color: var(--text-muted); }
.pcard-cart { width: 40px; height: 40px; border: 1px solid var(--border-subtle); background: #fff; border-radius: 8px; color: var(--primary-brand); cursor: pointer; display: grid; place-items: center; transition: .15s; }
.pcard-cart:hover { background: var(--primary-brand); color: #fff; border-color: var(--primary-brand); }

/* Star rating (partial fill) */
.stars { position: relative; display: inline-block; line-height: 0; white-space: nowrap; }
.stars svg { fill: #e2e8f0; }
.stars .s-full { position: absolute; top: 0; left: 0; overflow: hidden; }
.stars .s-full svg { fill: #f59e0b; }

/* Benefits — 4 columns with vertical dividers */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: #fff; border: 1px solid var(--border-subtle); border-radius: 12px; padding: 26px 0; }
.bn-item { display: flex; align-items: center; gap: 16px; padding: 6px 28px; }
.bn-item + .bn-item { border-left: 1px solid var(--border-subtle); }
.bn-ico { color: var(--primary-brand); display: inline-flex; flex-shrink: 0; }
.bn-ico svg { stroke-width: 1.5; }
.bn-item b { display: block; font-size: 14.5px; line-height: 1.3; }
.bn-item small { color: var(--text-muted); font-size: 12.5px; }

/* Dark promo banner — 3 columns: copy | features | image */
.promo2 { display: grid; grid-template-columns: 1.25fr 1fr 1.35fr; border-radius: 16px; overflow: hidden; color: #fff; background: #0f172a; box-shadow: 0 20px 50px rgba(15,23,42,.18); }
.promo2-copy { padding: 46px 40px; display: flex; flex-direction: column; justify-content: center; }
.promo2-eyebrow { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: #4ade80; margin-bottom: 12px; }
.promo2-copy h2 { color: #fff; font-size: 30px; line-height: 1.15; margin: 0 0 14px; }
.promo2-copy > p { color: #cbd5e1; margin: 0 0 26px; font-size: 15px; }
.promo2-copy .btn { align-self: flex-start; }
.promo2-feats { display: flex; flex-direction: column; justify-content: center; gap: 24px; padding: 46px 28px; border-left: 1px solid rgba(255,255,255,.09); border-right: 1px solid rgba(255,255,255,.09); }
.pf { display: flex; align-items: center; gap: 14px; }
.pf-ico { color: #4ade80; display: inline-flex; flex-shrink: 0; }
.pf-ico svg { stroke-width: 1.6; }
.pf b { display: block; font-size: 15px; }
.pf small { color: #94a3b8; font-size: 12.5px; }
.promo2-media { position: relative; min-height: 300px; }
.promo2-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Our Story banner (copy | image) */
.story2 { display: grid; grid-template-columns: 1fr 1.15fr; background: var(--nav-bg, #0f172a); border: none; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 50px rgba(15,23,42,.18); }
.story2-copy { padding: 44px 46px; display: flex; flex-direction: column; justify-content: center; }
.story2-eyebrow { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: #60a5fa; margin-bottom: 12px; }
.story2-copy h2 { font-size: 30px; line-height: 1.12; margin: 0 0 14px; color: #fff; }
.story2-copy > p { color: #cbd5e1; font-size: 15px; line-height: 1.65; margin: 0 0 26px; max-width: 470px; }
.story2-copy .btn { align-self: flex-start; }
.story2-media { position: relative; min-height: 300px; }
.story2-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Newsletter strip */
.nl-strip { background: #fff; border: 1px solid var(--border-subtle); border-radius: 14px; padding: 26px 30px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.nl-left { display: flex; align-items: center; gap: 16px; }
.nl-ico { color: var(--primary-brand); display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: rgba(37,99,235,.10); flex-shrink: 0; }
.nl-left h3 { font-size: 18px; margin: 0; }
.nl-left p { color: var(--text-muted); font-size: 13.5px; margin: 3px 0 0; }
.nl-form { display: flex; gap: 10px; align-items: center; flex: 1; min-width: 280px; max-width: 500px; }
.nl-form input { flex: 1; padding: 13px 16px; border: 1px solid var(--border-subtle); border-radius: 8px; }
.nl-done { color: var(--primary-brand); font-weight: 600; font-size: 13px; }

/* Footer (navy, 5 columns) */
.site-footer { background: var(--footer-bg); color: #cbd5e1; margin-top: 0; border-top: none; font-size: 14px; }
.section2.nl-wrap { padding-top: 2px; padding-bottom: 18px; }
.footer5 { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr 1.1fr; gap: 32px; padding: 50px 0 38px; }
.f-logo { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-headings); font-size: 26px; font-weight: 800; color: #fff; }
.f-logo-mark { display: inline-grid; place-items: center; width: 40px; height: 40px; background: var(--primary-brand); color: #fff; border-radius: 11px; font-size: 21px; font-weight: 800; line-height: 1; }
.f-tag { color: #94a3b8; margin: 10px 0 16px; }
.footer5 p { margin: 4px 0; color: #94a3b8; line-height: 1.6; }
.footer5 .muted-f { font-size: 12px; color: #64748b; margin-top: 12px; }
/* GMC business-identity block */
.f-legal { margin-top: 0; font-size: 13px; }
.f-legal p { margin: 4px 0; line-height: 1.55; }
/* Headline matches the other footer <h4> exactly so all column titles align on one line */
.f-legal .f-legal-head { color: #fff; font-size: 15px; font-weight: 700; line-height: 1.3; margin: 0 0 16px; }
.f-legal strong { color: #cbd5e1; font-weight: 600; }
.f-legal a { color: #93b4f5; }
.f-legal a:hover { color: #fff; }
.site-footer h4 { color: #fff; font-size: 15px; font-weight: 700; line-height: 1.3; margin: 0 0 16px; font-family: var(--font-sans); text-transform: none; letter-spacing: 0; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #94a3b8; }
.site-footer a:hover { color: #fff; }
.f-contact li, .f-secure li { display: flex; align-items: center; gap: 8px; color: #94a3b8; }
.pay-cards { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.pay-badge { display: inline-flex; align-items: center; gap: 9px; background: #1e293b; border: 1px solid rgba(255,255,255,.14); border-radius: 9px; padding: 10px 16px; color: #fff; font-weight: 700; font-size: 13px; line-height: 1; }
.pay-badge svg { display: block; }
.pay-badge img { display: block; }
.it-flag { border-radius: 2px; box-shadow: 0 0 0 1px rgba(255,255,255,.15); }
.footer-bottom-band { background: transparent; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 22px 0; font-size: 13px; color: #94a3b8; gap: 5px; }
.footer-bottom .fb-note { font-size: 12px; color: #64748b; }
.fb-links { display: flex; gap: 20px; }
.fb-links a { color: #94a3b8; }
.fb-flag { display: inline-flex; align-items: center; gap: 8px; }

/* Shop best-sellers heading */
.shop-hd { margin-bottom: 18px; }
.shop-hd h1 { font-size: 30px; margin: 0 0 6px; color: #0f172a; }
.shop-hd p { margin: 0; font-size: 14px; }

/* Product reviews */
.reviews-wrap { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
.reviews-summary { background: #fff; border: 1px solid var(--border-subtle); border-radius: 14px; padding: 24px; text-align: center; position: sticky; top: 20px; }
.rs-score { font-family: var(--font-prices); font-size: 48px; font-weight: 800; line-height: 1; color: #0f172a; }
.rs-stars { display: flex; justify-content: center; margin: 8px 0 4px; }
.rs-stars .stars svg { width: 20px; height: 20px; }
.rs-count { color: var(--text-muted); font-size: 13px; margin-bottom: 18px; }
.rs-bars { display: flex; flex-direction: column; gap: 7px; }
.rs-bar-row { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.rs-bar-label { width: 30px; color: var(--text-muted); text-align: right; white-space: nowrap; }
.rs-bar-track { flex: 1; height: 8px; background: #eef2f7; border-radius: 5px; overflow: hidden; }
.rs-bar-fill { display: block; height: 100%; background: #f59e0b; border-radius: 5px; }
.rs-bar-num { width: 22px; color: var(--text-muted); text-align: left; }
.reviews-list { display: flex; flex-direction: column; gap: 16px; }
.review-card { background: #fff; border: 1px solid var(--border-subtle); border-radius: 14px; padding: 20px 22px; }
.review-head { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--primary-brand); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 17px; flex-shrink: 0; }
.review-meta { flex: 1; }
.review-meta b { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.review-verified { display: inline-flex; align-items: center; gap: 3px; font-size: 11px; font-weight: 600; color: #16a34a; }
.review-stars { display: block; margin-top: 3px; }
.review-stars .stars svg { width: 14px; height: 14px; }
.review-date { color: var(--text-muted); font-size: 12.5px; white-space: nowrap; }
.review-title { font-size: 14.5px; margin: 14px 0 6px; color: #0f172a; }
.review-body { color: var(--text-muted); font-size: 13.5px; line-height: 1.65; margin: 0; }
@media (max-width: 768px) {
    .reviews-wrap { grid-template-columns: 1fr; gap: 22px; }
    .reviews-summary { position: static; }
}

/* Responsive */
@media (max-width: 1100px) {
    .cat-tiles { grid-template-columns: repeat(4, 1fr); }
    .pgrid5 { grid-template-columns: repeat(3, 1fr); }
    .footer5 { grid-template-columns: 1fr 1fr 1fr; }
    .hero2 { background-position: right center; }
    .hero2-inner { min-height: 420px; }
    .hero2-copy h1 { font-size: 40px; }
    /* Nav links overflow on tablets → use the hamburger drawer from here down */
    .mainnav { display: none; }
    .mobile-menu-btn { display: inline-flex; }
}
@media (max-width: 768px) {
    .container { padding: 0 16px; }
    /* Topbar: email on line 1, phone on line 2, both centred */
    .topbar .container { flex-direction: column; justify-content: center; align-items: center; height: auto; padding: 7px 16px; gap: 3px; }
    .tb-contact { font-size: 12px; }
    .cat-tiles { grid-template-columns: repeat(3, 1fr); }
    .pgrid5 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    /* Benefits: clean single column with horizontal dividers */
    .benefits { grid-template-columns: 1fr; gap: 0; padding: 6px 10px; }
    .bn-item { border-left: none !important; border-top: 1px solid var(--border-subtle); padding: 18px 6px; flex-direction: column; align-items: center; text-align: center; gap: 9px; }
    .bn-item:first-child { border-top: none; }
    .bn-ico svg { width: 42px; height: 42px; }
    /* Footer: centered on mobile */
    .footer5 { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .fcol-brand .f-logo { justify-content: center; }
    .footer5 .f-contact li, .footer5 .f-secure li { justify-content: center; }
    .footer5 .pay-cards { justify-content: center; }
    .promo2 { grid-template-columns: 1fr; }
    .promo2-copy { text-align: center; align-items: center; }
    .promo2-copy .btn { align-self: center; }
    .promo2-copy h2 { font-size: 25px; line-height: 1.22; }
    .promo2-feats { border-left: none; border-right: none; border-top: 1px solid rgba(255,255,255,.09); border-bottom: 1px solid rgba(255,255,255,.09); padding: 28px 24px; align-items: center; gap: 26px; }
    .promo2-feats .pf { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
    .promo2-feats .pf-ico { justify-content: center; }
    .promo2-media { min-height: 220px; order: -1; }
    .story2 { grid-template-columns: 1fr; }
    .story2-media { min-height: 220px; order: -1; }
    .story2-copy { padding: 30px 24px; text-align: center; align-items: center; }
    .story2-copy > p { max-width: none; }
    .story2-copy .btn { align-self: center; }
    .story2-copy h2 { font-size: 26px; }
    .nl-strip { flex-direction: column; align-items: stretch; text-align: center; }
    .nl-left { flex-direction: column; text-align: center; }
    .nl-form { flex-direction: column; align-items: stretch; max-width: 100%; }
    .nl-form .btn { width: 100%; }
    .footer-bottom { flex-direction: column; text-align: center; padding: 26px 16px; }
    /* Mobile hero: white gradient behind the text only, fades to fully clear before the appliances */
    .hero2 {
        background-image:
            linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.95) 32%, rgba(255,255,255,.5) 42%, rgba(255,255,255,0) 50%),
            var(--hero-img);
        background-position: center, 60% top;
        background-size: cover, cover;
    }
    .hero2-copy h1, .hero2-copy > p { text-shadow: none; }
    .hero2-inner { min-height: 500px; padding: 30px 16px 22px; align-items: flex-start; }
    .hero2-copy { max-width: none; margin: 0 auto; text-align: center; }
    .hero2-copy h1 { font-size: 37px; line-height: 1.06; letter-spacing: -1px; }
    .hero2-copy > p { margin-left: auto; margin-right: auto; font-size: 16.5px; }
    .hero2-cta { justify-content: center; }
    .hero2-cta .btn-outline { display: none; }              /* hide "Explore Categories" on mobile */
    .hero2-cta .btn-primary { width: 100%; max-width: 300px; }
    /* Trust badges: reference style — wide white cards, left-aligned icon + text */
    .hero2-trust { flex-direction: column; gap: 12px; align-items: stretch; width: 100%; }
    .hero2-trust .ht-item { width: 100%; gap: 16px; background: rgba(255,255,255,.93); border: none; border-radius: 16px; padding: 16px 20px; box-shadow: 0 10px 28px rgba(15,23,42,.13); justify-content: flex-start; text-align: left; }
    .hero2-trust .ht-ico { width: 60px; height: 60px; background: #fff; border: none; border-radius: 14px; box-shadow: 0 2px 10px rgba(15,23,42,.10); }
    .hero2-trust .ht-ico svg { width: 30px; height: 30px; }
    .hero2-trust .ht-item b { font-size: 16px; text-shadow: none; }
    .hero2-trust .ht-item small { font-size: 13px; color: var(--text-muted); text-shadow: none; }
}
@media (max-width: 480px) {
    .cat-tiles { grid-template-columns: repeat(2, 1fr); }
    .footer5 { grid-template-columns: 1fr; }
}

/* ── Live chat widget ── */
.chat-widget { position: fixed; right: 24px; bottom: 24px; z-index: 1200; font-family: var(--font-sans); }
.chat-launcher { position: relative; width: 60px; height: 60px; border-radius: 50%; background: var(--primary-brand); color: #fff; border: none; cursor: pointer; box-shadow: 0 10px 26px rgba(15,23,42,.28); display: grid; place-items: center; transition: transform .18s, background .18s; }
.chat-launcher:hover { transform: translateY(-2px); background: var(--nav-bg, #0f172a); }
.chat-widget.open .chat-launcher { transform: rotate(90deg) scale(.9); }
.chat-launcher-dot { position: absolute; top: 10px; right: 12px; width: 11px; height: 11px; border-radius: 50%; background: #22c55e; border: 2px solid #fff; }
.chat-panel { position: absolute; right: 0; bottom: 76px; width: 350px; max-width: calc(100vw - 40px); background: #fff; border: 1px solid var(--border-subtle); border-radius: 16px; box-shadow: 0 24px 60px rgba(15,23,42,.24); overflow: hidden; display: flex; flex-direction: column; opacity: 0; visibility: hidden; transform: translateY(12px) scale(.98); transform-origin: bottom right; transition: opacity .2s, transform .2s, visibility .2s; }
.chat-widget.open .chat-panel { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.chat-head { background: var(--nav-bg, #0f172a); color: #fff; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; }
.chat-head-info { display: flex; align-items: center; gap: 11px; }
.chat-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-brand); display: grid; place-items: center; font-weight: 800; font-size: 18px; }
.chat-head-info b { display: block; font-size: 15px; }
.chat-status { font-size: 12px; color: #cbd5e1; display: inline-flex; align-items: center; gap: 6px; }
.cs-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; display: inline-block; }
.chat-close { background: none; border: none; color: #cbd5e1; font-size: 26px; line-height: 1; cursor: pointer; }
.chat-close:hover { color: #fff; }
.chat-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; background: #f4f6f9; max-height: 300px; overflow-y: auto; }
.chat-msg { display: flex; }
.chat-msg.agent { justify-content: flex-start; }
.chat-msg.user { justify-content: flex-end; }
.chat-bubble { max-width: 82%; padding: 10px 14px; border-radius: 14px; font-size: 13.5px; line-height: 1.5; }
.chat-msg.agent .chat-bubble { background: #fff; color: var(--text-dark); border: 1px solid var(--border-subtle); border-bottom-left-radius: 4px; }
.chat-msg.user .chat-bubble { background: var(--primary-brand); color: #fff; border-bottom-right-radius: 4px; }
.chat-typing { display: inline-flex; gap: 4px; padding: 12px 14px; background: #fff; border: 1px solid var(--border-subtle); border-radius: 14px; width: fit-content; }
.chat-typing span { width: 7px; height: 7px; border-radius: 50%; background: #94a3b8; animation: chatBlink 1.2s infinite; }
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes chatBlink { 0%,60%,100% { opacity: .3; } 30% { opacity: 1; } }
.chat-form { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 9px; border-top: 1px solid var(--border-subtle); }
.chat-form input, .chat-form textarea { padding: 10px 12px; border: 1px solid var(--border-subtle); border-radius: 8px; font-size: 13.5px; font-family: inherit; resize: vertical; }
.chat-form input:focus, .chat-form textarea:focus { outline: none; border-color: var(--primary-brand); }
.chat-form .btn { width: 100%; justify-content: center; }
.chat-note { font-size: 12.5px; text-align: center; color: var(--text-muted); }
.chat-note.err { color: #dc2626; }
.chat-hidden { display: none !important; }
.back-to-top { bottom: 96px !important; }
@media (max-width: 600px) {
    .chat-widget { right: 16px; bottom: 16px; }
    .chat-panel { width: calc(100vw - 32px); bottom: 72px; }
    .back-to-top { bottom: 84px !important; }
}

/* Plain nav dropdown trigger (Sales Policies) — same look as a normal nav link,
   unlike .cat-anchor which is the grey "All Categories" button. */
.mainnav .nav-item > span.nav-drop { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.mainnav .nav-item:hover > span.nav-drop { color: var(--primary-brand); }
