/* ============================================================================
   BAGS OF SWANK — theme stylesheet
   "The Vault": midnight-violet ink, holo gold, royal violet. Space Grotesk
   display over Inter. WooCommerce-specific styling lives in woocommerce.css.
   ============================================================================ */

:root {
  --bos-ink: #171224;
  --bos-ink-deep: #100b1c;
  --bos-vault: #1e1732;
  --bos-brand: #6d4de0;
  --bos-brand-2: #5636c4;
  --bos-brand-bright: #8b6cf5;
  --bos-gold: #ffce54;
  --bos-gold-2: #f2b32d;
  --bos-mint: #3edbc5;
  --bos-paper: #fff;
  --bos-mist: #f6f4fc;
  --bos-line: #e7e3f2;
  --bos-muted: #6f6884;
  --bos-red: #e04b3a;
  --bos-green: #1f9d63;
  --bos-display: 'Space Grotesk', 'Arial Narrow', sans-serif;
  --bos-sans: 'Inter', 'Segoe UI', Arial, sans-serif;
  --bos-gutter: clamp(16px, 3vw, 32px);
  --bos-radius-s: 8px;
  --bos-radius-m: 14px;
  --bos-radius-l: 22px;
  --bos-shadow-1: 0 1px 2px rgba(18, 12, 38, .05), 0 8px 22px rgba(18, 12, 38, .07);
  --bos-shadow-2: 0 14px 38px rgba(18, 12, 38, .13), 0 3px 8px rgba(18, 12, 38, .05);
  --bos-shadow-3: 0 30px 70px rgba(18, 12, 38, .2), 0 8px 22px rgba(18, 12, 38, .08);
  --bos-section: clamp(64px, 7vw, 96px);
  --bos-section-tight: clamp(48px, 6vw, 72px);
  --bos-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --bos-preview-banner-height: 0px;
}

/* ---------- reset / base ------------------------------------------------ */

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
body {
  margin: 0;
  color: var(--bos-ink);
  background: var(--bos-paper);
  font: 15px/1.6 var(--bos-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.bos-menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
h1, h2, h3, h4 { font-family: var(--bos-display); font-weight: 700; line-height: 1.14; color: var(--bos-ink); letter-spacing: -0.01em; }
a { color: var(--bos-brand); }
a:hover { color: var(--bos-brand-2); }
p { margin: 0 0 1em; }
::selection { background: var(--bos-gold); color: var(--bos-ink-deep); }
fieldset { border: 0; margin: 0; padding: 0; }
input, select, textarea, button { font: inherit; color: inherit; }
input[type="text"], input[type="email"], input[type="password"], input[type="number"], input[type="search"], input[type="tel"], input[type="url"], select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--bos-line);
  border-radius: var(--bos-radius-s);
  background: var(--bos-paper);
  transition: border-color .18s var(--bos-ease), box-shadow .18s var(--bos-ease);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--bos-brand);
  box-shadow: 0 0 0 3.5px rgba(109, 77, 224, .14);
}
button { cursor: pointer; }
.screen-reader-text, .bos-skip-link:not(:focus) {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal;
}
.bos-skip-link:focus {
  position: fixed; top: 10px; left: 10px; z-index: 200000;
  background: var(--bos-ink); color: #fff; padding: 12px 18px; border-radius: 6px; text-decoration: none;
}

/* ---------- shared primitives ------------------------------------------- */

.bos-hh-wrap, .bos-h-wrap { width: min(1280px, 100% - (2 * var(--bos-gutter))); margin-inline: auto; }
.bos-kicker {
  display: flex; align-items: center; gap: 12px;
  font: 700 11px/1 var(--bos-display); letter-spacing: 2.6px; text-transform: uppercase;
  color: var(--bos-brand); margin: 0 0 14px;
}
.bos-kicker::before { content: ""; width: 26px; height: 2px; background: var(--bos-brand); }
.bos-kicker--gold { color: var(--bos-gold); }
.bos-kicker--gold::before { background: var(--bos-gold); }
.bos-kicker--light { color: #cfc6f5; }
.bos-kicker--light::before { background: #cfc6f5; }
.bos-kicker--center, .bos-hh-head--center .bos-kicker { justify-content: center; }

.button, button.bos-h-btn, .bos-hh-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 24px; border: 0; border-radius: 999px;
  background: linear-gradient(135deg, var(--bos-brand-bright), var(--bos-brand) 55%, var(--bos-brand-2));
  color: #fff; font: 700 14px/1 var(--bos-sans); text-decoration: none;
  box-shadow: 0 12px 28px rgba(109, 77, 224, .32);
  transition: transform .2s var(--bos-ease), box-shadow .2s var(--bos-ease), filter .2s var(--bos-ease);
}
.button:hover, .bos-h-btn:hover, .bos-hh-btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(109, 77, 224, .4); }
.button:active, .bos-hh-btn:active { transform: translateY(0); }
.bos-hh-btn--gold { background: linear-gradient(135deg, #ffe29a, var(--bos-gold) 55%, var(--bos-gold-2)); color: var(--bos-ink-deep); box-shadow: 0 12px 28px rgba(242, 179, 45, .34); }
.bos-hh-btn--gold:hover { color: var(--bos-ink-deep); box-shadow: 0 16px 36px rgba(242, 179, 45, .44); }
.bos-hh-btn--ghost { background: rgba(255, 255, 255, .08); border: 1.5px solid rgba(255, 255, 255, .34); box-shadow: none; color: #fff; backdrop-filter: blur(6px); }
.bos-hh-btn--ghost:hover { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .6); box-shadow: none; }
.bos-hh-btn--outline { background: transparent; border: 1.5px solid var(--bos-line); box-shadow: none; color: var(--bos-ink); }
.bos-hh-btn--outline:hover { color: var(--bos-brand); border-color: var(--bos-brand); box-shadow: none; }
/* The guarantee CTA sits on the vault-dark "How it works" band. */
.bos-hh-how .bos-hh-btn--outline { color: var(--bos-gold); border-color: rgba(255, 206, 84, .82); }
.bos-hh-how .bos-hh-btn--outline:hover, .bos-hh-how .bos-hh-btn--outline:focus-visible { color: var(--bos-ink-deep); background: var(--bos-gold); border-color: var(--bos-gold); box-shadow: 0 12px 28px rgba(242, 179, 45, .24); }
.bos-text-link { font-weight: 600; text-decoration: none; }
.bos-text-link:hover { text-decoration: underline; }

/* ---------- announcement bar --------------------------------------------- */

.bos-announcement { background: var(--bos-ink-deep); color: #d9d3ee; font-size: 12.5px; }
.bos-announcement__inner { display: flex; align-items: center; gap: 22px; width: min(1280px, 100% - 32px); margin-inline: auto; padding: 8px 0; min-height: 36px; }
.bos-announcement__main { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--bos-gold); }
.bos-announcement__main svg { width: 13px; height: 13px; fill: var(--bos-gold); stroke: none; }
.bos-announcement__detail { color: #a79ecd; }
.bos-announcement__links { margin-left: auto; display: flex; gap: 18px; }
.bos-announcement__links a { color: #cfc6f5; text-decoration: none; font-weight: 600; }
.bos-announcement__links a:hover { color: var(--bos-gold); }

/* ---------- header -------------------------------------------------------- */

.bos-header { background: var(--bos-paper); border-bottom: 1px solid var(--bos-line); position: sticky; top: -1px; z-index: 60; }
.bos-header__inner {
  display: grid; grid-template-columns: minmax(190px, 248px) minmax(0, 620px) max-content; align-items: center; gap: clamp(12px, 2vw, 26px);
  width: min(1280px, 100% - 32px); margin-inline: auto; padding: 16px 0; transition: padding .2s var(--bos-ease);
}
.bos-header.is-stuck { box-shadow: var(--bos-shadow-2); }
.bos-header.is-stuck .bos-header__inner { padding-block: 9px; }
.bos-menu-toggle { display: none; }
.bos-brand { display: inline-flex; align-items: center; min-width: 0; }
.bos-brand__logo { display: inline-flex; align-items: center; }
.bos-brand__svg { width: 248px; height: auto; display: block; }
.custom-logo { max-width: 248px; height: auto; display: block; }
.custom-logo-link { display: inline-flex; }
.bos-header-search { position: relative; min-width: 0; width: 100%; }
.bos-header-search form { display: flex; gap: 0; border: 1.5px solid var(--bos-line); border-radius: 999px; overflow: hidden; background: var(--bos-mist); transition: border-color .18s var(--bos-ease), background .18s var(--bos-ease); }
.bos-header-search form:focus-within { border-color: var(--bos-brand); background: var(--bos-paper); box-shadow: 0 0 0 3.5px rgba(109, 77, 224, .14); }
.bos-header-search input[type="search"], .bos-header-search input.search-field {
  border: 0; background: transparent; border-radius: 0; padding: 12px 18px; box-shadow: none !important;
}
.bos-header-search button[type="submit"] {
  position: relative; flex: 0 0 52px; min-height: 44px; border: 0; background: transparent; padding: 0; color: var(--bos-muted); font-size: 0; transition: color .15s;
}
.bos-header-search button[type="submit"]:hover { color: var(--bos-brand); }
.bos-header-search button[type="submit"]::before { content: ""; position: absolute; width: 13px; height: 13px; border: 1.8px solid currentColor; border-radius: 50%; top: 14px; left: 17px; }
.bos-header-search button[type="submit"]::after { content: ""; position: absolute; width: 7px; height: 1.8px; background: currentColor; border-radius: 2px; transform: rotate(45deg); top: 28px; left: 29px; }

/* 1.1.2 — final header cascade lock. The generic .bos-icon-button rule above
   must never turn the desktop menu/search toggles back on. */
@media (min-width: 981px) {
  .bos-header .bos-header__inner {
    display: grid !important;
    grid-template-columns: minmax(210px, 250px) minmax(360px, 650px) max-content !important;
    align-items: center !important;
    justify-content: space-between;
    width: min(1380px, calc(100% - 40px));
    min-height: 76px;
    gap: clamp(22px, 3vw, 48px);
    padding: 13px 0;
  }
  .bos-header .bos-menu-toggle,
  .bos-header .bos-search-toggle { display: none !important; }
  .bos-header .bos-brand,
  .bos-header .custom-logo-link { grid-column: 1; grid-row: 1; justify-self: start; max-width: 250px; }
  .bos-header .bos-header-search {
    display: block !important;
    position: relative !important;
    grid-column: 2;
    grid-row: 1;
    inset: auto !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .bos-header .bos-header-actions {
    display: flex !important;
    position: static !important;
    grid-column: 3;
    grid-row: 1;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap !important;
    width: auto;
    margin: 0 !important;
  }
}

@media (max-width: 980px) {
  .bos-header .bos-header__inner {
    display: grid !important;
    grid-template-columns: 44px minmax(130px, 1fr) max-content !important;
    align-items: center;
    width: min(100% - 28px, 920px);
    min-height: 66px;
    gap: 10px;
    padding: 10px 0;
  }
  .bos-header .bos-menu-toggle { display: inline-flex !important; grid-column: 1; grid-row: 1; }
  .bos-header .bos-brand,
  .bos-header .custom-logo-link { grid-column: 2; grid-row: 1; justify-self: center; max-width: 210px; }
  .bos-header .bos-header-actions { grid-column: 3; grid-row: 1; }
  .bos-header .bos-account-button,
  .bos-header .bos-wishlist-button { display: none !important; }
  .bos-header .bos-search-toggle { display: inline-flex !important; }
  .bos-header .bos-header-search {
    display: none !important;
    position: absolute !important;
    z-index: 80;
    top: 100% !important;
    right: -14px !important;
    left: -14px !important;
    width: auto !important;
    margin: 0 !important;
    padding: 13px 14px 15px !important;
    border-bottom: 1px solid var(--bos-line);
    background: #fff !important;
    box-shadow: 0 18px 35px rgba(28,18,48,.14) !important;
  }
  .bos-header .bos-header-search.is-open { display: block !important; }
}

@media (max-width: 430px) {
  .bos-header .bos-header__inner { grid-template-columns: 40px minmax(105px, 1fr) max-content !important; width: calc(100% - 20px); gap: 6px; }
  .bos-header .bos-brand,
  .bos-header .custom-logo-link { max-width: 150px; }
}

/* 1.1.7 homepage FAQ */
.bos-m17-faq{padding:clamp(76px,8vw,112px) 0;background:#171020;color:#fff}.bos-m17-faq__layout{display:grid;grid-template-columns:.8fr 1.2fr;gap:clamp(52px,8vw,115px)}.bos-m17-faq header{align-self:start;position:sticky;top:110px}.bos-m17-faq h2{max-width:480px;margin:12px 0 18px;color:#fff;font-size:clamp(45px,5vw,68px);line-height:.95;letter-spacing:-.055em}.bos-m17-faq header>p:last-child{max-width:430px;color:#cfc5dc;font-size:16px;line-height:1.7}.bos-m17-faq__list{border-top:1px solid rgba(255,255,255,.18)}.bos-m17-faq details{border-bottom:1px solid rgba(255,255,255,.18)}.bos-m17-faq summary{display:flex;align-items:center;justify-content:space-between;gap:22px;padding:24px 2px;list-style:none;color:#fff;font-size:17px;font-weight:800;cursor:pointer}.bos-m17-faq summary::-webkit-details-marker{display:none}.bos-m17-faq summary i{position:relative;flex:0 0 34px;width:34px;height:34px;border:1px solid rgba(255,255,255,.25);border-radius:50%}.bos-m17-faq summary i:before,.bos-m17-faq summary i:after{content:"";position:absolute;left:10px;right:10px;top:16px;height:2px;background:#e5b94d}.bos-m17-faq summary i:after{transform:rotate(90deg);transition:.25s}.bos-m17-faq details[open] summary i:after{transform:none}.bos-m17-faq details p{max-width:690px;margin:0;padding:0 55px 25px 2px;color:#cfc5dc;line-height:1.75}
@media(max-width:760px){.bos-m17-faq{padding:68px 0}.bos-m17-faq__layout{grid-template-columns:1fr;gap:34px}.bos-m17-faq header{position:static}.bos-m17-faq h2{font-size:43px}.bos-m17-faq summary{font-size:15px}.bos-m17-faq details p{padding-right:8px}}

/* 1.1.1 — authoritative live-store header. Kept at the true end so cached
   Elementor/global styles cannot displace search, account, wishlist or cart. */
.bos-header {
  isolation: isolate;
  width: 100%;
  background: #fff;
}
.bos-header .bos-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 248px) minmax(300px, 1fr) max-content;
  width: min(1380px, calc(100% - 40px));
  min-height: 76px;
  gap: clamp(18px, 2.4vw, 38px);
  padding: 14px 0;
}
.bos-header .bos-brand,
.bos-header .custom-logo-link { min-width: 0; max-width: 200px; }
.bos-header .bos-brand__svg,
.bos-header .custom-logo { display: block; width: 100%; max-width: 200px; height: auto; }
.bos-header .bos-header-search { display: block; position: relative; inset: auto; width: 100%; padding: 0; background: transparent; box-shadow: none; }
.bos-header .bos-header-search form {
  width: 100%;
  min-height: 48px;
  margin: 0;
  border-color: #dcd5e9;
  background: #f7f5fb;
}
.bos-header .bos-header-search input[type="search"],
.bos-header .bos-header-search input.search-field { width: 100%; min-width: 0; height: 46px; }
.bos-header .bos-header-actions { position: static; display: flex; flex-wrap: nowrap; align-items: center; gap: 9px; }
.bos-header .bos-icon-button { flex: 0 0 44px; width: 44px; height: 44px; margin: 0; padding: 0; }
.bos-primary-nav__inner { width: min(1380px, calc(100% - 40px)); overflow: visible; }

@media (max-width: 980px) {
  .bos-header .bos-header__inner {
    grid-template-columns: 46px minmax(150px, 1fr) max-content;
    width: min(100% - 28px, 920px);
    min-height: 68px;
    gap: 12px;
    padding: 10px 0;
  }
  .bos-header .bos-menu-toggle { display: inline-flex; }
  .bos-header .bos-brand,
  .bos-header .custom-logo-link { justify-self: start; max-width: 210px; }
  .bos-header .bos-header-search {
    display: none;
    position: absolute;
    z-index: 80;
    top: calc(100% + 1px);
    right: -14px;
    left: -14px;
    width: auto;
    padding: 13px 14px 15px;
    border-bottom: 1px solid var(--bos-line);
    background: #fff;
    box-shadow: 0 18px 35px rgba(28, 18, 48, .14);
  }
  .bos-header .bos-header-search.is-open { display: block; }
  .bos-header .bos-search-toggle { display: inline-flex; }
}

@media (max-width: 700px) {
  .bos-announcement__inner { width: calc(100% - 28px); justify-content: center; min-height: 32px; padding: 6px 0; }
  .bos-announcement__main { text-align: center; font-size: 11.5px; }
  .bos-announcement__detail,
  .bos-announcement__links { display: none; }
  .bos-header .bos-account-button,
  .bos-header .bos-wishlist-button { display: none; }
  .bos-header .bos-brand,
  .bos-header .custom-logo-link { max-width: 190px; }
}

@media (max-width: 430px) {
  .bos-header .bos-header__inner { grid-template-columns: 42px minmax(110px, 1fr) max-content; width: calc(100% - 20px); gap: 7px; }
  .bos-header .bos-brand,
  .bos-header .custom-logo-link { max-width: 155px; }
  .bos-header .bos-header-actions { gap: 6px; }
  .bos-header .bos-icon-button { flex-basis: 40px; width: 40px; height: 40px; }
  .bos-header .bos-header-search { right: -10px; left: -10px; }
}

/* 1.1.0 protected PHP storefront: premium category rail and stable cards. */
.bos-php-home > section { width: 100%; }
.bos-hh-cat-rail { position: relative; }
.bos-hh-cat-rail .bos-hh-tiles { display: flex; gap: clamp(16px, 2vw, 28px); overflow-x: auto; padding: 12px 6px 24px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.bos-hh-cat-rail .bos-hh-tiles::-webkit-scrollbar { display: none; }
.bos-hh-cat-rail .bos-hh-tile { flex: 0 0 clamp(126px, 13vw, 168px); min-width: 0; padding: 2px; gap: 8px; border: 0; border-radius: 0; background: transparent; box-shadow: none; scroll-snap-align: start; }
.bos-hh-cat-rail .bos-hh-tile:hover { transform: translateY(-5px); border: 0; box-shadow: none; }
.bos-hh-tile__media { position: relative; display: grid; place-items: center; width: clamp(112px, 11vw, 146px); height: clamp(112px, 11vw, 146px); margin: 0 auto 7px; overflow: hidden; border: 5px solid #fff; border-radius: 50%; background: linear-gradient(145deg, #f0ecfb, #ded5f4); color: var(--bos-brand); box-shadow: 0 0 0 1px rgba(73,47,126,.12), 0 15px 34px rgba(37,23,64,.14); transition: transform .25s ease, box-shadow .25s ease; }
.bos-hh-tile__media::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.5); pointer-events: none; }
.bos-hh-tile__media img { width: 100%; height: 100%; max-width: none; object-fit: cover; transition: transform .35s ease; }
.bos-hh-tile__media--icon svg { width: 42px; height: 42px; }
.bos-hh-cat-rail .bos-hh-tile:hover .bos-hh-tile__media { box-shadow: 0 0 0 3px var(--bos-gold), 0 20px 42px rgba(37,23,64,.2); }
.bos-hh-cat-rail .bos-hh-tile:hover .bos-hh-tile__media img { transform: scale(1.07); }
.bos-hh-cat-rail .bos-hh-tile strong { font-size: 14px; text-align: center; }
.bos-hh-cat-rail .bos-hh-tile small { text-align: center; }
.bos-hh-cat-rail .bos-hh-tile--outlet strong { color: var(--bos-ink); }
.bos-hh-cat-rail .bos-hh-tile--outlet small { color: var(--bos-muted); }
.bos-hh-cat-rail__btn { position: absolute; z-index: 3; top: 43%; display: grid; place-items: center; width: 44px; height: 44px; padding: 0; border: 1px solid var(--bos-line); border-radius: 50%; background: #fff; color: var(--bos-ink); box-shadow: 0 12px 30px rgba(37,23,64,.16); cursor: pointer; transition: background .2s, color .2s, transform .2s; }
.bos-hh-cat-rail__btn:hover { background: var(--bos-brand); color: #fff; transform: translateY(-2px); }
.bos-hh-cat-rail__btn--prev { left: -18px; }
.bos-hh-cat-rail__btn--next { right: -18px; }

.bos-php-home .woocommerce ul.products { display: grid !important; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 22px; margin: 0; }
.bos-php-home .woocommerce ul.products::before,.bos-php-home .woocommerce ul.products::after { display: none; }
.bos-php-home .woocommerce ul.products li.product { float: none !important; width: auto !important; min-width: 0; height: 100%; margin: 0 !important; padding: 14px 14px 18px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--bos-line); border-radius: 18px; background: #fff; box-shadow: 0 10px 28px rgba(37,23,64,.07); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.bos-php-home .woocommerce ul.products li.product:hover { transform: translateY(-5px); border-color: rgba(109,77,224,.38); box-shadow: 0 24px 52px rgba(37,23,64,.14); }
.bos-php-home .woocommerce ul.products li.product a.woocommerce-LoopProduct-link { display: flex; flex: 1; flex-direction: column; text-decoration: none; }
.bos-php-home .woocommerce ul.products li.product img { width: 100%; aspect-ratio: 1/1; margin: 0 0 15px; border-radius: 13px; background: #f6f3fb; object-fit: contain; }
.bos-php-home .woocommerce ul.products li.product .woocommerce-loop-product__title { min-height: 2.8em; padding: 0; font: 700 14.5px/1.4 var(--bos-display); color: var(--bos-ink); }
.bos-php-home .woocommerce ul.products li.product .price { margin: auto 0 10px; color: var(--bos-brand); font-weight: 800; }
.bos-php-home .woocommerce ul.products li.product .button { width: 100%; margin: 8px 0 0; padding: 13px 12px; border-radius: 10px; text-align: center; }
.bos-hh-review { position: relative; min-height: 245px; display: flex; flex-direction: column; overflow: hidden; padding: 34px 28px 25px; }
.bos-hh-review::before { content: "“"; position: absolute; top: 2px; right: 17px; color: rgba(109,77,224,.1); font: 700 96px/1 Georgia,serif; }
.bos-hh-review::after { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg,var(--bos-brand),var(--bos-gold)); }
.bos-hh-review blockquote { position: relative; flex: 1; font-size: 15px; line-height: 1.72; }
.bos-hh-review figcaption { margin-top: 18px; display: grid; gap: 3px; }
.bos-hh-deal__inner { min-height: 500px; }
.bos-hh-deal__media img { width: min(100%,460px); max-height: 430px; margin-inline: auto; object-fit: contain; }

@media (max-width: 980px) {
  .bos-php-home .woocommerce ul.products { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .bos-hh-cat-rail__btn { display: none; }
}
@media (max-width: 560px) {
  .bos-hh-cat-rail .bos-hh-tile { flex-basis: 106px; }
  .bos-hh-tile__media { width: 94px; height: 94px; border-width: 4px; }
  .bos-php-home .woocommerce ul.products { gap: 10px; }
  .bos-php-home .woocommerce ul.products li.product { padding: 9px 9px 13px; border-radius: 13px; }
  .bos-php-home .woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 12.5px; }
  .bos-hh-review { min-height: 0; }
  .bos-hh-deal__inner { min-height: 0; }
}
.bos-header-search button[type="submit"]::before { content: "🔍"; font-size: 14px; }
.bos-header-actions { display: flex; align-items: center; gap: 8px; justify-content: flex-end; min-width: max-content; flex-wrap: nowrap; }
.bos-search-toggle { display: none; }
.bos-icon-button {
  position: relative; display: inline-flex; flex: 0 0 42px; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--bos-line);
  background: var(--bos-paper); color: var(--bos-ink); transition: all .18s var(--bos-ease); text-decoration: none;
}
.bos-icon-button:hover { border-color: var(--bos-brand); color: var(--bos-brand); background: var(--bos-mist); }
.bos-icon-button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.bos-wishlist-count, .bos-cart-count {
  position: absolute; top: -5px; right: -5px; min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px; background: var(--bos-gold); color: var(--bos-ink-deep);
  font: 800 10.5px/18px var(--bos-sans); text-align: center; border: 2px solid var(--bos-paper);
}
.bos-cart-button.is-bumping { animation: bos-bump .45s var(--bos-ease); }
@keyframes bos-bump { 0% { transform: scale(1); } 35% { transform: scale(1.16); } 100% { transform: scale(1); } }

/* ---------- primary nav ---------------------------------------------------- */

.bos-primary-nav { background: var(--bos-paper); border-bottom: 1px solid var(--bos-line); position: relative; z-index: 55; }
.bos-primary-nav__inner { display: flex; align-items: stretch; gap: 8px; width: min(1280px, 100% - 32px); margin-inline: auto; }
.bos-primary-nav__cat {
  display: inline-flex; align-items: center; gap: 9px; padding: 0 18px; margin: 0 10px 0 0;
  background: var(--bos-vault); color: #fff; font: 700 13px/1 var(--bos-sans); text-decoration: none;
  border-radius: 999px; margin-block: 8px; transition: background .18s;
}
.bos-primary-nav__cat:hover { background: var(--bos-brand); color: #fff; }
.bos-primary-nav__cat svg { width: 15px; height: 15px; fill: none; stroke: var(--bos-gold); stroke-width: 1.7; }
.bos-primary-nav ul { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.bos-primary-nav li { position: relative; }
.bos-primary-nav li a {
  display: block; padding: 14px 13px; color: var(--bos-ink); text-decoration: none;
  font: 600 13.5px/1 var(--bos-sans); position: relative;
}
.bos-primary-nav li a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 6px; height: 2px;
  background: var(--bos-gold); transform: scaleX(0); transform-origin: left; transition: transform .22s var(--bos-ease);
}
.bos-primary-nav li a:hover { color: var(--bos-brand); }
.bos-primary-nav li a:hover::after, .bos-primary-nav li.current-menu-item > a::after { transform: scaleX(1); }
/* drop-down panels */
.bos-primary-nav li.menu-item-has-children > a::after { content: ""; }
.bos-primary-nav .menu-item-has-children { position: relative; }
.bos-primary-nav .sub-menu {
  position: absolute; top: calc(100% - 4px); left: 0; z-index: 65; display: grid; gap: 2px; min-width: 230px;
  background: var(--bos-paper); border: 1px solid var(--bos-line); border-radius: 14px; box-shadow: var(--bos-shadow-2);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s var(--bos-ease);
}
.bos-primary-nav .menu-item-has-children:hover > .sub-menu, .bos-primary-nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1; visibility: visible; transform: none;
}
.bos-primary-nav .sub-menu li a { display: flex; align-items: center; padding: 10px 12px; border-radius: 9px; font-size: 13.5px; }
.bos-primary-nav .sub-menu li a:hover { background: var(--bos-mist); color: var(--bos-brand); }
.bos-primary-nav .sub-menu .sub-menu { top: 0; left: calc(100% + 8px); }

/* ---------- mobile menu ---------------------------------------------------- */

.bos-drawer-overlay { position: fixed; inset: 0; background: rgba(16, 11, 28, .62); z-index: 89; backdrop-filter: blur(2px); }
.bos-mobile-menu {
  position: fixed; top: 0; bottom: 0; left: 0; width: min(360px, 88vw); background: var(--bos-ink-deep); z-index: 90;
  transform: translateX(-102%); transition: transform .3s var(--bos-ease); overflow-y: auto; padding-bottom: 30px;
}
.bos-mobile-menu.is-open { transform: translateX(0); box-shadow: var(--bos-shadow-3); }
.bos-mobile-menu__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.bos-mobile-menu__head .bos-brand__svg { width: 200px; }
.bos-mobile-menu .menu-close, .bos-menu-close { border-color: rgba(255, 255, 255, .2); background: transparent; color: #fff; }
.bos-mobile-menu ul { list-style: none; margin: 0; padding: 10px 0; }
.bos-mobile-menu ul a { display: block; padding: 13px 24px; color: #e8e4f7; text-decoration: none; font: 600 15px/1.3 var(--bos-sans); border-bottom: 1px solid rgba(255, 255, 255, .06); }
.bos-mobile-menu ul a:hover { color: var(--bos-gold); background: rgba(255, 255, 255, .04); }
.bos-mobile-menu .sub-menu { padding-left: 18px; }
.bos-mobile-quicklinks { padding: 14px 24px; display: grid; gap: 8px; }
.bos-mobile-quicklinks a { color: var(--bos-gold); font-weight: 600; text-decoration: none; font-size: 13.5px; }
.bos-mobile-contact { display: block; margin: 8px 20px 0; padding: 13px; text-align: center; border-radius: 999px; background: var(--bos-gold); color: var(--bos-ink-deep); font-weight: 800; text-decoration: none; }

/* ---------- live search panel ---------------------------------------------- */

.bos-search-results {
  position: absolute; top: calc(100% + 10px); left: 0; right: 0; z-index: 70;
  background: var(--bos-paper); border: 1px solid var(--bos-line); border-radius: var(--bos-radius-m); box-shadow: var(--bos-shadow-2);
  padding: 8px; max-height: 60vh; overflow: auto;
}
.bos-search-results__item { display: flex; gap: 12px; align-items: center; padding: 9px 10px; border-radius: 10px; text-decoration: none; color: var(--bos-ink); }
.bos-search-results__item:hover { background: var(--bos-mist); }
.bos-search-results__item img { width: 46px; height: 46px; object-fit: cover; border-radius: 8px; background: var(--bos-mist); }
.bos-search-results__item b { display: block; font: 600 13.5px/1.35 var(--bos-sans); }
.bos-search-results__item em { font-style: normal; color: var(--bos-brand); font-weight: 600; font-size: 13px; }
.bos-search-results__empty { margin: 0; padding: 14px; color: var(--bos-muted); font-size: 13.5px; }
.bos-search-results__all { display: block; margin-top: 6px; padding: 11px; text-align: center; border-top: 1px solid var(--bos-line); font-weight: 700; text-decoration: none; }

/* ---------- HERO: the vault ------------------------------------------------ */

.bos-hh-hero {
  position: relative; background: radial-gradient(1200px 500px at 85% -10%, #2c2150 0%, var(--bos-ink) 55%, var(--bos-ink-deep) 100%);
  color: #efeaff; overflow: clip;
}
.bos-hh-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.bos-hh-hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.bos-hh-hero__glow--a { width: 480px; height: 480px; right: -120px; top: -140px; background: rgba(109, 77, 224, .5); }
.bos-hh-hero__glow--b { width: 380px; height: 380px; left: -100px; bottom: -160px; background: rgba(242, 179, 45, .22); }
.bos-hh-hero__inner {
  position: relative; display: grid; grid-template-columns: 235px minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(24px, 3.4vw, 54px);
  width: min(1280px, 100% - (2 * var(--bos-gutter))); margin-inline: auto; padding: clamp(40px, 5.5vw, 76px) 0 clamp(48px, 6vw, 84px);
}
.bos-hh-hero__rail { background: rgba(255, 255, 255, .045); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--bos-radius-l); padding: 20px 18px; backdrop-filter: blur(8px); align-self: start; }
.bos-hh-hero__rail-title { font: 700 10.5px/1 var(--bos-display); letter-spacing: 2.4px; text-transform: uppercase; color: var(--bos-gold); margin: 0 0 14px; }
.bos-hh-hero__cats { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.bos-hh-hero__cats a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 8.5px 11px; border-radius: 10px; color: #d9d3ee; text-decoration: none; font: 600 13px/1.2 var(--bos-sans);
  transition: background .15s, color .15s, transform .15s var(--bos-ease);
}
.bos-hh-hero__cats a:hover { background: rgba(109, 77, 224, .32); color: #fff; transform: translateX(3px); }
.bos-hh-hero__cats i { font-style: normal; color: var(--bos-gold); font: 700 11px/1 var(--bos-display); }
.bos-hh-hero__rail-all { display: inline-flex; margin-top: 14px; color: var(--bos-gold); font: 700 12.5px/1 var(--bos-sans); text-decoration: none; }
.bos-hh-hero__rail-all:hover { color: #ffe29a; }
.bos-hh-hero__copy h1 {
  color: #fff; font-size: clamp(38px, 4.6vw, 60px); line-height: 1.02; letter-spacing: -0.02em; margin: 0 0 18px;
}
.bos-hh-hero__copy h1 em {
  font-style: normal; background: linear-gradient(110deg, var(--bos-gold) 10%, #fff3d4 38%, var(--bos-brand-bright) 62%, var(--bos-mint) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-size: 200% 100%; animation: bos-holo 7s ease-in-out infinite;
}
@keyframes bos-holo { 0%, 100% { background-position: 0% 0; } 50% { background-position: 100% 0; } }
.bos-hh-hero__sub { color: #bdb4dd; font-size: 16px; line-height: 1.65; max-width: 46ch; margin: 0 0 26px; }
.bos-hh-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.bos-hh-hero__proof { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.bos-hh-hero__proof li { display: inline-flex; align-items: center; gap: 8px; color: #cfc6f5; font: 600 12.5px/1.3 var(--bos-sans); }
.bos-hh-hero__proof svg { width: 15px; height: 15px; fill: none; stroke: var(--bos-mint); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.bos-hh-hero__stage { position: relative; min-height: 380px; }
.bos-hh-hero__fan { position: absolute; inset: 0; }
.bos-hh-hero__card {
  position: absolute; width: clamp(150px, 13.5vw, 196px); aspect-ratio: 357 / 500; border-radius: 12px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .12);
  transition: transform .5s var(--bos-ease), box-shadow .5s var(--bos-ease);
  animation: bos-cardfloat 8s ease-in-out infinite;
}
.bos-hh-hero__card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bos-hh-hero__card--c1 { left: 3%; top: 22%; transform: rotate(-17deg); animation-delay: 0s; z-index: 1; }
.bos-hh-hero__card--c2 { left: 21%; top: 7%; transform: rotate(-8deg); animation-delay: -2s; z-index: 2; }
.bos-hh-hero__card--c3 { right: 21%; top: 6%; transform: rotate(7deg); animation-delay: -4s; z-index: 3; }
.bos-hh-hero__card--c4 { right: 4%; top: 20%; transform: rotate(15deg); animation-delay: -6s; z-index: 4; }
@keyframes bos-cardfloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}
.bos-hh-hero__card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 206, 84, .16) 46%, rgba(62, 219, 197, .1) 55%, transparent 70%);
  background-size: 250% 100%; animation: bos-holo 8s ease-in-out infinite;
}
.bos-hh-hero__card:hover { z-index: 9; box-shadow: 0 30px 80px rgba(0, 0, 0, .65), 0 0 0 2px var(--bos-gold); }
.bos-hh-hero__card--c1:hover { transform: rotate(-17deg) scale(1.07); }
.bos-hh-hero__card--c2:hover { transform: rotate(-8deg) scale(1.07); }
.bos-hh-hero__card--c3:hover { transform: rotate(7deg) scale(1.07); }
.bos-hh-hero__card--c4:hover { transform: rotate(15deg) scale(1.07); }
.bos-hh-hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .28; }
.bos-hh-hero__chip {
  position: absolute; z-index: 8; display: grid; gap: 1px; padding: 10px 14px; border-radius: 12px;
  background: rgba(23, 18, 36, .82); border: 1px solid rgba(255, 255, 255, .14); backdrop-filter: blur(8px);
  box-shadow: var(--bos-shadow-2); animation: bos-cardfloat 9s ease-in-out infinite;
}
.bos-hh-hero__chip b { font: 700 13px/1.15 var(--bos-display); color: #fff; }
.bos-hh-hero__chip small { font: 700 10px/1 var(--bos-sans); letter-spacing: 1.6px; color: var(--bos-gold); }
.bos-hh-hero__chip--psa { top: 9%; right: 13%; animation-delay: -3s; }
.bos-hh-hero__chip--psa b { color: var(--bos-gold); }
.bos-hh-hero__chip--sealed { bottom: 7%; left: 18%; animation-delay: -5.5s; }
.bos-hh-hero__chip--sealed small { color: var(--bos-mint); }

/* ---------- benefits bar ---------------------------------------------------- */

.bos-hh-benefits { position: relative; z-index: 3; margin-top: -30px; }
.bos-hh-benefits__inner {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
  background: var(--bos-paper); border: 1px solid var(--bos-line); border-radius: var(--bos-radius-l);
  box-shadow: var(--bos-shadow-2); padding: 12px;
}
.bos-hh-benefit { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: var(--bos-radius-m); background: var(--bos-mist); }
.bos-hh-benefit svg { flex: none; width: 26px; height: 26px; fill: none; stroke: var(--bos-brand); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.bos-hh-benefit b { display: block; font: 700 12.5px/1.25 var(--bos-sans); }
.bos-hh-benefit small { display: block; color: var(--bos-muted); font-size: 11px; line-height: 1.35; margin-top: 2px; }

/* ---------- home sections --------------------------------------------------- */

.bos-hh-sec { padding: var(--bos-section) 0; }
.bos-hh-sec--tinted { background: var(--bos-mist); }
.bos-hh-sec--flush { padding: var(--bos-section-tight) 0; }
.bos-hh-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 22px; margin-bottom: clamp(26px, 3vw, 40px); }
.bos-hh-head h2 { font-size: clamp(24px, 2.6vw, 34px); margin: 0; max-width: 560px; }
.bos-hh-head--center { flex-direction: column; align-items: center; text-align: center; }
.bos-hh-more { flex: none; font: 700 13.5px/1 var(--bos-sans); color: var(--bos-brand); text-decoration: none; white-space: nowrap; border-bottom: 2px solid transparent; padding-bottom: 3px; }
.bos-hh-more:hover { color: var(--bos-brand-2); border-color: var(--bos-gold); }

/* vault tiles */
.bos-hh-tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.bos-hh-tiles--extra { margin-top: 14px; grid-template-columns: repeat(6, 1fr); }
.bos-hh-tile {
  display: flex; flex-direction: column; align-items: flex-start; gap: 9px; padding: 20px 18px;
  background: var(--bos-paper); border: 1px solid var(--bos-line); border-radius: var(--bos-radius-m); text-decoration: none;
  transition: transform .22s var(--bos-ease), box-shadow .22s var(--bos-ease), border-color .22s;
}
.bos-hh-tile:hover { transform: translateY(-4px); box-shadow: var(--bos-shadow-2); border-color: var(--bos-brand); }
.bos-hh-tile__icon { display: inline-flex; width: 52px; height: 52px; padding: 11px; border-radius: 12px; background: var(--bos-mist); color: var(--bos-brand); transition: background .22s, color .22s; }
.bos-hh-tile__icon svg { width: 100%; height: 100%; }
.bos-hh-tile:hover .bos-hh-tile__icon { background: var(--bos-brand); color: #fff; }
.bos-hh-tile strong { font: 700 14.5px/1.25 var(--bos-display); color: var(--bos-ink); }
.bos-hh-tile small { color: var(--bos-muted); font-size: 12px; }
.bos-hh-tile--outlet { background: var(--bos-ink); border-color: var(--bos-ink); }
.bos-hh-tile--outlet strong { color: #fff; }
.bos-hh-tile--outlet small { color: #b6add6; }
.bos-hh-tile--outlet .bos-hh-tile__icon { background: rgba(255, 206, 84, .16); color: var(--bos-gold); }
.bos-hh-tile--outlet:hover { border-color: var(--bos-gold); }
.bos-hh-tile--set .bos-hh-tile__icon { background: rgba(62, 219, 197, .13); color: #159e89; }
.bos-hh-tiles__more { margin: 18px 0 0; text-align: center; }
.bos-hh-tiles__toggle {
  border: 1.5px solid var(--bos-line); background: var(--bos-paper); border-radius: 999px; padding: 11px 22px;
  font: 700 13px/1 var(--bos-sans); color: var(--bos-ink); transition: all .18s;
}
.bos-hh-tiles__toggle:hover { border-color: var(--bos-brand); color: var(--bos-brand); }

/* banners */
.bos-hh-banners { display: grid; grid-template-columns: 1.35fr 1fr; gap: 16px; }
.bos-hh-banners__stack { display: grid; gap: 16px; }
.bos-hh-banner {
  position: relative; overflow: hidden; display: block; min-height: 230px; border-radius: var(--bos-radius-l);
  background: var(--bos-ink); text-decoration: none; isolation: isolate;
}
.bos-hh-banner--tall { min-height: 480px; }
.bos-hh-banner__bg { position: absolute; inset: 0; background-size: cover; background-position: center 22%; transition: transform .6s var(--bos-ease); z-index: -1; }
.bos-hh-banner:hover .bos-hh-banner__bg { transform: scale(1.05); }
.bos-hh-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(200deg, transparent 30%, rgba(16, 11, 28, .83) 78%); z-index: -1; }
.bos-hh-banner__copy { position: absolute; left: 24px; right: 24px; bottom: 22px; display: grid; gap: 5px; }
.bos-hh-banner__copy small { font: 700 10.5px/1 var(--bos-display); letter-spacing: 2.2px; color: var(--bos-gold); }
.bos-hh-banner__copy strong { font: 700 clamp(17px, 1.6vw, 22px)/1.25 var(--bos-display); color: #fff; max-width: 34ch; }
.bos-hh-banner__copy em { font: 700 12.5px/1 var(--bos-sans); font-style: normal; color: #cfc6f5; margin-top: 6px; }
.bos-hh-banner:hover .bos-hh-banner__copy em { color: var(--bos-gold); }

/* spotlight deal */
.bos-hh-deal {
  position: relative; color: #fff; overflow: clip;
  background: radial-gradient(900px 420px at 12% -10%, #3a2a72 0%, var(--bos-ink) 52%, var(--bos-ink-deep) 100%);
}
.bos-hh-deal__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 4vw, 64px); align-items: center; padding: var(--bos-section-tight) 0; }
.bos-hh-deal__copy h2 { color: #fff; font-size: clamp(26px, 3vw, 40px); margin: 0 0 12px; }
.bos-hh-deal__copy p { color: #bdb4dd; }
.bos-hh-deal__price { display: flex; align-items: baseline; gap: 13px; margin: 16px 0 22px; }
.bos-hh-deal__now { font: 700 clamp(28px, 3vw, 40px)/1 var(--bos-display); color: var(--bos-gold); }
.bos-hh-deal__price del { color: #9c92c4; font-size: 19px; }
.bos-hh-deal__chip { background: var(--bos-red); color: #fff; font: 800 12px/1 var(--bos-sans); border-radius: 999px; padding: 6px 11px; align-self: center; }
.bos-hh-deal__media { display: block; position: relative; }
.bos-hh-deal__media img {
  width: 100%; max-height: 470px; object-fit: contain; border-radius: var(--bos-radius-l);
  box-shadow: 0 36px 90px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .12);
  transform: rotate(2.5deg); transition: transform .5s var(--bos-ease);
}
.bos-hh-deal__media:hover img { transform: rotate(0deg) scale(1.02); }

/* makers rail */
.bos-hh-makers__rail { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.bos-hh-maker {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 22px 22px;
  border: 1.5px dashed var(--bos-line); border-radius: var(--bos-radius-m); text-decoration: none;
  transition: all .2s var(--bos-ease); background: var(--bos-paper);
}
.bos-hh-maker span { font: 700 19px/1 var(--bos-display); letter-spacing: 1.5px; text-transform: uppercase; color: var(--bos-ink); }
.bos-hh-maker small { font: 700 11.5px/1 var(--bos-sans); color: var(--bos-muted); }
.bos-hh-maker:hover { border-color: var(--bos-brand); border-style: solid; background: var(--bos-mist); }
.bos-hh-maker:hover span { color: var(--bos-brand); }
.bos-hh-maker:hover small { color: var(--bos-brand); }

/* how it works */
.bos-hh-how { color: #fff; background: linear-gradient(160deg, var(--bos-vault), var(--bos-ink-deep)); }
.bos-hh-how__inner { display: grid; grid-template-columns: .83fr 1.17fr; gap: clamp(28px, 4vw, 72px); align-items: start; padding: var(--bos-section-tight) 0; }
.bos-hh-how__copy h2 { color: #fff; font-size: clamp(24px, 2.6vw, 34px); margin: 0 0 22px; }
.bos-hh-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; counter-reset: steps; }
.bos-hh-steps li {
  display: grid; grid-template-columns: 54px 1fr; column-gap: 18px; row-gap: 4px; align-items: start;
  background: rgba(255, 255, 255, .045); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--bos-radius-m); padding: 20px;
}
.bos-hh-steps__num {
  grid-row: span 2; display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px;
  border-radius: 50%; background: linear-gradient(135deg, #ffe29a, var(--bos-gold-2)); color: var(--bos-ink-deep);
  font: 700 22px/1 var(--bos-display);
}
.bos-hh-steps strong { font: 700 16.5px/1.3 var(--bos-display); color: #fff; align-self: end; }
.bos-hh-steps p { margin: 0; color: #bdb4dd; font-size: 13.5px; }

/* journal preview */
.bos-hh-journal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bos-hh-card {
  display: flex; flex-direction: column; background: var(--bos-paper); border: 1px solid var(--bos-line);
  border-radius: var(--bos-radius-m); overflow: hidden; text-decoration: none; transition: transform .22s var(--bos-ease), box-shadow .22s;
}
.bos-hh-card:hover { transform: translateY(-4px); box-shadow: var(--bos-shadow-2); }
.bos-hh-card__media { aspect-ratio: 16 / 9; background: var(--bos-ink); overflow: hidden; }
.bos-hh-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--bos-ease); }
.bos-hh-card:hover .bos-hh-card__media img { transform: scale(1.05); }
.bos-hh-card__body { display: grid; gap: 8px; padding: 18px 20px 20px; }
.bos-hh-card__body small { color: var(--bos-muted); font-size: 11.5px; text-transform: uppercase; letter-spacing: 1.2px; font-weight: 600; }
.bos-hh-card__body strong { font: 700 16px/1.3 var(--bos-display); color: var(--bos-ink); }
.bos-hh-card:hover .bos-hh-card__body strong { color: var(--bos-brand); }
.bos-hh-card__body em { color: var(--bos-muted); font-size: 13px; font-style: normal; line-height: 1.55; }

/* reviews */
.bos-hh-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bos-hh-review { margin: 0; padding: 24px; background: var(--bos-paper); border: 1px solid var(--bos-line); border-radius: var(--bos-radius-m); box-shadow: var(--bos-shadow-1); }
.bos-hh-review__stars { color: var(--bos-gold); font-size: 15px; letter-spacing: 3px; }
.bos-hh-review blockquote { margin: 12px 0; font-size: 14px; line-height: 1.65; color: var(--bos-ink); }
.bos-hh-review figcaption { display: flex; align-items: baseline; gap: 8px; }
.bos-hh-review figcaption strong { font-family: var(--bos-display); }
.bos-hh-review figcaption span { color: var(--bos-muted); font-size: 12px; }

/* contact band */
.bos-hh-contact { color: #efeaff; background: radial-gradient(800px 500px at 90% 110%, #2c2150 0%, var(--bos-ink) 55%, var(--bos-ink-deep) 100%); padding: var(--bos-section) 0; }
.bos-hh-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); }
.bos-hh-contact__panel h2 { color: #fff; font-size: clamp(24px, 2.7vw, 36px); margin: 0 0 12px; }
.bos-hh-contact__lead { color: #bdb4dd; margin-bottom: 22px; }
.bos-hh-contact__formcard { background: var(--bos-paper); border-radius: var(--bos-radius-l); padding: 26px; color: var(--bos-ink); box-shadow: var(--bos-shadow-3); }
.bos-hh-contact__map { display: flex; flex-direction: column; gap: 16px; }
.bos-hh-contact__map iframe { width: 100%; min-height: 300px; flex: 1; border: 0; border-radius: var(--bos-radius-l); filter: saturate(.8) contrast(1.05); box-shadow: var(--bos-shadow-2); }
.bos-hh-contact__chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.bos-hh-contact__chip { display: grid; gap: 3px; padding: 13px 15px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); border-radius: 12px; }
.bos-hh-contact__chip b { font: 700 10.5px/1 var(--bos-display); letter-spacing: 1.8px; color: var(--bos-gold); text-transform: uppercase; }
.bos-hh-contact__chip a, .bos-hh-contact__chip em { color: #efeaff; font: 600 12.5px/1.35 var(--bos-sans); font-style: normal; text-decoration: none; }
.bos-hh-contact__chip a:hover { color: var(--bos-gold); }
.bos-hh-contact__address { color: #bdb4dd; font-size: 13px; font-style: normal; }

/* ---------- contact form ----------------------------------------------------- */

.bos-contact-form { display: grid; gap: 14px; }
.bos-contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bos-contact-form label { display: grid; gap: 6px; }
.bos-contact-form label span { font: 700 12px/1 var(--bos-sans); letter-spacing: .6px; color: var(--bos-ink); }
.bos-contact-form textarea { min-height: 120px; resize: vertical; }
.bos-contact-form .bos-h-btn { justify-self: start; }
.bos-hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
.bos-contact-note { padding: 13px 16px; border-radius: 10px; font-weight: 600; font-size: 13.5px; margin: 0 0 14px; }
.bos-contact-note--ok { background: #e4f6ee; color: #13704a; border: 1px solid #b6e6cf; }
.bos-contact-note--err { background: #fdecea; color: #b03427; border: 1px solid #f6c9c3; }

/* Contact page: auto-appended form + map grid */
.bos-contact-inline { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 3vw, 42px); margin-top: 30px; align-items: start; }
.bos-h-contact__panel { background: var(--bos-mist); border: 1px solid var(--bos-line); border-radius: var(--bos-radius-l); padding: clamp(18px, 2.5vw, 30px); }
.bos-h-contact__map iframe { width: 100%; min-height: 380px; border: 0; border-radius: var(--bos-radius-l); box-shadow: var(--bos-shadow-1); filter: saturate(.8) contrast(1.05); }
@media (max-width: 820px) { .bos-contact-inline { grid-template-columns: 1fr; } .bos-h-contact__map iframe { min-height: 280px; } }

/* ---------- newsletter ------------------------------------------------------- */

.bos-newsletter-form { position: relative; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.bos-newsletter-form__input, .bos-newsletter-form input[type="email"] {
  flex: 1 1 240px; border: 1px solid rgba(255, 255, 255, .28); border-radius: 999px; padding: 13px 20px;
  background: rgba(255, 255, 255, .09); color: #fff; box-shadow: none;
}
.bos-newsletter-form input[type="email"]::placeholder { color: #a79ecd; }
.bos-newsletter-form input[type="email"]:focus { border-color: var(--bos-gold); box-shadow: 0 0 0 3.5px rgba(255, 206, 84, .2); }
.bos-newsletter-form__button, .bos-newsletter-form button[type="submit"] {
  flex: none; border: 0; border-radius: 999px; padding: 13px 26px;
  background: linear-gradient(135deg, #ffe29a, var(--bos-gold) 55%, var(--bos-gold-2)); color: var(--bos-ink-deep);
  font: 800 13.5px/1 var(--bos-sans); transition: transform .18s var(--bos-ease), filter .18s;
}
.bos-newsletter-form button:hover { transform: translateY(-2px); filter: brightness(1.05); }
.bos-newsletter-msg { flex-basis: 100%; margin: 4px 0 0; font: 600 13px/1.4 var(--bos-sans); color: var(--bos-mint); display: none; }
.bos-newsletter-msg.is-visible { display: block; }
.bos-newsletter-msg.is-error { color: #ffb0a3; }

/* ---------- cookie consent --------------------------------------------------- */

.bos-consent {
  position: fixed; z-index: 95; bottom: 16px; left: 16px; width: min(420px, calc(100vw - 32px));
  background: var(--bos-ink-deep); color: #e8e4f7; border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--bos-radius-m); padding: 18px; box-shadow: var(--bos-shadow-3);
  animation: bos-consent-in .35s var(--bos-ease);
}
@keyframes bos-consent-in { from { transform: translateY(14px); opacity: 0; } to { transform: none; opacity: 1; } }
.bos-consent__copy strong { display: block; font: 700 14.5px/1.3 var(--bos-display); color: #fff; margin-bottom: 5px; }
.bos-consent__copy p { margin: 0; font-size: 12.5px; color: #bdb4dd; }
.bos-consent__copy a { color: var(--bos-gold); font-weight: 600; }
.bos-consent__choices { display: grid; gap: 7px; margin-top: 12px; }
.bos-consent__choices label { display: flex; align-items: center; gap: 9px; font-size: 13px; color: #e8e4f7; }
.bos-consent__choices input { accent-color: var(--bos-gold); }
.bos-consent__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.bos-consent__actions button { border-radius: 999px; padding: 9px 15px; font: 700 12px/1 var(--bos-sans); border: 1.5px solid rgba(255, 255, 255, .25); background: transparent; color: #fff; }
.bos-consent__accept, .bos-consent__save { background: var(--bos-gold) !important; border-color: var(--bos-gold) !important; color: var(--bos-ink-deep) !important; }
.bos-consent__actions button:hover { border-color: var(--bos-gold); color: var(--bos-gold); }
.bos-consent__accept:hover, .bos-consent__save:hover { color: var(--bos-ink-deep) !important; filter: brightness(1.06); }
.bos-cookie-settings { border: 0; background: none; padding: 0; color: inherit; text-decoration: underline; font: inherit; }

/* ---------- toast ------------------------------------------------------------ */

.bos-toast {
  position: fixed; z-index: 98; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 14px; padding: 13px 20px; border-radius: 999px;
  background: var(--bos-ink-deep); color: #fff; font: 600 13.5px/1 var(--bos-sans); box-shadow: var(--bos-shadow-3);
  border: 1px solid rgba(255, 255, 255, .14); animation: bos-consent-in .25s var(--bos-ease);
}
.bos-toast a { color: var(--bos-gold); font-weight: 700; text-decoration: none; }

/* ---------- back to top ------------------------------------------------------- */

.bos-to-top {
  position: fixed; z-index: 94; right: 18px; bottom: 18px; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--bos-line); background: var(--bos-paper); color: var(--bos-brand); box-shadow: var(--bos-shadow-2);
  display: inline-flex; align-items: center; justify-content: center;
}
.bos-to-top:hover { background: var(--bos-brand); color: #fff; border-color: var(--bos-brand); }
.bos-to-top svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- modal / quick view -------------------------------------------------- */

.bos-modal { position: fixed; inset: 0; z-index: 96; display: flex; align-items: center; justify-content: center; padding: 20px; }
.bos-modal__backdrop { position: absolute; inset: 0; background: rgba(16, 11, 28, .7); backdrop-filter: blur(4px); }
.bos-modal__content {
  position: relative; width: min(860px, 100%); max-height: min(680px, 92vh); overflow: auto;
  background: var(--bos-paper); border-radius: var(--bos-radius-l); box-shadow: var(--bos-shadow-3);
  animation: bos-modal-in .28s var(--bos-ease);
}
@keyframes bos-modal-in { from { transform: translateY(16px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.bos-modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 2; width: 38px; height: 38px; border-radius: 50%;
  border: 0; background: var(--bos-mist); font-size: 21px; line-height: 1; color: var(--bos-ink);
}
.bos-modal-close:hover { background: var(--bos-brand); color: #fff; }
.bos-quick-view-panel { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 0; }
.bos-quick-view-image { background: var(--bos-mist); }
.bos-quick-view-image img { width: 100%; height: 100%; object-fit: contain; aspect-ratio: 1/1; padding: 14px; }
.bos-quick-view-copy { padding: 30px 30px 26px; display: grid; gap: 10px; align-content: start; }
.bos-quick-view-copy h2 { margin: 0; font-size: 22px; }
.bos-quick-view-copy .price { font: 700 20px/1 var(--bos-display); }
.bos-quick-view-copy .price ins { color: var(--bos-red); text-decoration: none; }
.bos-quick-view-copy .price del { color: var(--bos-muted); font-size: 15px; margin-right: 8px; }
.bos-quick-view-copy .summary { color: var(--bos-muted); font-size: 13.5px; }
.bos-quick-view-copy .button { justify-self: start; }
.bos-quick-view-copy .bos-kicker { margin: 0; }

/* ---------- footer ----------------------------------------------------------- */

.bos-service-strip { border-top: 1px solid var(--bos-line); background: var(--bos-mist); }
.bos-service-strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; width: min(1280px, 100% - 32px); margin-inline: auto; padding: 26px 0; }
.bos-service-strip .bos-service-cell, .bos-service-strip__inner > div { display: flex; align-items: center; gap: 12px; justify-content: center; }
.bos-service-strip svg { flex: none; width: 28px; height: 28px; fill: none; stroke: var(--bos-brand); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.bos-service-strip b { display: block; font: 700 13px/1.25 var(--bos-sans); }
.bos-service-strip small { color: var(--bos-muted); font-size: 11.5px; }
.bos-footer { background: var(--bos-ink-deep); color: #bdb4dd; }
.bos-footer__news {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center;
  width: min(1280px, 100% - 32px); margin-inline: auto; padding: 46px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.bos-footer__news h2 { color: #fff; font-size: clamp(21px, 2.2vw, 28px); margin: 0 0 8px; }
.bos-footer__news p { margin: 0; color: #bdb4dd; font-size: 13.5px; max-width: 44ch; }
.bos-footer__main {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px;
  width: min(1280px, 100% - 32px); margin-inline: auto; padding: 44px 0;
}
.bos-footer__brand .bos-brand__svg { width: 210px; margin-bottom: 16px; }
.bos-footer__brand p { font-size: 13px; line-height: 1.6; }
.bos-footer__contact { display: grid; gap: 4px; }
.bos-footer__contact a { color: #efeaff; font-weight: 600; text-decoration: none; }
.bos-footer__contact a:hover { color: var(--bos-gold); }
.bos-footer__contact span { font-size: 12.5px; }
.bos-socials { display: flex; gap: 8px; }
.bos-socials a { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .16); color: #e8e4f7; }
.bos-socials a:hover { border-color: var(--bos-gold); color: var(--bos-gold); }
.bos-socials svg { width: 18px; height: 18px; fill: currentColor; }
.bos-footer h3 { color: var(--bos-gold); font: 700 11px/1 var(--bos-display); letter-spacing: 2.4px; text-transform: uppercase; margin: 0 0 16px; }
.bos-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.bos-footer ul a { color: #bdb4dd; text-decoration: none; font-size: 13.5px; }
.bos-footer ul a:hover { color: var(--bos-gold); }
.bos-footer__bottom {
  display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; justify-content: space-between;
  width: min(1280px, 100% - 32px); margin-inline: auto; padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, .09); font-size: 12.5px; color: #8c83ad;
}
.bos-footer__bottom .bos-cookie-settings { color: #bdb4dd; }
.bos-footer__bottom .bos-cookie-settings:hover { color: var(--bos-gold); }

/* ---------- blog -------------------------------------------------------------- */

.bos-bloghero { color: #fff; background: radial-gradient(700px 320px at 15% -30%, #3a2a72 0%, var(--bos-ink) 60%); padding: var(--bos-section-tight) 0; }
.bos-bloghero__copy h1 { color: #fff; font-size: clamp(30px, 3.6vw, 46px); margin: 0 0 12px; }
.bos-bloghero__lead { color: #bdb4dd; max-width: 62ch; margin: 0; }
.bos-content { width: min(1280px, 100% - (2 * var(--bos-gutter))); margin-inline: auto; padding: var(--bos-section-tight) 0; }
.bos-blog__layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(24px, 3vw, 48px); align-items: start; }
.bos-blog__main { display: grid; gap: 22px; }
.bos-blog__sidebar { display: grid; gap: 18px; position: sticky; top: 90px; }
.bos-blog-side { background: var(--bos-paper); border: 1px solid var(--bos-line); border-radius: var(--bos-radius-m); padding: 20px; }
.bos-blog-side h3 { margin: 0 0 12px; font-size: 15px; }
.bos-blog-side__latest { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.bos-blog-side__latest a { display: block; font-weight: 600; text-decoration: none; font-size: 13.5px; color: var(--bos-ink); }
.bos-blog-side__latest a:hover { color: var(--bos-brand); }
.bos-blog-side__latest span { display: block; color: var(--bos-muted); font-size: 11.5px; margin-top: 2px; }
.bos-blog-side__cats { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.bos-blog-side__cats a { color: var(--bos-ink); text-decoration: none; font-size: 13.5px; font-weight: 600; }
.bos-blog-side__cats a:hover { color: var(--bos-brand); }
.bos-blog__relatedgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bos-post-card { display: grid; grid-template-columns: 300px minmax(0, 1fr); background: var(--bos-paper); border: 1px solid var(--bos-line); border-radius: var(--bos-radius-m); overflow: hidden; transition: transform .2s var(--bos-ease), box-shadow .2s; }
.bos-post-card:hover { transform: translateY(-3px); box-shadow: var(--bos-shadow-2); }
.bos-post-card__media { position: relative; min-height: 210px; background: var(--bos-ink); }
.bos-post-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bos-post-card__shade { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(62, 219, 197, .1), transparent 30%, rgba(23, 18, 36, .35)); }
.bos-post-card__body { padding: 22px; display: grid; gap: 9px; align-content: start; }
.bos-post-card__meta { display: flex; gap: 10px; align-items: center; }
.bos-post-card__cat { background: var(--bos-mist); border: 1px solid var(--bos-line); border-radius: 999px; padding: 4px 10px; font: 700 10.5px/1 var(--bos-sans); letter-spacing: 1.2px; text-transform: uppercase; color: var(--bos-brand); }
.bos-post-card__date { color: var(--bos-muted); font-size: 12px; }
.bos-post-card h2 { margin: 0; font-size: 19px; line-height: 1.3; }
.bos-post-card h2 a { color: inherit; text-decoration: none; }
.bos-post-card h2 a:hover { color: var(--bos-brand); }
.bos-post-card__excerpt { margin: 0; color: var(--bos-muted); font-size: 13.5px; }
.bos-post-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.bos-post-card__readtime { color: var(--bos-muted); font-size: 12px; }
.bos-post-featured { display: grid; grid-template-columns: 1.15fr .85fr; background: var(--bos-paper); border: 1px solid var(--bos-line); border-radius: var(--bos-radius-l); overflow: hidden; box-shadow: var(--bos-shadow-1); }
.bos-post-featured__media { position: relative; min-height: 330px; background: var(--bos-ink); }
.bos-post-featured__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bos-post-featured__shade { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(109, 77, 224, .14), transparent 34%, rgba(23, 18, 36, .4)); }
.bos-post-featured__badge { position: absolute; top: 16px; left: 16px; background: var(--bos-gold); color: var(--bos-ink-deep); border-radius: 999px; padding: 6px 13px; font: 800 11px/1 var(--bos-sans); letter-spacing: 1.4px; text-transform: uppercase; }
.bos-post-featured__body { padding: clamp(22px, 3vw, 38px); display: grid; gap: 10px; align-content: center; }
.bos-post-featured__meta { display: flex; gap: 10px; align-items: center; }
.bos-post-featured h2 { margin: 0; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.2; }
.bos-post-featured h2 a { color: inherit; text-decoration: none; }
.bos-post-featured h2 a:hover { color: var(--bos-brand); }
.bos-post-featured p { color: var(--bos-muted); margin: 0; }
.bos-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bos-post-grid .bos-post-card, .search .bos-post-card { grid-template-columns: 1fr; }
.bos-post-grid .bos-post-card > a > img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.bos-post-grid > article > div { padding: 18px 20px 20px; }
.bos-post-grid > article > div > p { margin: 0 0 4px; color: var(--bos-muted); font-size: 12px; }
.bos-post-grid > article h2 { font-size: 17px; }
.bos-post-single__hero { color: #fff; background: radial-gradient(760px 360px at 85% -40%, #3a2a72 0%, var(--bos-ink) 60%); padding: var(--bos-section-tight) 0; }
.bos-post-single__heroinner { width: min(860px, 100%); margin-inline: auto; }
.bos-post-single__meta { display: flex; gap: 10px; align-items: center; margin-bottom: 14px; }
.bos-post-single__cat { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .2); color: var(--bos-gold); }
.bos-post-single__hero .bos-post-card__date, .bos-post-single__hero .bos-post-card__readtime { color: #bdb4dd; }
.bos-post-single__hero h1 { color: #fff; font-size: clamp(28px, 3.4vw, 44px); margin: 0 0 10px; }
.bos-post-single__auth { color: #bdb4dd; margin: 0; font-size: 13.5px; }
.bos-post-single__image { width: min(980px, 100%); margin: -34px auto 0; border-radius: var(--bos-radius-l); overflow: hidden; box-shadow: var(--bos-shadow-2); }
.bos-post-single__image img { width: 100%; display: block; }
.bos-post-single .bos-entry-content { width: min(860px, 100%); margin-inline: auto; padding-top: 34px; }
.bos-post-single__foot { width: min(860px, 100%); margin: 26px auto 0; padding-top: 20px; border-top: 1px solid var(--bos-line); }
.bos-post-single__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; font-size: 12.5px; }
.bos-post-single__tags a { background: var(--bos-mist); border: 1px solid var(--bos-line); border-radius: 999px; padding: 5px 12px; text-decoration: none; color: var(--bos-ink); }
.bos-post-single__related { background: var(--bos-mist); padding: var(--bos-section-tight) 0; margin-top: var(--bos-section-tight); }
.bos-post-single__related h2 { margin: 0 0 18px; }
.bos-post-single__comments { width: min(860px, 100%); margin: var(--bos-section-tight) auto 0; }
.bos-content--single { padding-top: 0; }

/* ---------- pages --------------------------------------------------------------- */

.bos-content--page { max-width: 1180px; }
.bos-page-card { background: var(--bos-paper); border: 1px solid var(--bos-line); border-radius: var(--bos-radius-l); padding: clamp(26px, 4.5vw, 60px); box-shadow: var(--bos-shadow-1); }
.bos-page-header { margin-bottom: 20px; }
.bos-page-header .bos-kicker { margin-bottom: 8px; }
.bos-page-header h1 { font-size: clamp(28px, 3.4vw, 42px); margin: 0; }
.bos-entry-content { font-size: 15px; line-height: 1.75; }
.bos-entry-content h2 { font-size: 24px; margin: 1.4em 0 .5em; }
.bos-entry-content h3 { font-size: 18.5px; margin: 1.4em 0 .4em; }
.bos-entry-content h4 { font-size: 16px; margin: 1.2em 0 .4em; }
.bos-entry-content ul, .bos-entry-content ol { padding-left: 22px; }
.bos-entry-content li { margin-bottom: 6px; }
.bos-entry-content blockquote { margin: 1.2em 0; padding: 16px 22px; border-left: 4px solid var(--bos-gold); background: var(--bos-mist); border-radius: 0 12px 12px 0; }
.bos-entry-content table { width: 100%; border-collapse: collapse; margin: 1.2em 0; }
.bos-entry-content th, .bos-entry-content td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--bos-line); }
.bos-entry-content th { font-family: var(--bos-display); background: var(--bos-mist); }
.bos-entry-content a { font-weight: 600; }
.bos-entry-content .aligncenter { margin-inline: auto; }
.bos-elementor-page { min-height: 300px; }
.bos-empty { text-align: center; padding: 40px 20px; }
.bos-empty .search-form, .bos-404 .search-form { max-width: 440px; margin: 18px auto 26px; display: flex; gap: 0; border: 1.5px solid var(--bos-line); border-radius: 999px; overflow: hidden; }
.bos-empty .search-form input, .bos-404 .search-form input { border: 0; box-shadow: none; }
.bos-empty .search-form button, .bos-404 .search-form button { border: 0; background: var(--bos-brand); color: #fff; padding: 0 20px; }
.bos-404 { text-align: center; padding: var(--bos-section) 20px; }
.bos-404 h1 { font-size: clamp(30px, 4vw, 44px); margin: 0 0 10px; }
.bos-404__chips { justify-content: center; }
.bos-content--404 { max-width: 780px; }
.bos-content--search .bos-page-header, .bos-page-hero { text-align: left; }
.bos-comments { max-width: 860px; margin-inline: auto; }
.bos-comments h2 { font-size: 21px; }
.bos-comments .comment-list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 14px; }
.bos-comments .comment-list .comment-body { background: var(--bos-paper); border: 1px solid var(--bos-line); border-radius: var(--bos-radius-m); padding: 18px 20px; }
.bos-comments .comment-author { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.bos-comments .comment-author .avatar { border-radius: 50%; }
.bos-comments .comment-metadata { font-size: 12px; color: var(--bos-muted); }
.bos-comments .comment-content { margin-top: 8px; }
.bos-comments .reply { margin-top: 10px; }
.bos-comments .comment-reply-title { margin: 0 0 12px; }
.bos-comments .comment-form { display: grid; gap: 12px; }
.bos-comments .comment-form-comment textarea { width: 100%; }
.bos-comments .submit { justify-self: start; border: 0; border-radius: 999px; padding: 13px 26px; background: linear-gradient(135deg, var(--bos-brand-bright), var(--bos-brand) 55%, var(--bos-brand-2)); color: #fff; font-weight: 700; }
.bos-comments .children { list-style: none; padding-left: 26px; margin-top: 12px; display: grid; gap: 12px; }
.nav-links, .pagination, .bos-pagination { display: flex; gap: 8px; justify-content: center; }
.page-numbers { display: inline-flex; min-width: 38px; height: 38px; align-items: center; justify-content: center; padding: 0 12px; border: 1px solid var(--bos-line); border-radius: 10px; text-decoration: none; color: var(--bos-ink); font-weight: 600; }
.page-numbers.current { background: var(--bos-brand); border-color: var(--bos-brand); color: #fff; }
.page-numbers:hover:not(.current) { border-color: var(--bos-brand); color: var(--bos-brand); }
.bos-category-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.bos-category-chips a {
  display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border: 1.5px solid var(--bos-line);
  border-radius: 999px; background: var(--bos-paper); color: var(--bos-ink); font: 600 13px/1 var(--bos-sans); text-decoration: none;
}
.bos-category-chips a:hover { border-color: var(--bos-brand); color: var(--bos-brand); }
.bos-category-chips a.is-active { background: var(--bos-ink); border-color: var(--bos-ink); color: #fff; }
.bos-chip-count { font-size: 11px; color: var(--bos-muted); background: var(--bos-mist); border-radius: 999px; padding: 2.5px 7px; }
.bos-category-chips a.is-active .bos-chip-count { background: rgba(255, 255, 255, .16); color: #fff; }

/* widgets (shop-filters sidebar) */
.widget { margin: 0; }
.widget + .widget { margin-top: 18px; }
.widget-title { margin: 0 0 12px; font-size: 15px; }
.widget ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.widget ul a { text-decoration: none; color: var(--bos-ink); font-size: 13.5px; }
.widget ul a:hover { color: var(--bos-brand); }

/* ---------- responsive ---------------------------------------------------------- */

@media (max-width: 1180px) {
  .bos-hh-benefits__inner { grid-template-columns: repeat(3, 1fr); }
  .bos-hh-tiles { grid-template-columns: repeat(4, 1fr); }
  .bos-hh-tiles--extra { grid-template-columns: repeat(4, 1fr); }
  .bos-hh-makers__rail { grid-template-columns: repeat(3, 1fr); }
  .bos-service-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .bos-footer__main { grid-template-columns: 1fr 1fr; }
  .bos-hh-hero__inner { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
  .bos-hh-hero__rail { display: none; }
}

@media (max-width: 980px) {
  .bos-header__inner { grid-template-columns: auto 1fr auto; gap: 14px; }
  .bos-menu-toggle { display: inline-flex; }
  .bos-primary-nav { display: none; }
  .bos-announcement__detail { display: none; }
  .bos-search-toggle { display: inline-flex; }
  .bos-header-search { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 12px 16px; background: var(--bos-paper); border-bottom: 1px solid var(--bos-line); box-shadow: var(--bos-shadow-1); z-index: 58; }
  .bos-blog__layout { grid-template-columns: 1fr; }
  .bos-blog__sidebar { position: static; }
  .bos-post-featured { grid-template-columns: 1fr; }
  .bos-post-featured__media { min-height: 240px; }
  .bos-hh-deal__inner, .bos-hh-how__inner, .bos-hh-contact__grid, .bos-footer__news { grid-template-columns: 1fr; }
  .bos-hh-deal__media { max-width: 430px; margin-inline: auto; }
  .bos-hh-journal, .bos-post-grid, .bos-blog__relatedgrid { grid-template-columns: 1fr; }
  .bos-quick-view-panel { grid-template-columns: 1fr; }
  .bos-quick-view-image img { aspect-ratio: 16/9; }
}

@media (max-width: 700px) {
  /* HERO: copy first, card fan below, rail hidden */
  .bos-hh-hero__inner { grid-template-columns: 1fr; padding-top: 34px; }
  .bos-hh-hero__stage { min-height: 320px; order: 2; }
  .bos-hh-hero__card { width: clamp(120px, 30vw, 170px); }
  .bos-hh-hero__chip { padding: 8px 11px; }
  .bos-hh-hero__ctas .bos-hh-btn { flex: 1 1 auto; justify-content: center; }
  .bos-hh-benefits { margin-top: -18px; }
  .bos-hh-benefits__inner { grid-template-columns: 1fr 1fr; gap: 9px; padding: 10px; }
  .bos-hh-benefit { padding: 9px 10px; }
  .bos-hh-benefit:nth-child(n+5) { display: none; }
  .bos-hh-tiles, .bos-hh-tiles--extra { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bos-hh-tile { padding: 15px 14px; }
  .bos-hh-tile__icon { width: 44px; height: 44px; padding: 9px; }
  .bos-hh-banners { grid-template-columns: 1fr; }
  .bos-hh-banner--tall { min-height: 320px; }
  .bos-hh-banner { min-height: 200px; }
  .bos-hh-makers__rail { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .bos-hh-maker { flex-direction: column; align-items: flex-start; gap: 7px; padding: 16px; }
  .bos-hh-maker span { font-size: 16px; }
  .bos-hh-reviews { grid-template-columns: 1fr; }
  .bos-hh-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .bos-hh-contact__chips { grid-template-columns: 1fr; }
  .bos-service-strip__inner { grid-template-columns: 1fr; gap: 10px; }
  .bos-service-strip__inner > div { justify-content: flex-start; }
  .bos-footer__main { grid-template-columns: 1fr; gap: 26px; }
  .bos-footer__bottom { flex-direction: column; align-items: flex-start; }
  .bos-post-card { grid-template-columns: 1fr; }
  .bos-post-card__media { min-height: 190px; }
  .bos-header-search { position: static; }
  .bos-search-results { top: 100%; border-radius: 12px; }
  .bos-announcement__links { display: none; }
  .bos-to-top { bottom: 84px; }
}

@media (max-width: 480px) {
  .bos-brand__svg { width: 190px; }
  .bos-hh-tiles, .bos-hh-tiles--extra { grid-template-columns: 1fr 1fr; }
  .bos-contact-form__row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Keep the header search affordance font-independent and stable. */
.bos-header-search button[type="submit"]::before { content: ""; position: absolute; width: 13px; height: 13px; border: 1.8px solid currentColor; border-radius: 50%; top: 14px; left: 17px; }
.bos-header-search button[type="submit"]::after { content: ""; position: absolute; width: 7px; height: 1.8px; background: currentColor; border-radius: 2px; transform: rotate(45deg); top: 28px; left: 29px; }

/* 1.1.2 true-end header lock. */
@media (min-width: 981px) {
  .bos-header .bos-header__inner { display: grid !important; grid-template-columns: minmax(210px,250px) minmax(360px,650px) max-content !important; align-items: center !important; justify-content: space-between; width: min(1380px,calc(100% - 40px)); min-height: 76px; gap: clamp(22px,3vw,48px); padding: 13px 0; }
  .bos-header .bos-menu-toggle,.bos-header .bos-search-toggle { display: none !important; }
  .bos-header .bos-brand,.bos-header .custom-logo-link { grid-column: 1 !important; grid-row: 1 !important; justify-self: start; max-width: 250px; }
  .bos-header .bos-header-search { display: block !important; position: relative !important; grid-column: 2 !important; grid-row: 1 !important; inset: auto !important; width: 100% !important; margin: 0 !important; padding: 0 !important; background: transparent !important; box-shadow: none !important; }
  .bos-header .bos-header-actions { display: flex !important; position: static !important; grid-column: 3 !important; grid-row: 1 !important; align-items: center; justify-content: flex-end; flex-wrap: nowrap !important; width: auto !important; margin: 0 !important; }
}
@media (max-width: 980px) {
  .bos-header .bos-header__inner { display: grid !important; grid-template-columns: 44px minmax(130px,1fr) max-content !important; align-items: center; width: min(100% - 28px,920px); min-height: 66px; gap: 10px; padding: 10px 0; }
  .bos-header .bos-menu-toggle { display: inline-flex !important; grid-column: 1 !important; grid-row: 1 !important; }
  .bos-header .bos-brand,.bos-header .custom-logo-link { grid-column: 2 !important; grid-row: 1 !important; justify-self: center; max-width: 210px; }
  .bos-header .bos-header-actions { display: flex !important; grid-column: 3 !important; grid-row: 1 !important; flex-wrap: nowrap !important; }
  .bos-header .bos-account-button,.bos-header .bos-wishlist-button { display: none !important; }
  .bos-header .bos-search-toggle { display: inline-flex !important; }
  .bos-header .bos-header-search { display: none !important; position: absolute !important; z-index: 80; top: 100% !important; right: -14px !important; left: -14px !important; width: auto !important; margin: 0 !important; padding: 13px 14px 15px !important; border-bottom: 1px solid var(--bos-line); background: #fff !important; box-shadow: 0 18px 35px rgba(28,18,48,.14) !important; }
  .bos-header .bos-header-search.is-open { display: block !important; }
}
@media (max-width: 430px) {
  .bos-header .bos-header__inner { grid-template-columns: 40px minmax(105px,1fr) max-content !important; width: calc(100% - 20px); gap: 6px; }
  .bos-header .bos-brand,.bos-header .custom-logo-link { max-width: 150px; }
}
