/* ============================================================
   Businessbook Theme2 — NEXO Bold (from ecommerce/theme3)
   Scoped to body.site-theme-theme2. Palette bridge → admin --color-*
   ============================================================ */

/* ============================================================
   NEXO — Bold Department Store Theme
   style.css  |  Mobile-first · Hard-shadow design language
   ============================================================ */

/* ---- 1. PALETTE SEEDS (:root — #site-brand-palette overrides these) ---- */
:root {
  --color-primary:          #4f46e5;
  --color-primary-hover:    #3730a3;
  --color-primary-active:   #312e81;
  --color-primary-soft:     #ede9fe;
  --color-primary-text:     #ffffff;
  --color-secondary:        #3730a3;
  --color-secondary-hover:  #312e81;
  --color-secondary-soft:   #e0e7ff;
  --color-secondary-text:   #ffffff;
  --color-accent:           #fbbf24;
  --color-accent-hover:     #d97706;
  --color-accent-soft:      #fef3c7;
  --color-accent-text:      #111118;
  --color-bg:               #f7f7f8;
  --color-surface:          #ffffff;
  --color-surface-hover:    #f4f4f5;
  --color-text:             #111118;
  --color-text-heading:     #111118;
  --color-muted:            #6b6e7c;
  --color-border:           #d1d1d6;
  --color-border-soft:      #e4e4e7;
  --color-border-focus:     #4f46e5;
  --color-focus-ring:       #4f46e5;
  --color-ink:              var(--color-text);
  --color-on-primary:       var(--color-primary-text);
}

/* ---- 1b. NEXO TOKENS + PALETTE BRIDGE ---- */
body.site-theme-theme2 {
  /* Brand → admin palette */
  --c-indigo:       var(--color-primary);
  --c-indigo-dark:  var(--color-primary-hover);
  --c-indigo-light: var(--color-primary-soft);
  --c-yellow:       var(--color-accent);
  --c-yellow-dark:  var(--color-accent-hover);
  --c-yellow-light: var(--color-accent-soft);
  --c-coral:        var(--color-accent);
  --c-coral-dark:   var(--color-accent-hover);
  --c-coral-light:  var(--color-accent-soft);
  --c-secondary:    var(--color-secondary);
  --c-secondary-soft: var(--color-secondary-soft);

  /* Dark bands (hero / ticker) track secondary */
  --c-canvas:       var(--color-secondary);
  --c-canvas-2:     color-mix(in srgb, var(--color-secondary) 82%, #000);
  --c-canvas-3:     color-mix(in srgb, var(--color-secondary) 68%, #000);

  /* Surfaces / neutrals */
  --c-bg:           var(--color-bg);
  --c-bg-white:     var(--color-surface);
  --c-border:       var(--color-border-soft, var(--color-border));
  --c-border-dark:  var(--color-border);
  --c-text:         var(--color-text);
  --c-text-muted:   var(--color-muted);
  --c-text-light:   color-mix(in srgb, var(--color-muted) 70%, var(--color-surface));
  --c-text-inv:     var(--color-primary-text);
  --c-on-dark:      var(--color-secondary-text);
  --c-on-primary:   var(--color-primary-text);
  --c-on-accent:    var(--color-accent-text);

  /* Feedback */
  --c-success:      #16a34a;
  --c-warning:      var(--color-accent-hover);

  /* Fonts */
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Type scale */
  --fs-2xs: .7rem;
  --fs-xs:  .78rem;
  --fs-sm:  .875rem;
  --fs-md:  1rem;
  --fs-lg:  1.125rem;
  --fs-xl:  1.375rem;
  --fs-2xl: 1.75rem;
  --fs-3xl: 2.375rem;
  --fs-4xl: 3.25rem;
  --fs-5xl: 4.5rem;

  /* Spacing */
  --sp-1:  .25rem;  --sp-2:  .5rem;   --sp-3:  .75rem;
  --sp-4:  1rem;    --sp-5:  1.25rem; --sp-6:  1.5rem;
  --sp-8:  2rem;    --sp-10: 2.5rem;  --sp-12: 3rem;
  --sp-16: 4rem;    --sp-20: 5rem;    --sp-24: 6rem;

  /* Layout */
  --container-max: 1360px;
  --container-pad: 1rem;

  /* Radius — sharp/angular */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-full: 9999px;

  /* Shadows — hard-offset tracks ink / brand */
  --sh-hard:        4px 4px 0 var(--c-text);
  --sh-hard-ind:    4px 4px 0 var(--c-indigo);
  --sh-hard-yel:    4px 4px 0 var(--c-yellow);
  --sh-hard-inv:    4px 4px 0 color-mix(in srgb, var(--c-on-dark) 35%, transparent);
  --sh-soft:        0 2px 8px color-mix(in srgb, var(--c-text) 8%, transparent),
                    0 1px 3px color-mix(in srgb, var(--c-text) 6%, transparent);
  --sh-md:          0 8px 24px color-mix(in srgb, var(--c-text) 10%, transparent);
  --sh-lg:          0 20px 48px color-mix(in srgb, var(--c-text) 14%, transparent);

  /* Motion */
  --ease:    .18s ease;
  --ease-md: .28s ease;

  /* Header */
  --header-h: 64px;
  --t-nav-h: var(--header-h);
}

/* ---- 2. RESET ----
   Only box-sizing on * — never padding/margin on *, or it beats
   .nav-link / .btn / .section (specificity trap → glued nav, collapsed gaps). */
body.site-theme-theme2 *,
body.site-theme-theme2 *::before,
body.site-theme-theme2 *::after { box-sizing: border-box; }
html:has(body.site-theme-theme2) { scroll-behavior: smooth; font-size: 16px; }
body.site-theme-theme2 {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.site-theme-theme2 img,
body.site-theme-theme2 video { max-width: 100%; height: auto; display: block; }
body.site-theme-theme2 a { color: inherit; text-decoration: none; }
body.site-theme-theme2 ul,
body.site-theme-theme2 ol { list-style: none; margin: 0; padding: 0; }
body.site-theme-theme2 button:not(.btn) {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
body.site-theme-theme2 input,
body.site-theme-theme2 textarea,
body.site-theme-theme2 select { font-family: inherit; font-size: inherit; outline: none; }
body.site-theme-theme2 h1,
body.site-theme-theme2 h2,
body.site-theme-theme2 h3,
body.site-theme-theme2 h4,
body.site-theme-theme2 h5,
body.site-theme-theme2 h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
}

/* ---- 3. LAYOUT ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.section    { padding: var(--sp-16) 0; }
.section-sm { padding: var(--sp-10) 0; }
.section-lg { padding: var(--sp-24) 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }

/* Scrollable row */
.scroll-x {
  display: flex;
  gap: var(--sp-4);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--sp-2);
}
.scroll-x::-webkit-scrollbar { height: 4px; }
.scroll-x::-webkit-scrollbar-track { background: var(--c-border); }
.scroll-x::-webkit-scrollbar-thumb { background: var(--c-indigo); border-radius: 2px; }
.scroll-x > * { scroll-snap-align: start; flex-shrink: 0; }

/* Section header */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: var(--sp-8); gap: var(--sp-4); }
.sec-head h2 {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 800;
  position: relative;
  display: inline-block;
}
.sec-head h2 .underline-accent {
  display: block;
  width: 60%;
  height: 4px;
  background: var(--c-yellow);
  margin-top: 6px;
}
.sec-head .view-all {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-indigo);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: gap var(--ease);
}
.sec-head .view-all:hover { gap: 8px; text-decoration: underline; }

/* ---- 4. TICKER / ANNOUNCEMENT STRIP ---- */
.ticker-strip {
  background: var(--c-canvas);
  color: var(--c-on-dark);
  height: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: var(--sp-12);
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
.ticker-strip:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.ticker-item .dot { width: 4px; height: 4px; background: var(--c-yellow); border-radius: 50%; flex-shrink: 0; }

/* ---- 5. HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--c-bg-white);
  border-bottom: 2px solid var(--c-text);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  height: 100%;
  width: 100%;
}

/* Logo — brand takes remaining header space (hamburger sits at the right end) */
.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--c-text);
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: normal;
  overflow: hidden;
}
.logo .logo-text {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: normal;
  white-space: normal;
  line-height: 1.2;
}
.logo .logo-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--c-indigo);
  border-radius: 50%;
  margin-bottom: 2px;
  flex-shrink: 0;
}

/* Nav */
.main-nav { display: none; flex: 1 1 auto; min-width: 0; justify-content: center; }
.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.1rem 0.15rem;
  row-gap: 0;
}
.nav-item { position: relative; flex-shrink: 0; }
.nav-link {
  display: block;
  padding: 0 0.85rem;
  height: var(--header-h);
  line-height: var(--header-h);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-text);
  transition: color var(--ease);
  letter-spacing: .01em;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--color-primary, var(--c-indigo)); }
.nav-link.nav-sale { color: var(--c-coral); }
.nav-link.nav-deals { color: var(--c-yellow-dark); font-weight: 700; }

/* Custom header submenu (Designer menus) */
.nav-item--has-sub > .nav-link::after {
  content: "";
  display: inline-block;
  width: 0.35em;
  height: 0.35em;
  margin-left: 0.35em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-0.12em) rotate(45deg);
  opacity: 0.65;
}
.nav-submenu {
  position: absolute;
  top: calc(100% - 0.15rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 12rem;
  margin: 0;
  padding: 0.45rem;
  list-style: none;
  background: var(--c-bg-white);
  border: 2px solid var(--c-text);
  box-shadow: var(--sh-hard);
  opacity: 0;
  visibility: hidden;
  transition: all var(--ease-md);
  z-index: 200;
}
.nav-item--has-sub:hover > .nav-submenu,
.nav-item--has-sub:focus-within > .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-sublink {
  display: block;
  padding: 0.45rem 0.7rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-text);
  white-space: nowrap;
  transition: color var(--ease), padding-left var(--ease);
}
.nav-sublink:hover {
  color: var(--color-primary, var(--c-indigo));
  padding-left: 0.95rem;
}
.mobile-drawer-link--sub {
  padding-left: 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
}

/* Mega dropdown */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 520px;
  background: var(--c-bg-white);
  border: 2px solid var(--c-text);
  box-shadow: var(--sh-hard);
  opacity: 0;
  visibility: hidden;
  transition: all var(--ease-md);
  z-index: 200;
  padding: var(--sp-6);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.nav-item:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-col h4 {
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
  color: var(--c-text-muted);
}
.mega-col a {
  display: block;
  font-size: var(--fs-sm);
  color: var(--c-text);
  padding: var(--sp-1) 0;
  transition: color var(--ease), padding-left var(--ease);
}
.mega-col a:hover { color: var(--c-indigo); padding-left: var(--sp-2); }

/* Header icons */
.header-icons { display: flex; align-items: center; gap: var(--sp-1); margin-left: auto; flex-shrink: 0; }
.icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  font-size: 1rem;
  color: var(--c-text);
  position: relative;
  transition: background var(--ease), color var(--ease);
}
.icon-btn:hover { background: var(--c-bg); color: var(--c-indigo); }
.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 17px;
  height: 17px;
  background: var(--c-coral);
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  border: 1.5px solid var(--c-text);
  line-height: 1;
}
.cart-count[hidden] { display: none !important; }

/* Mobile hamburger — right end of header */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.55rem 0.45rem;
  margin-left: 0;
  cursor: pointer;
  flex-shrink: 0;
  border: none;
  background: transparent;
  box-sizing: border-box;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--c-text);
  border-radius: 1px;
  transition: transform var(--ease-md), opacity var(--ease-md);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- 6. MOBILE DRAWER ---- */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--ease-md);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-drawer {
  position: fixed;
  top: 0; left: 0;
  width: 300px;
  height: 100%;
  background: var(--c-bg-white);
  border-right: 2px solid var(--c-text);
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform var(--ease-md);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer[hidden],
.mobile-overlay[hidden] { display: none !important; }
.mobile-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 2px solid var(--c-text);
}
.mobile-drawer-head .logo {
  display: block;
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: normal;
  font-size: clamp(1.1rem, 4.4vw, 1.25rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.mobile-drawer-head .logo.is-brand-mid {
  font-size: clamp(1.02rem, 4vw, 1.15rem);
}
.mobile-drawer-head .logo.is-brand-long {
  font-size: clamp(0.98rem, 3.8vw, 1.1rem);
}
.mobile-drawer-head .bb-close,
.mobile-drawer-head .icon-btn {
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.mobile-drawer-close { font-size: 1.4rem; }
.mobile-nav-links { padding: var(--sp-4) 0; flex: 1; }
.mobile-drawer-link,
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-6);
  font-size: var(--fs-md);
  font-weight: 600;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
  text-decoration: none;
}
.mobile-nav-link.sale { color: var(--c-coral); }
.mobile-nav-link.deals { color: var(--c-yellow-dark); }
.mobile-drawer-foot { padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3); border-top: 2px solid var(--c-text); }

/* ---- 7. SEARCH OVERLAY ---- */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(255,255,255,.98);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--sp-8);
  opacity: 0;
  visibility: hidden;
  transition: all var(--ease-md);
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-overlay-close {
  position: absolute;
  top: var(--sp-5); right: var(--sp-6);
  font-size: 1.6rem;
  color: var(--c-text-muted);
  transition: color var(--ease);
}
.search-overlay-close:hover { color: var(--c-text); }
.search-form {
  width: 100%;
  max-width: 640px;
  border-bottom: 3px solid var(--c-text);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-bottom: var(--sp-3);
}
.search-form input {
  flex: 1;
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 700;
  border: none;
  background: transparent;
  color: var(--c-text);
}
.search-form input::placeholder { color: var(--c-border-dark); }
.search-form button { font-size: 1.5rem; color: var(--c-text-muted); }
.search-hints { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); max-width: 640px; width: 100%; }
.search-hint {
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: .4rem 1rem;
  border: 2px solid var(--c-border);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: border-color var(--ease), color var(--ease);
}
.search-hint:hover { border-color: var(--c-indigo); color: var(--c-indigo); }

/* ---- 8. CART DRAWER ---- */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1000;
  opacity: 0; visibility: hidden;
  transition: all var(--ease-md);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100%;
  background: var(--c-bg-white);
  border-left: 2px solid var(--c-text);
  box-shadow: -8px 0 0 var(--c-indigo);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform var(--ease-md);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 2px solid var(--c-text);
}
.cart-drawer-head h3 { font-size: var(--fs-lg); font-weight: 800; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: var(--sp-4) var(--sp-6); }
.cart-empty {
  text-align: center;
  padding: var(--sp-16) var(--sp-6);
  color: var(--c-text-muted);
}
.cart-empty i { font-size: 3rem; margin-bottom: var(--sp-4); display: block; color: var(--c-border-dark); }
.cart-drawer-foot {
  padding: var(--sp-5) var(--sp-6);
  border-top: 2px solid var(--c-text);
}
.cart-totals { display: flex; justify-content: space-between; font-size: var(--fs-lg); font-weight: 800; margin-bottom: var(--sp-4); }

/* Cart item in drawer */
.cart-item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--c-border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 72px; height: 88px;
  object-fit: cover;
  background: var(--c-bg);
  border: 2px solid var(--c-border);
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: var(--fs-sm); font-weight: 700; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-meta { font-size: var(--fs-xs); color: var(--c-text-muted); margin-bottom: var(--sp-3); }
.cart-item-price { font-size: var(--fs-sm); font-weight: 800; }
.cart-item-remove { font-size: var(--fs-xs); color: var(--c-coral); text-decoration: underline; margin-top: var(--sp-2); display: inline-block; }

/* ---- 9. BUTTONS (palette contrast: fill + label + full border + visible offset) ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: .78rem 1.75rem;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  box-sizing: border-box;
  transition: background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary,
.btn-indigo {
  background: var(--color-primary, var(--c-indigo));
  color: var(--color-primary-text, var(--c-on-primary, #fff));
  border-color: var(--color-primary, var(--c-indigo));
  box-shadow: 4px 4px 0 var(--color-primary-hover, var(--c-indigo-dark));
}
.btn-primary:hover,
.btn-indigo:hover {
  background: var(--color-primary-hover, var(--c-indigo-dark));
  border-color: var(--color-primary-hover, var(--c-indigo-dark));
  color: var(--color-primary-text, var(--c-on-primary, #fff));
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--color-primary, var(--c-indigo));
}
.btn-yellow,
.btn-coral {
  background: var(--color-accent, var(--c-yellow));
  color: var(--color-accent-text, var(--c-on-accent, #111));
  border-color: var(--color-accent, var(--c-yellow));
  box-shadow: 4px 4px 0 var(--color-primary, var(--c-indigo));
}
.btn-yellow:hover,
.btn-coral:hover {
  background: var(--color-accent-hover, var(--c-yellow-dark));
  border-color: var(--color-accent-hover, var(--c-yellow-dark));
  color: var(--color-accent-text, var(--c-on-accent, #111));
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--color-primary, var(--c-indigo));
}
.btn-dark {
  background: var(--color-secondary, var(--c-canvas));
  color: var(--color-secondary-text, var(--c-on-dark, #fff));
  border-color: var(--color-secondary, var(--c-canvas));
  box-shadow: 4px 4px 0 var(--color-primary, var(--c-indigo));
}
.btn-dark:hover {
  background: var(--color-secondary-hover, var(--c-canvas-2));
  border-color: var(--color-secondary-hover, var(--c-canvas-2));
  color: var(--color-secondary-text, var(--c-on-dark, #fff));
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--color-accent, var(--c-yellow));
}
.btn-outline {
  background: transparent;
  color: var(--color-text, var(--c-text));
  border: 2px solid var(--color-text, var(--c-text));
  box-shadow: 4px 4px 0 var(--color-primary, var(--c-indigo));
}
.btn-outline:hover {
  background: var(--color-primary, var(--c-indigo));
  color: var(--color-primary-text, var(--c-on-primary, #fff));
  border-color: var(--color-primary, var(--c-indigo));
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--color-accent, var(--c-yellow));
}
/* Hero CTAs sit on secondary (dark) — use on-dark / accent for full edge contrast */
.hero .btn-yellow,
.hero .btn-coral {
  box-shadow: 4px 4px 0 color-mix(in srgb, var(--color-secondary-text, #fff) 35%, #000);
}
.hero .btn-yellow:hover,
.hero .btn-coral:hover {
  box-shadow: 6px 6px 0 var(--color-primary, var(--c-indigo));
}
.hero .btn-outline {
  color: var(--color-secondary-text, var(--c-on-dark, #fff));
  border: 2px solid var(--color-secondary-text, var(--c-on-dark, #fff));
  background: transparent;
  box-shadow: 4px 4px 0 var(--color-accent, var(--c-yellow));
}
.hero .btn-outline:hover {
  background: var(--color-accent, var(--c-yellow));
  color: var(--color-accent-text, var(--c-on-accent, #111));
  border-color: var(--color-accent, var(--c-yellow));
  box-shadow: 6px 6px 0 var(--color-primary, var(--c-indigo));
}
.btn-lg   { padding: 1rem 2.25rem; font-size: var(--fs-md); }
.btn-sm   { padding: .5rem 1rem; font-size: var(--fs-xs); }
.btn-full { width: 100%; }
.btn-icon { width: 44px; height: 44px; padding: 0; }

/* Qty stepper */
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--c-text);
  border-radius: var(--r-sm);
  box-shadow: var(--sh-hard);
  overflow: hidden;
}
.qty-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--c-bg);
  transition: background var(--ease);
}
.qty-btn:hover { background: var(--c-indigo-light); }
.qty-val {
  width: 44px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-md);
  border-left: 2px solid var(--c-text);
  border-right: 2px solid var(--c-text);
  background: var(--c-bg-white);
}

/* ---- 10. BADGES ---- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: .25rem .55rem;
  font-size: var(--fs-2xs);
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border: 1.5px solid currentColor;
}
.badge-new      { background: var(--c-indigo-light); color: var(--c-indigo); }
.badge-sale     { background: var(--c-coral); color: #fff; border-color: var(--c-coral-dark); }
.badge-hot      { background: var(--c-yellow); color: var(--c-text); border-color: var(--c-yellow-dark); }
.badge-sold     { background: var(--c-bg); color: var(--c-text-muted); border-color: var(--c-border-dark); }
.badge-low      { background: var(--c-coral-light); color: var(--c-coral-dark); border-color: var(--c-coral); }

/* ---- 11. PRODUCT CARD ---- */
.product-card {
  background: var(--c-bg-white);
  border: 2px solid var(--c-text);
  border-radius: var(--r-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-hard);
  transition: transform var(--ease-md), box-shadow var(--ease-md);
  position: relative;
}
.product-card:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--c-indigo); }

.product-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--c-bg);
  isolation: isolate;
}
.product-card-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .45s ease;
}
.product-card:hover .product-card-img-wrap img { transform: scale(1.08); }

.product-card-badges { position: absolute; top: var(--sp-3); left: var(--sp-3); display: flex; flex-direction: column; gap: var(--sp-1); z-index: 2; }
.product-card-actions {
  position: absolute;
  top: var(--sp-3); right: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  z-index: 2;
  opacity: 0;
  transform: translateX(6px);
  transition: all var(--ease-md);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }
.product-action-btn {
  width: 36px; height: 36px;
  background: var(--c-bg-white);
  border: 2px solid var(--c-text);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem;
  transition: background var(--ease), color var(--ease);
  box-shadow: 2px 2px 0 var(--c-text);
}
.product-action-btn:hover { background: var(--c-indigo); color: #fff; border-color: var(--c-indigo); }

.product-card-quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: var(--c-indigo);
  color: var(--c-on-primary);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 0.7rem 0.5rem;
  text-align: center;
  transform: translateY(0);
  transition: background var(--ease);
  border: none;
  border-top: 2px solid var(--c-text);
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}
.product-card-quick-add:hover,
.product-card-quick-add.is-added { background: var(--c-indigo-dark); }

.product-card-body { padding: var(--sp-4); display: flex; flex-direction: column; gap: 4px; flex: 1; }
.product-card-brand { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--c-text-muted); }
.product-card-name { font-family: var(--font-display); font-size: var(--fs-sm); font-weight: 700; line-height: 1.35; }
.product-card-name a:hover { color: var(--c-indigo); }
.product-card-price { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; margin-top: var(--sp-1); }
.price-cur { font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 800; }
.price-cur.is-sale { color: var(--c-coral); }
.price-orig { font-size: var(--fs-sm); text-decoration: line-through; color: var(--c-text-light); }
.price-save { font-size: var(--fs-xs); font-weight: 800; background: var(--c-coral); color: #fff; padding: 2px 6px; border-radius: var(--r-sm); }

.product-card-rating { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-xs); color: var(--c-text-muted); margin-top: 2px; }
.stars-inline { color: var(--c-yellow); letter-spacing: -1px; font-size: .7rem; }

/* Wide scroll-row card */
.product-card.compact { width: 200px; }
.product-card.compact .product-card-img-wrap { aspect-ratio: 1/1; }

/* ---- 12. HERO ---- */
.hero {
  display: block;
  background: var(--c-canvas);
  overflow: hidden;
  position: relative;
}
.hero-viewport {
  position: relative;
  width: 100%;
}
.hero-slide {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 480px;
  width: 100%;
}
.hero-slide[hidden] {
  display: none !important;
}
/* Multi-hero: stack slides so viewport height = tallest entry */
.hero--carousel .hero-viewport {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
.hero--carousel .hero-slide {
  grid-area: 1 / 1;
  width: 100%;
  align-self: stretch;
}
.hero--carousel .hero-slide[hidden] {
  display: grid !important;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero--carousel .hero-slide.is-active {
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-12) var(--sp-6);
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-yellow);
  margin-bottom: var(--sp-5);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-yellow);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  color: var(--c-on-dark);
  letter-spacing: -.04em;
  margin-bottom: var(--sp-6);
}
.hero-title .highlight { color: var(--c-yellow); }
.hero-subtitle {
  font-size: var(--fs-md);
  color: color-mix(in srgb, var(--c-on-dark) 72%, transparent);
  margin-bottom: var(--sp-8);
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.hero-img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: .8; }
.hero-img-block {
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: var(--c-indigo);
  opacity: .25;
}
/* Hero stats removed from public theme2 */
.hero-stats { display: none !important; }

.hero-nav {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 0.6rem;
  background: color-mix(in srgb, var(--color-secondary, var(--c-canvas-2)) 82%, #000);
  border: 2px solid var(--color-accent, var(--c-yellow));
  border-radius: var(--r-full);
  backdrop-filter: blur(8px);
  box-shadow: 3px 3px 0 var(--color-text, var(--c-text));
}
.hero-nav__btn {
  width: 2.15rem;
  height: 2.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary, var(--c-indigo));
  border: 2px solid var(--color-primary, var(--c-indigo));
  border-radius: var(--r-full);
  background: var(--color-surface, var(--c-bg-white, #fff));
  transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}
.hero-nav__btn:hover,
.hero-nav__btn:focus-visible {
  background: var(--color-accent, var(--c-yellow));
  border-color: var(--color-accent, var(--c-yellow));
  color: var(--color-accent-text, var(--c-on-accent, #111));
  outline: none;
}
.hero-nav__dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.hero-nav__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: color-mix(in srgb, var(--color-secondary-text, var(--c-on-dark, #fff)) 45%, transparent);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.hero-nav__dot.is-active {
  background: var(--color-accent, var(--c-yellow));
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-accent, var(--c-yellow)) 35%, transparent);
  transform: scale(1.2);
}

/* ---- 13. CATEGORY TILES ---- */
.cat-strip { display: flex; gap: var(--sp-4); overflow-x: auto; padding-bottom: var(--sp-2); scrollbar-width: none; }
.cat-strip::-webkit-scrollbar { display: none; }
.cat-tile {
  flex-shrink: 0;
  width: 160px;
  border: 2px solid var(--c-text);
  border-radius: var(--r-sm);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  box-shadow: var(--sh-hard);
  transition: transform var(--ease-md), box-shadow var(--ease-md);
  cursor: pointer;
}
.cat-tile:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--c-indigo); }
.cat-tile img { width: 100%; height: 100%; object-fit: cover; }
.cat-tile-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(12,12,13,.95) 0%, transparent 100%);
  padding: var(--sp-5) var(--sp-3) var(--sp-3);
  color: #fff;
}
.cat-tile-label h3 { font-family: var(--font-display); font-size: var(--fs-md); font-weight: 800; line-height: 1.2; margin-bottom: 2px; }
.cat-tile-label span { font-size: var(--fs-xs); color: rgba(255,255,255,.6); }
.cat-tile-color-strip { height: 5px; width: 100%; position: absolute; top: 0; left: 0; }

/* ---- 14. FEATURED SPOTLIGHT ---- */
.spotlight-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 2px solid var(--c-text);
  border-radius: var(--r-sm);
  overflow: hidden;
  box-shadow: var(--sh-hard);
  margin-bottom: var(--sp-8);
}
.spotlight-img { position: relative; min-height: 320px; overflow: hidden; }
.spotlight-img img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-img-overlay {
  position: absolute;
  inset: 0;
  background: var(--c-indigo);
  opacity: .12;
}
.spotlight-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-10) var(--sp-8);
  background: var(--c-canvas);
  color: var(--c-text-inv);
}
.spotlight-text .eyebrow {
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-yellow);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.spotlight-text h2 { font-size: var(--fs-3xl); font-weight: 800; color: #fff; margin-bottom: var(--sp-4); line-height: 1.1; }
.spotlight-text p { color: rgba(255,255,255,.65); font-size: var(--fs-md); line-height: 1.7; margin-bottom: var(--sp-6); }
.spotlight-meta { display: flex; align-items: center; gap: var(--sp-4); margin-bottom: var(--sp-6); flex-wrap: wrap; }
.spotlight-price { font-family: var(--font-display); font-size: var(--fs-2xl); font-weight: 800; color: var(--c-yellow); }
.spotlight-orig  { font-size: var(--fs-md); text-decoration: line-through; color: rgba(255,255,255,.4); }

/* ---- 15. FLASH SALE BANNER ---- */
.flash-banner {
  background: var(--c-canvas);
  padding: var(--sp-12) 0;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--c-yellow);
  border-bottom: 3px solid var(--c-yellow);
}
.flash-banner::before {
  content: 'SALE';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 800;
  color: rgba(251,191,36,.04);
  letter-spacing: -.06em;
  pointer-events: none;
}
.flash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
  text-align: center;
}
.flash-eyebrow { font-size: var(--fs-xs); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--c-yellow); }
.flash-title { font-family: var(--font-display); font-size: clamp(2rem, 6vw, 4rem); font-weight: 800; color: #fff; line-height: 1.1; }
.flash-title span { color: var(--c-yellow); }

/* Countdown */
.countdown { display: flex; align-items: center; gap: var(--sp-3); }
.cdown-block {
  text-align: center;
  background: var(--c-canvas-2);
  border: 2px solid var(--c-yellow);
  border-radius: var(--r-sm);
  min-width: 72px;
  padding: var(--sp-3) var(--sp-2);
  box-shadow: 3px 3px 0 var(--c-yellow);
}
.cdown-num { font-family: var(--font-display); font-size: var(--fs-2xl); font-weight: 800; color: var(--c-yellow); line-height: 1; display: block; font-variant-numeric: tabular-nums; }
.cdown-label { font-size: var(--fs-2xs); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: 4px; display: block; }
.cdown-sep { font-size: var(--fs-2xl); font-weight: 800; color: var(--c-yellow); opacity: .5; }

/* ---- 16. LOGOS STRIP ---- */
.logos-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-8);
  padding: var(--sp-10) 0;
}
.logo-item {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--c-text-light);
  transition: color var(--ease);
}
.logo-item:hover { color: var(--c-text); }

/* ---- 17. NEWSLETTER ---- */
.newsletter-section {
  background: var(--c-indigo);
  padding: var(--sp-16) 0;
  position: relative;
  overflow: hidden;
}
.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.newsletter-inner { position: relative; z-index: 1; text-align: center; }
.newsletter-section h2 { font-size: clamp(1.8rem, 4vw, 3rem); color: #fff; font-weight: 800; margin-bottom: var(--sp-4); }
.newsletter-section p { color: rgba(255,255,255,.75); font-size: var(--fs-md); margin-bottom: var(--sp-8); max-width: 480px; margin-left: auto; margin-right: auto; }
.newsletter-form { display: flex; max-width: 500px; margin: 0 auto; gap: var(--sp-3); }
.newsletter-input {
  flex: 1;
  padding: .875rem 1.25rem;
  border: 2px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
  color: #fff;
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  transition: border-color var(--ease);
}
.newsletter-input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-input:focus { border-color: var(--c-yellow); }
.newsletter-note { font-size: var(--fs-xs); color: rgba(255,255,255,.4); margin-top: var(--sp-4); }

/* ---- 18. FOOTER ---- (light canvas; dark ink for WCAG contrast) */
.site-footer {
  background: var(--c-bg-white);
  color: var(--c-text);
  border-top: 2px solid var(--c-text);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: var(--sp-10);
  padding: var(--sp-16) 0 var(--sp-12);
}
.footer-brand .logo { color: var(--c-text); margin-bottom: var(--sp-4); display: flex; }
.footer-tagline { font-size: var(--fs-sm); line-height: 1.8; max-width: 280px; margin-bottom: var(--sp-6); color: var(--c-text); }
.footer-social { display: flex; gap: var(--sp-3); }
.social-btn {
  width: 38px; height: 38px;
  border: 2px solid var(--c-border-dark);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-text);
  font-size: .95rem;
  transition: all var(--ease);
}
.social-btn:hover { background: var(--c-indigo); border-color: var(--c-indigo); color: #fff; transform: translate(-2px,-2px); box-shadow: 3px 3px 0 var(--c-yellow); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: var(--sp-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-link { font-size: var(--fs-sm); color: var(--c-text); transition: color var(--ease), padding-left var(--ease); }
.footer-link:hover { color: var(--c-indigo); padding-left: 6px; }
.footer-contact-item { display: flex; gap: var(--sp-3); align-items: flex-start; margin-bottom: var(--sp-3); font-size: var(--fs-sm); color: var(--c-text); }
.footer-contact-item i { margin-top: 3px; color: var(--c-indigo); flex-shrink: 0; }
.footer-pay-label { font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: var(--sp-3); color: var(--c-text); }
.footer-pay-icons { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.pay-chip {
  padding: .3rem .65rem;
  background: var(--c-bg);
  border: 1px solid var(--c-border-dark);
  border-radius: var(--r-sm);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--c-text);
}
.footer-bottom {
  border-top: 1px solid var(--c-border-dark);
  padding: var(--sp-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-size: var(--fs-xs);
  color: var(--c-text);
}
.footer-bottom-links { display: flex; gap: var(--sp-5); }
.footer-bottom-links a { color: var(--c-text); transition: color var(--ease); }
.footer-bottom-links a:hover { color: var(--c-indigo); }

/* ---- 19. SHOP PAGE ---- */
.shop-hero {
  background: var(--c-indigo);
  padding: var(--sp-10) 0;
  border-bottom: 3px solid var(--c-text);
}
.shop-hero-inner { display: flex; flex-direction: column; gap: var(--sp-2); }
.shop-hero-inner h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: #fff; font-weight: 800; }
.shop-hero-inner .breadcrumb { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-xs); color: rgba(255,255,255,.6); }
.shop-hero-inner .breadcrumb a { color: rgba(255,255,255,.6); }
.shop-hero-inner .breadcrumb a:hover { color: #fff; }
.shop-hero-inner .breadcrumb span.sep { opacity: .4; }

.shop-layout { display: grid; grid-template-columns: 1fr; gap: var(--sp-8); align-items: start; padding: var(--sp-8) 0; }
.sidebar { position: relative; }
.sidebar-title {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 800;
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-3);
  border-bottom: 3px solid var(--c-text);
}
.filter-group { border-bottom: 1px solid var(--c-border); padding: var(--sp-4) 0; }
.filter-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-sm);
  font-weight: 700;
  cursor: pointer;
  padding: var(--sp-1) 0;
}
.filter-group-head i { font-size: .75rem; transition: transform var(--ease); }
.filter-group-head.collapsed i { transform: rotate(-90deg); }
.filter-options { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-3); }
.filter-opt { display: flex; align-items: center; gap: var(--sp-3); font-size: var(--fs-sm); cursor: pointer; }
.filter-opt input[type="checkbox"] { accent-color: var(--c-indigo); width: 15px; height: 15px; }
.filter-opt .badge-count { margin-left: auto; font-size: var(--fs-xs); background: var(--c-bg); border: 1px solid var(--c-border); padding: 1px 7px; border-radius: var(--r-full); color: var(--c-text-muted); }
.filter-colors-row { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-3); }
.filter-color-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--c-border-dark);
  cursor: pointer;
  transition: all var(--ease);
}
.filter-color-dot:hover, .filter-color-dot.active { border-color: var(--c-text); transform: scale(1.15); box-shadow: 0 0 0 2px var(--c-bg-white), 0 0 0 4px var(--c-indigo); }

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-5);
  border-bottom: 2px solid var(--c-text);
}
.shop-count { font-size: var(--fs-sm); color: var(--c-text-muted); }
.shop-tools { display: flex; align-items: center; gap: var(--sp-3); }
.sort-select {
  padding: .45rem .85rem;
  border: 2px solid var(--c-text);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  background: var(--c-bg-white);
  appearance: none;
  cursor: pointer;
}
.view-btns { display: flex; gap: 0; border: 2px solid var(--c-text); border-radius: var(--r-sm); overflow: hidden; }
.view-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem;
  background: var(--c-bg-white);
  color: var(--c-text-muted);
  transition: all var(--ease);
}
.view-btn + .view-btn { border-left: 2px solid var(--c-text); }
.view-btn.active, .view-btn:hover { background: var(--c-text); color: #fff; }

.active-chips { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-5); }
.active-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: .3rem .75rem;
  background: var(--c-indigo-light);
  border: 1.5px solid var(--c-indigo);
  border-radius: var(--r-sm);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--c-indigo);
  cursor: pointer;
  transition: background var(--ease);
}
.active-chip:hover { background: var(--c-indigo); color: #fff; }

.pagination { display: flex; align-items: center; justify-content: center; gap: var(--sp-2); margin-top: var(--sp-12); }
.page-btn {
  width: 40px; height: 40px;
  border: 2px solid var(--c-text);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-sm);
  font-weight: 700;
  transition: all var(--ease);
  box-shadow: 2px 2px 0 var(--c-text);
}
.page-btn:hover, .page-btn.active { background: var(--c-indigo); color: #fff; border-color: var(--c-indigo); }

/* ---- 20. PRODUCT DETAIL ---- */
.pd-layout { display: grid; grid-template-columns: 1fr; gap: var(--sp-8); align-items: start; }
.pd-gallery { display: grid; grid-template-columns: 72px 1fr; gap: var(--sp-3); }
.pd-thumbs { display: flex; flex-direction: column; gap: var(--sp-2); }
.pd-thumb {
  width: 72px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 2px solid var(--c-border);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: border-color var(--ease);
}
.pd-thumb.active, .pd-thumb:hover { border-color: var(--c-indigo); box-shadow: 2px 2px 0 var(--c-indigo); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-main {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 2px solid var(--c-text);
  border-radius: var(--r-sm);
  box-shadow: var(--sh-hard-ind);
}
.pd-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-main-badge { position: absolute; top: var(--sp-4); left: var(--sp-4); }

.pd-info {}
.pd-brand { font-size: var(--fs-xs); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--c-indigo); margin-bottom: var(--sp-2); }
.pd-name { font-size: clamp(1.5rem, 4vw, 2.4rem); font-weight: 800; line-height: 1.15; margin-bottom: var(--sp-4); }
.pd-rating-row { display: flex; align-items: center; gap: var(--sp-4); margin-bottom: var(--sp-5); }
.pd-stars { color: var(--c-yellow); font-size: .9rem; }
.pd-rev-link { font-size: var(--fs-sm); color: var(--c-indigo); text-decoration: underline; }
.pd-price-row { display: flex; align-items: baseline; gap: var(--sp-4); flex-wrap: wrap; margin-bottom: var(--sp-6); }
.pd-price-cur { font-family: var(--font-display); font-size: var(--fs-3xl); font-weight: 800; }
.pd-price-orig { font-size: var(--fs-xl); text-decoration: line-through; color: var(--c-text-light); }
.pd-save { background: var(--c-coral); color: #fff; font-size: var(--fs-xs); font-weight: 800; padding: .25rem .65rem; border-radius: var(--r-sm); }

.option-label { font-size: var(--fs-xs); font-weight: 800; letter-spacing: .07em; text-transform: uppercase; margin-bottom: var(--sp-3); display: flex; align-items: center; gap: var(--sp-3); }
.option-label .selected-val { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--c-text-muted); }
.color-opts { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.color-opt {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2.5px solid var(--c-bg-white);
  outline: 2px solid var(--c-border-dark);
  cursor: pointer;
  transition: all var(--ease);
}
.color-opt:hover, .color-opt.active { outline: 3px solid var(--c-indigo); transform: scale(1.1); }
.size-opts { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-5); }
.size-opt {
  min-width: 48px;
  height: 48px;
  padding: 0 var(--sp-3);
  border: 2px solid var(--c-border-dark);
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--ease);
  box-shadow: 2px 2px 0 var(--c-border-dark);
}
.size-opt:hover { border-color: var(--c-indigo); color: var(--c-indigo); box-shadow: 2px 2px 0 var(--c-indigo); }
.size-opt.active { background: var(--c-indigo); color: #fff; border-color: var(--c-indigo); box-shadow: 3px 3px 0 var(--c-indigo-dark); }
.size-opt.sold-out { opacity: .38; cursor: not-allowed; text-decoration: line-through; }

.pd-add-row { display: flex; gap: var(--sp-3); align-items: center; margin-bottom: var(--sp-5); flex-wrap: wrap; }
.pd-add-row .qty-stepper .qty-btn { width: 44px; height: 48px; }
.pd-add-row .qty-stepper .qty-val { width: 52px; height: 48px; font-size: var(--fs-lg); }
.pd-wishlist-btn {
  width: 52px; height: 52px;
  border: 2px solid var(--c-text);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--c-text-muted);
  transition: all var(--ease);
  box-shadow: var(--sh-hard);
}
.pd-wishlist-btn:hover, .pd-wishlist-btn.active { border-color: var(--c-coral); color: var(--c-coral); box-shadow: 3px 3px 0 var(--c-coral); }

.trust-row { display: flex; flex-direction: column; gap: var(--sp-3); padding: var(--sp-5); background: var(--c-bg); border: 2px solid var(--c-border); border-radius: var(--r-sm); margin-bottom: var(--sp-6); }
.trust-item { display: flex; align-items: center; gap: var(--sp-3); font-size: var(--fs-sm); }
.trust-item i { color: var(--c-indigo); width: 18px; flex-shrink: 0; }

/* PD tabs */
.pd-tabs { margin-top: var(--sp-8); }
.pd-tabs-nav { display: flex; border-bottom: 3px solid var(--c-text); margin-bottom: var(--sp-6); }
.pd-tab-btn {
  padding: var(--sp-3) var(--sp-5);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-text-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: all var(--ease);
}
.pd-tab-btn:hover { color: var(--c-text); }
.pd-tab-btn.active { color: var(--c-indigo); border-bottom-color: var(--c-indigo); }
.pd-tab-panel { display: none; }
.pd-tab-panel.active { display: block; }
.pd-tab-panel p { font-size: var(--fs-sm); color: var(--c-text-muted); line-height: 1.8; margin-bottom: var(--sp-4); }
.pd-tab-panel ul { padding-left: var(--sp-5); list-style: disc; }
.pd-tab-panel ul li { font-size: var(--fs-sm); color: var(--c-text-muted); margin-bottom: var(--sp-2); }

.review-summary { display: flex; gap: var(--sp-8); align-items: center; background: var(--c-bg); border: 2px solid var(--c-border); border-radius: var(--r-sm); padding: var(--sp-6); margin-bottom: var(--sp-6); }
.rev-score-big { font-family: var(--font-display); font-size: var(--fs-4xl); font-weight: 800; line-height: 1; }
.rev-bars { flex: 1; }
.rev-bar-row { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-2); font-size: var(--fs-xs); }
.rev-bar { flex: 1; height: 6px; background: var(--c-border); border-radius: 3px; overflow: hidden; }
.rev-bar-fill { height: 100%; background: var(--c-yellow); border-radius: 3px; }
.review-item { padding: var(--sp-5) 0; border-bottom: 1px solid var(--c-border); }
.review-header { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-3); }
.rev-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--c-indigo-light); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; color: var(--c-indigo); flex-shrink: 0; }
.rev-name { font-weight: 700; font-size: var(--fs-sm); }
.rev-date { font-size: var(--fs-xs); color: var(--c-text-muted); }

/* ---- 21. CART PAGE ---- */
.cart-layout { display: grid; grid-template-columns: 1fr; gap: var(--sp-8); align-items: start; padding: var(--sp-8) 0; }
.cart-table { width: 100%; }
.cart-table th { padding: var(--sp-3) var(--sp-4); border-bottom: 3px solid var(--c-text); font-family: var(--font-display); font-size: var(--fs-xs); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; text-align: left; }
.cart-table td { padding: var(--sp-5) var(--sp-4); border-bottom: 1px solid var(--c-border); vertical-align: middle; }
.cart-prod-cell { display: flex; align-items: center; gap: var(--sp-4); }
.cart-prod-img { width: 80px; height: 96px; object-fit: cover; border: 2px solid var(--c-text); border-radius: var(--r-sm); flex-shrink: 0; }
.cart-prod-name { font-family: var(--font-display); font-size: var(--fs-sm); font-weight: 700; margin-bottom: 4px; }
.cart-prod-meta { font-size: var(--fs-xs); color: var(--c-text-muted); }
.cart-remove { font-size: .9rem; color: var(--c-text-muted); transition: color var(--ease); }
.cart-remove:hover { color: var(--c-coral); }

.order-box {
  background: var(--c-bg-white);
  border: 2px solid var(--c-text);
  border-radius: var(--r-sm);
  padding: var(--sp-6);
  box-shadow: var(--sh-hard);
  position: sticky;
  top: calc(var(--header-h) + var(--sp-4));
}
.order-box h3 { font-size: var(--fs-lg); font-weight: 800; margin-bottom: var(--sp-5); padding-bottom: var(--sp-4); border-bottom: 2px solid var(--c-text); }
.order-row { display: flex; justify-content: space-between; font-size: var(--fs-sm); color: var(--c-text-muted); margin-bottom: var(--sp-3); }
.order-total-row { display: flex; justify-content: space-between; font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 800; padding-top: var(--sp-4); border-top: 2px solid var(--c-text); margin-top: var(--sp-2); }
.coupon-row { display: flex; gap: var(--sp-2); margin: var(--sp-5) 0; }
.coupon-input {
  flex: 1;
  padding: .7rem 1rem;
  border: 2px solid var(--c-text);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: border-color var(--ease);
}
.coupon-input:focus { border-color: var(--c-indigo); }

/* Shipping progress */
.ship-progress-wrap { margin-bottom: var(--sp-5); }
.ship-progress-label { font-size: var(--fs-xs); font-weight: 700; margin-bottom: var(--sp-2); color: var(--c-success); }
.ship-progress-bar { height: 6px; background: var(--c-border); border-radius: 3px; overflow: hidden; }
.ship-progress-fill { height: 100%; background: var(--c-success); border-radius: 3px; transition: width .4s ease; }

/* ---- 22. CHECKOUT PAGE ---- */
.checkout-header {
  background: var(--c-canvas);
  border-bottom: 2px solid var(--c-indigo);
  padding: var(--sp-4) 0;
}
.checkout-header-inner { display: flex; align-items: center; justify-content: space-between; }
.checkout-secure { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-xs); color: rgba(255,255,255,.65); }
.step-indicator { display: flex; align-items: center; gap: var(--sp-3); }
.step-dot {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: rgba(255,255,255,.45);
}
.step-dot.active { color: var(--c-yellow); }
.step-dot.done  { color: rgba(255,255,255,.65); }
.step-num {
  width: 24px; height: 24px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 800;
}
.step-dot.active .step-num { background: var(--c-yellow); color: var(--c-text); }
.step-dot.done  .step-num { background: var(--c-success); color: #fff; }
.step-sep { width: 28px; height: 1px; background: rgba(255,255,255,.2); }

.checkout-layout { display: grid; grid-template-columns: 1fr; gap: var(--sp-8); align-items: start; padding: var(--sp-8) 0; }
.checkout-form-section {
  background: var(--c-bg-white);
  border: 2px solid var(--c-text);
  border-radius: var(--r-sm);
  box-shadow: var(--sh-hard);
  margin-bottom: var(--sp-5);
  overflow: hidden;
}
.form-section-head {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-6);
  border-bottom: 2px solid var(--c-text);
  background: var(--c-bg);
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 800;
}
.form-section-head .step-circle {
  width: 28px; height: 28px;
  background: var(--c-indigo);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem;
  font-weight: 800;
  flex-shrink: 0;
}
.form-section-body { padding: var(--sp-6); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-group { margin-bottom: var(--sp-5); }
.form-label { display: block; font-size: var(--fs-sm); font-weight: 700; margin-bottom: var(--sp-2); }
.form-control {
  width: 100%;
  padding: .78rem 1rem;
  border: 2px solid var(--c-border-dark);
  border-radius: var(--r-sm);
  background: var(--c-bg-white);
  font-size: var(--fs-sm);
  font-family: var(--font-body);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-control:focus { border-color: var(--c-indigo); box-shadow: 2px 2px 0 var(--c-indigo); outline: none; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6e7c' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }

.pay-option {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4);
  border: 2px solid var(--c-border-dark);
  border-radius: var(--r-sm);
  cursor: pointer;
  margin-bottom: var(--sp-3);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.pay-option:hover, .pay-option.selected { border-color: var(--c-indigo); box-shadow: 2px 2px 0 var(--c-indigo); }
.pay-option input { accent-color: var(--c-indigo); }
.pay-option-info { flex: 1; font-size: var(--fs-sm); font-weight: 700; }
.pay-option-sub { font-size: var(--fs-xs); color: var(--c-text-muted); font-weight: 400; margin-top: 2px; }

.checkout-items-list { max-height: 320px; overflow-y: auto; margin-bottom: var(--sp-5); padding-right: var(--sp-2); }
.co-item { display: flex; gap: var(--sp-3); padding: var(--sp-3) 0; border-bottom: 1px solid var(--c-border); }
.co-item:last-child { border-bottom: none; }
.co-item img { width: 60px; height: 72px; object-fit: cover; border: 2px solid var(--c-border); border-radius: var(--r-sm); flex-shrink: 0; }
.co-item-info { flex: 1; font-size: var(--fs-sm); min-width: 0; }
.co-item-name { font-weight: 700; margin-bottom: 2px; }
.co-item-meta { font-size: var(--fs-xs); color: var(--c-text-muted); }
.co-item-price { font-family: var(--font-display); font-weight: 800; font-size: var(--fs-sm); margin-left: auto; white-space: nowrap; }

/* ---- 23. DEALS PAGE ---- */
.deals-hero {
  background: var(--c-canvas);
  padding: var(--sp-12) 0;
  text-align: center;
  border-bottom: 3px solid var(--c-yellow);
  position: relative;
  overflow: hidden;
}
.deals-hero h1 { font-size: clamp(2.5rem, 8vw, 5.5rem); font-weight: 800; color: #fff; line-height: 1.05; margin-bottom: var(--sp-4); }
.deals-hero h1 span { color: var(--c-yellow); }
.deals-hero p { color: rgba(255,255,255,.65); font-size: var(--fs-md); margin-bottom: var(--sp-8); }

/* ---- 24. ACCOUNT PAGE ---- */
.account-layout { display: grid; grid-template-columns: 1fr; gap: var(--sp-8); align-items: start; padding: var(--sp-8) 0; }
.account-sidebar {}
.account-profile-card {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-6);
  background: var(--c-canvas);
  border: 2px solid var(--c-text);
  border-radius: var(--r-sm);
  box-shadow: var(--sh-hard-ind);
  color: #fff;
  margin-bottom: var(--sp-5);
}
.account-avatar {
  width: 56px; height: 56px;
  background: var(--c-indigo);
  border-radius: 50%;
  border: 3px solid var(--c-yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 800;
  flex-shrink: 0;
}
.account-profile-info strong { font-size: var(--fs-md); display: block; }
.account-profile-info span { font-size: var(--fs-xs); opacity: .7; }
.account-menu-card {
  border: 2px solid var(--c-text);
  border-radius: var(--r-sm);
  box-shadow: var(--sh-hard);
  overflow: hidden;
  background: var(--c-bg-white);
}
.account-menu-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--c-border);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: background var(--ease);
  cursor: pointer;
}
.account-menu-item:last-child { border-bottom: none; }
.account-menu-item:hover { background: var(--c-indigo-light); color: var(--c-indigo); }
.account-menu-item.active { background: var(--c-indigo); color: #fff; }
.account-menu-item i { width: 20px; text-align: center; flex-shrink: 0; }

.order-table { width: 100%; border-collapse: collapse; }
.order-table th { padding: var(--sp-3) var(--sp-4); background: var(--c-bg); border-bottom: 2px solid var(--c-text); font-family: var(--font-display); font-size: var(--fs-xs); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; text-align: left; }
.order-table td { padding: var(--sp-4) var(--sp-4); border-bottom: 1px solid var(--c-border); font-size: var(--fs-sm); vertical-align: middle; }
.order-status { display: inline-flex; padding: .25rem .7rem; border-radius: var(--r-sm); font-size: var(--fs-xs); font-weight: 800; border: 1.5px solid; }
.status-delivered { background: #dcfce7; color: var(--c-success); border-color: var(--c-success); }
.status-shipped   { background: var(--c-indigo-light); color: var(--c-indigo); border-color: var(--c-indigo); }
.status-processing { background: var(--c-yellow-light); color: var(--c-yellow-dark); border-color: var(--c-yellow-dark); }
.status-cancelled { background: var(--c-coral-light); color: var(--c-coral-dark); border-color: var(--c-coral); }

/* ---- 25. TOAST ---- */
.toast-wrap { position: fixed; bottom: var(--sp-5); right: var(--sp-5); z-index: 9000; display: flex; flex-direction: column; gap: var(--sp-3); max-width: 320px; pointer-events: none; }
.toast {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-canvas);
  color: #fff;
  border: 2px solid var(--c-text);
  border-radius: var(--r-sm);
  box-shadow: var(--sh-hard-ind);
  font-size: var(--fs-sm);
  font-weight: 600;
  transform: translateX(110%);
  transition: transform var(--ease-md);
  pointer-events: all;
}
.toast.show { transform: translateX(0); }
.toast-icon { color: var(--c-yellow); flex-shrink: 0; }

/* ---- 26. UTILITIES ---- */
.text-center { text-align: center; }
.text-muted  { color: var(--c-text-muted); }
.text-indigo { color: var(--c-indigo); }
.text-coral  { color: var(--c-coral); }
.text-yellow { color: var(--c-yellow-dark); }
.d-none  { display: none !important; }
.divider { border: none; border-top: 1px solid var(--c-border); margin: var(--sp-6) 0; }
body.no-scroll { overflow: hidden; }
.back-top {
  position: fixed; bottom: var(--sp-6); right: var(--sp-6);
  width: 46px; height: 46px;
  background: var(--c-canvas);
  color: #fff;
  border: 2px solid var(--c-text);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  z-index: 400;
  box-shadow: var(--sh-hard);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all var(--ease-md);
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--c-indigo); transform: translateY(-3px); }

/* ---- 27. RESPONSIVE ---- */
@media (max-width: 767px) {
  .form-row { grid-template-columns: 1fr; }
}

@media (min-width: 768px) {
  body.site-theme-theme2 { --container-pad: 1.5rem; }
  .hero-slide { grid-template-columns: 1fr 1fr; min-height: 520px; }
  .hero-img-wrap { min-height: unset; }
  .spotlight-row { grid-template-columns: 1fr 1fr; }
  .shop-layout { grid-template-columns: 260px 1fr; }
  .cart-layout { grid-template-columns: 1fr 360px; }
  .checkout-layout { grid-template-columns: 1fr 380px; }
  .account-layout { grid-template-columns: 280px 1fr; }
  .pd-layout { grid-template-columns: 1fr 1fr; }
  .pd-gallery { grid-template-columns: 80px 1fr; }
}

@media (min-width: 1024px) {
  body.site-theme-theme2 { --container-pad: 2rem; --fs-md: 1.0625rem; }
  .main-nav { display: flex; }
  .hamburger { display: none; }
  .header-inner { gap: var(--sp-6); }
  body.site-theme-theme2 .logo,
  body.site-theme-theme2 .header-inner > .logo {
    font-size: 1.55rem;
  }
  body.site-theme-theme2 .nav-link { padding: 0 0.75rem !important; font-size: 0.875rem; }
  .hero-title { font-size: var(--fs-5xl); }
  .hero-content { padding: var(--sp-20) var(--sp-12); }
  .cat-tile { width: 190px; }
  .product-card.compact { width: 220px; }
  .shop-layout { grid-template-columns: 280px 1fr; }
}
@media (min-width: 1280px) {
  body.site-theme-theme2 { --container-pad: 2.5rem; }
  body.site-theme-theme2 .nav-link { padding: 0 0.95rem !important; font-size: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none !important; }
  .product-card,
  .product-card-quick-add,
  .hero .btn-outline,
  .bb2-cart-drawer__panel,
  .bb2-cart-drawer__backdrop { transition: none !important; }
}


/* ---- Businessbook integrations + polish ---- */
body.site-theme-theme2 .bb2-shell,
body.site-theme-theme2 .container {
  width: 100%;
  max-width: var(--container-max, 1360px);
  margin-inline: auto;
  padding-inline: var(--container-pad, 1rem);
  box-sizing: border-box;
}

/* Sticky header polish */
body.site-theme-theme2 .site-header.is-scrolled {
  box-shadow: 0 4px 0 0 var(--c-indigo);
}

/* Section padding restored after reset fix */
body.site-theme-theme2 .section { padding: var(--sp-16) 0; }
body.site-theme-theme2 .section-sm { padding: var(--sp-10) 0; }
body.site-theme-theme2 .section-lg { padding: var(--sp-24) 0; }
body.site-theme-theme2 .btn {
  padding: 0.78rem 1.75rem;
  border-style: solid;
  border-width: 2px;
  cursor: pointer;
  font-family: var(--font-display);
  text-decoration: none;
}
body.site-theme-theme2 .btn-lg { padding: 1rem 2.25rem; }
body.site-theme-theme2 .btn-sm { padding: 0.5rem 1rem; }

/*
 * Button contrast system — beats `a { color: inherit }` / button resets.
 * Labels use color-engine tokens (--color-*-text) so every palette stays readable.
 */
body.site-theme-theme2 a.btn-primary,
body.site-theme-theme2 button.btn-primary,
body.site-theme-theme2 a.btn-indigo,
body.site-theme-theme2 button.btn-indigo {
  background: var(--color-primary) !important;
  color: var(--color-primary-text, #fff) !important;
  border-color: var(--color-primary) !important;
  box-shadow: 4px 4px 0 var(--color-primary-hover, var(--color-text));
}
body.site-theme-theme2 a.btn-primary:hover,
body.site-theme-theme2 button.btn-primary:hover,
body.site-theme-theme2 a.btn-primary:focus-visible,
body.site-theme-theme2 button.btn-primary:focus-visible,
body.site-theme-theme2 a.btn-indigo:hover,
body.site-theme-theme2 button.btn-indigo:hover,
body.site-theme-theme2 a.btn-indigo:focus-visible,
body.site-theme-theme2 button.btn-indigo:focus-visible {
  background: var(--color-primary-hover, var(--color-primary)) !important;
  border-color: var(--color-primary-hover, var(--color-primary)) !important;
  color: var(--color-primary-text, #fff) !important;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--color-accent, var(--color-primary));
  outline: none;
}
body.site-theme-theme2 a.btn-yellow,
body.site-theme-theme2 button.btn-yellow,
body.site-theme-theme2 a.btn-coral,
body.site-theme-theme2 button.btn-coral {
  background: var(--color-accent) !important;
  color: var(--color-accent-text, #111) !important;
  border-color: var(--color-accent) !important;
  box-shadow: 4px 4px 0 var(--color-primary);
}
body.site-theme-theme2 a.btn-yellow:hover,
body.site-theme-theme2 button.btn-yellow:hover,
body.site-theme-theme2 a.btn-yellow:focus-visible,
body.site-theme-theme2 button.btn-yellow:focus-visible,
body.site-theme-theme2 a.btn-coral:hover,
body.site-theme-theme2 button.btn-coral:hover,
body.site-theme-theme2 a.btn-coral:focus-visible,
body.site-theme-theme2 button.btn-coral:focus-visible {
  background: var(--color-accent-hover, var(--color-accent)) !important;
  border-color: var(--color-accent-hover, var(--color-accent)) !important;
  color: var(--color-accent-text, #111) !important;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--color-primary);
  outline: none;
}
body.site-theme-theme2 a.btn-outline,
body.site-theme-theme2 button.btn-outline {
  background: transparent !important;
  color: var(--color-text) !important;
  border: 2px solid var(--color-text) !important;
  box-shadow: 4px 4px 0 var(--color-primary);
}
body.site-theme-theme2 a.btn-outline:hover,
body.site-theme-theme2 button.btn-outline:hover,
body.site-theme-theme2 a.btn-outline:focus-visible,
body.site-theme-theme2 button.btn-outline:focus-visible {
  background: var(--color-primary) !important;
  color: var(--color-primary-text, #fff) !important;
  border-color: var(--color-primary) !important;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--color-accent);
  outline: none;
}
body.site-theme-theme2 a.btn-dark,
body.site-theme-theme2 button.btn-dark {
  background: var(--color-secondary) !important;
  color: var(--color-secondary-text, #fff) !important;
  border-color: var(--color-secondary) !important;
  box-shadow: 4px 4px 0 var(--color-primary);
}
body.site-theme-theme2 a.btn-dark:hover,
body.site-theme-theme2 button.btn-dark:hover,
body.site-theme-theme2 a.btn-dark:focus-visible,
body.site-theme-theme2 button.btn-dark:focus-visible {
  background: var(--color-secondary-hover, var(--color-secondary)) !important;
  color: var(--color-secondary-text, #fff) !important;
  border-color: var(--color-secondary-hover, var(--color-secondary)) !important;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--color-accent);
  outline: none;
}

/* Hero (secondary canvas): full borders + shadows that don’t disappear into the band */
body.site-theme-theme2 .hero a.btn-yellow,
body.site-theme-theme2 .hero button.btn-yellow,
body.site-theme-theme2 .hero a.btn-coral,
body.site-theme-theme2 .hero button.btn-coral {
  background: var(--color-accent) !important;
  color: var(--color-accent-text, #111) !important;
  border: 2px solid var(--color-accent) !important;
  box-shadow: 4px 4px 0 var(--color-primary) !important;
}
body.site-theme-theme2 .hero a.btn-yellow:hover,
body.site-theme-theme2 .hero button.btn-yellow:hover,
body.site-theme-theme2 .hero a.btn-coral:hover,
body.site-theme-theme2 .hero button.btn-coral:hover {
  background: var(--color-accent-hover, var(--color-accent)) !important;
  color: var(--color-accent-text, #111) !important;
  border-color: var(--color-accent-hover, var(--color-accent)) !important;
  box-shadow: 6px 6px 0 color-mix(in srgb, var(--color-secondary-text, #fff) 40%, #000) !important;
}
body.site-theme-theme2 .hero a.btn-outline,
body.site-theme-theme2 .hero button.btn-outline {
  background: transparent !important;
  color: var(--color-secondary-text, #fff) !important;
  border: 2px solid var(--color-secondary-text, #fff) !important;
  box-shadow: 4px 4px 0 var(--color-accent) !important;
}
body.site-theme-theme2 .hero a.btn-outline:hover,
body.site-theme-theme2 .hero button.btn-outline:hover,
body.site-theme-theme2 .hero a.btn-outline:focus-visible,
body.site-theme-theme2 .hero button.btn-outline:focus-visible {
  background: var(--color-accent) !important;
  color: var(--color-accent-text, #111) !important;
  border: 2px solid var(--color-accent) !important;
  box-shadow: 6px 6px 0 var(--color-primary) !important;
  outline: none;
}
body.site-theme-theme2 .hero a.btn-primary,
body.site-theme-theme2 .hero a.btn-indigo,
body.site-theme-theme2 .hero button.btn-primary,
body.site-theme-theme2 .hero button.btn-indigo {
  box-shadow: 4px 4px 0 var(--color-accent) !important;
}

body.site-theme-theme2 button.btn:disabled,
body.site-theme-theme2 button.btn-yellow:disabled,
body.site-theme-theme2 button.btn-primary:disabled,
body.site-theme-theme2 button.btn-indigo:disabled,
body.site-theme-theme2 button.btn-coral:disabled,
body.site-theme-theme2 button.btn-outline:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  filter: grayscale(0.12);
}

/* Header menu — force gaps (beat any leftover reset / inject) */
body.site-theme-theme2 .header-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
/* Mobile/tablet: logo | cart | hamburger — wrap long brand at readable size */
body.site-theme-theme2 .header-inner > .logo {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  max-width: 100% !important;
  width: auto;
  order: 1;
  overflow: hidden !important;
  white-space: normal !important;
  justify-content: flex-start;
  align-items: center;
  font-size: clamp(1.05rem, 4.2vw, 1.2rem) !important;
  line-height: 1.22 !important;
  letter-spacing: -0.025em;
}
body.site-theme-theme2 .header-inner > .main-nav {
  order: 2;
}
body.site-theme-theme2 .header-inner > .header-icons {
  order: 3;
  margin-left: 0;
  flex-shrink: 0;
}
body.site-theme-theme2 .header-inner > .hamburger {
  order: 4;
  margin-left: 0;
  flex-shrink: 0;
}
body.site-theme-theme2 .header-inner > .logo .logo-text {
  display: block;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden;
  white-space: normal !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  hyphens: manual;
  text-align: left;
  line-height: 1.22;
}
body.site-theme-theme2 .header-inner > .logo .logo-dot {
  align-self: flex-start;
  margin-top: 0.35em;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  body.site-theme-theme2 .header-inner > .logo .logo-text {
    flex: 1 1 0 !important;
    width: 0 !important;
  }
}
body.site-theme-theme2 .mobile-drawer-head {
  align-items: flex-start;
  gap: 0.75rem;
}
body.site-theme-theme2 .mobile-drawer-head .logo {
  display: block !important;
  flex: 1 1 0 !important;
  min-width: 0 !important;
  max-width: 100% !important;
  white-space: normal !important;
  overflow: hidden !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  font-size: clamp(1.1rem, 4.4vw, 1.25rem) !important;
  line-height: 1.25 !important;
  letter-spacing: -0.02em;
}
body.site-theme-theme2 .mobile-drawer-head .logo.is-brand-mid {
  font-size: clamp(1.02rem, 4vw, 1.15rem) !important;
}
body.site-theme-theme2 .mobile-drawer-head .logo.is-brand-long {
  font-size: clamp(0.98rem, 3.8vw, 1.1rem) !important;
}
body.site-theme-theme2 .header-inner > .logo.is-brand-mid {
  font-size: clamp(1rem, 4vw, 1.12rem) !important;
}
body.site-theme-theme2 .header-inner > .logo.is-brand-long {
  font-size: clamp(0.98rem, 3.9vw, 1.1rem) !important;
}
@media (max-width: 767px) {
  body.site-theme-theme2 .header-inner > .logo.is-brand-short {
    font-size: clamp(1.08rem, 4.5vw, 1.2rem) !important;
  }
  body.site-theme-theme2 .header-inner > .logo.is-brand-mid {
    font-size: clamp(1.02rem, 4.2vw, 1.14rem) !important;
  }
  body.site-theme-theme2 .header-inner > .logo.is-brand-long {
    font-size: clamp(0.98rem, 4vw, 1.1rem) !important;
  }
}
@media (max-width: 1023px) {
  body.site-theme-theme2 .site-header {
    height: auto !important;
    min-height: var(--header-h);
    padding-block: 0.45rem;
  }
  body.site-theme-theme2 .site-header .container {
    min-width: 0;
    max-width: 100%;
  }
  body.site-theme-theme2 .header-inner {
    min-height: calc(var(--header-h) - 0.5rem);
    gap: 0.4rem 0.5rem;
  }
}
@media (min-width: 1024px) {
  body.site-theme-theme2 .header-inner > .logo {
    flex: 0 1 auto !important;
    min-width: min-content !important;
    max-width: min(42vw, 28rem) !important;
    overflow: visible !important;
    white-space: nowrap !important;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.45rem !important;
    line-height: 1.15 !important;
    letter-spacing: -0.04em;
  }
  body.site-theme-theme2 .header-inner > .logo.is-brand-mid,
  body.site-theme-theme2 .header-inner > .logo.is-brand-long {
    min-width: 0 !important;
    font-size: clamp(1.15rem, 1.6vw, 1.4rem) !important;
    white-space: normal !important;
    overflow: hidden !important;
    line-height: 1.2 !important;
  }
  body.site-theme-theme2 .header-inner > .logo .logo-text {
    display: block !important;
    flex: 0 1 auto !important;
    width: auto !important;
    min-width: min-content !important;
    max-width: 100% !important;
    overflow: visible !important;
    white-space: inherit !important;
    text-align: left;
    line-height: inherit;
  }
  body.site-theme-theme2 .header-inner > .logo.is-brand-mid .logo-text,
  body.site-theme-theme2 .header-inner > .logo.is-brand-long .logo-text {
    min-width: 0 !important;
    overflow: hidden !important;
  }
  body.site-theme-theme2 .header-inner > .logo .logo-dot {
    align-self: center;
    margin-top: 0;
  }
  body.site-theme-theme2 .header-inner > .header-icons {
    margin-left: 0;
  }
}
body.site-theme-theme2 .main-nav {
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
}
body.site-theme-theme2 .nav-list {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 0.35rem !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
body.site-theme-theme2 .nav-item {
  margin: 0 !important;
  padding: 0 !important;
}
body.site-theme-theme2 .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 0.9rem !important;
  margin: 0 !important;
  height: var(--header-h);
  line-height: 1.2;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--color-text, var(--c-text)) !important;
  border-radius: var(--r-sm);
  transition:
    color var(--ease),
    background-color var(--ease),
    transform var(--ease);
}
body.site-theme-theme2 .nav-link::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.55rem;
  height: 3px;
  border-radius: 999px;
  background: var(--color-accent, var(--c-yellow));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
  pointer-events: none;
}
body.site-theme-theme2 a.nav-link:hover,
body.site-theme-theme2 a.nav-link:focus-visible,
body.site-theme-theme2 a.nav-link.active {
  color: var(--color-primary, var(--c-indigo)) !important;
  background: var(--color-primary-soft, var(--c-indigo-light));
  outline: none;
  transform: translateY(-1px);
}
body.site-theme-theme2 a.nav-link:hover::after,
body.site-theme-theme2 a.nav-link:focus-visible::after,
body.site-theme-theme2 a.nav-link.active::after {
  transform: scaleX(1);
}
body.site-theme-theme2 a.nav-link:active {
  transform: translateY(0);
  background: color-mix(in srgb, var(--color-primary-soft, var(--c-indigo-light)) 70%, var(--color-surface, #fff));
}

/* Mobile drawer links — same palette hover */
body.site-theme-theme2 a.mobile-drawer-link {
  color: var(--color-text, var(--c-text));
  transition: color var(--ease), background-color var(--ease), padding-left var(--ease);
}
body.site-theme-theme2 a.mobile-drawer-link:hover,
body.site-theme-theme2 a.mobile-drawer-link:focus-visible {
  color: var(--color-primary, var(--c-indigo)) !important;
  background: var(--color-primary-soft, var(--c-indigo-light));
  outline: none;
}
body.site-theme-theme2 .header-icons {
  margin-left: 0;
  gap: 0.45rem;
  flex-shrink: 0;
}
body.site-theme-theme2 .header-icons .icon-btn {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.1rem;
}
body.site-theme-theme2 .header-icons .icon-btn i {
  line-height: 1;
  display: inline-block;
}

/* Feature highlight icons */
body.site-theme-theme2 .bb2-feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
body.site-theme-theme2 .bb2-feature-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--c-text);
  border-radius: var(--r-sm);
  background: var(--c-indigo-light);
  color: var(--c-indigo);
  box-shadow: 3px 3px 0 var(--c-text);
  font-size: 1.15rem;
  flex-shrink: 0;
}
body.site-theme-theme2 .bb2-feature-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
body.site-theme-theme2 .bb2-contact-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
body.site-theme-theme2 .bb2-contact-item__icon {
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--c-text);
  border-radius: var(--r-sm);
  background: var(--c-yellow);
  color: var(--c-on-accent);
  box-shadow: 2px 2px 0 var(--c-text);
}
body.site-theme-theme2 .bb2-contact-item__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}
body.site-theme-theme2 .bb2-contact-item__body {
  min-width: 0;
  flex: 1;
}

body.site-theme-theme2 .logo-mark {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.4rem;
  width: 2.1rem;
  height: 2.1rem;
  border: 2px solid var(--c-text);
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
body.site-theme-theme2 .bb2-review-role {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}
body.site-theme-theme2 .bb2-contact-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}
body.site-theme-theme2 .bb2-contact-lead {
  color: var(--c-text-muted);
  margin: 0 0 0.85rem;
  line-height: 1.6;
  max-width: 32rem;
}

/* Section rhythm */
body.site-theme-theme2 .sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
  flex-wrap: wrap;
}
body.site-theme-theme2 .sec-head-copy {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: min(100%, 12rem);
  flex: 1 1 14rem;
}
body.site-theme-theme2 .sec-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
}
body.site-theme-theme2 .sec-sub {
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  max-width: 36rem;
  line-height: 1.55;
  margin: 0;
}
body.site-theme-theme2 .eyebrow {
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-indigo);
  margin: 0 0 0.65rem;
}
body.site-theme-theme2 .bb2-band {
  background: var(--c-bg-white);
  border-top: 2px solid var(--c-text);
  border-bottom: 2px solid var(--c-text);
}
body.site-theme-theme2 .bb2-section-cta {
  text-align: center;
  margin-top: var(--sp-8);
}

/* Features (not spotlight chrome) */
body.site-theme-theme2 .bb2-feature-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}
body.site-theme-theme2 .bb2-feature-card {
  background: var(--c-bg-white);
  border: 2px solid var(--c-text);
  box-shadow: var(--sh-hard);
  padding: 1.35rem 1.25rem;
  min-height: 100%;
}
body.site-theme-theme2 .bb2-feature-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-lg);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
body.site-theme-theme2 .bb2-feature-card__text {
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.6;
  margin: 0;
}

/* Products — image fills frame (beat global img height:auto) */
body.site-theme-theme2 .product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--c-bg-white);
}
body.site-theme-theme2 .product-card-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  background: var(--c-bg);
  flex-shrink: 0;
}
body.site-theme-theme2 .product-card-img-wrap > img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  transition: transform 0.45s ease;
}
body.site-theme-theme2 .product-card:hover .product-card-img-wrap > img {
  transform: scale(1.1);
}
body.site-theme-theme2 .product-card-img-ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  background:
    linear-gradient(135deg, var(--c-indigo-light) 0%, var(--c-bg) 55%, var(--c-yellow-light) 100%);
}
body.site-theme-theme2 .product-card-quick-add,
body.site-theme-theme2 button.product-card-quick-add {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  z-index: 4;
  margin: 0 !important;
  padding: 0.72rem 0.6rem !important;
  border: none !important;
  border-top: 2px solid var(--c-text) !important;
  border-radius: 0 !important;
  background: var(--c-indigo);
  color: var(--c-on-primary);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  cursor: pointer;
  transform: translateY(0) !important;
  transition: background 0.18s ease;
}
body.site-theme-theme2 .product-card-quick-add:hover,
body.site-theme-theme2 .product-card-quick-add.is-added {
  background: var(--c-indigo-dark);
  color: var(--c-on-primary);
}
body.site-theme-theme2 .product-card-body {
  padding: 0.9rem 0.95rem 1.05rem;
  gap: 0.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--c-bg-white);
  position: relative;
  z-index: 1;
}
body.site-theme-theme2 .product-card-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.55em;
  font-size: var(--fs-sm);
  line-height: 1.3;
}
body.site-theme-theme2 .product-card-price {
  margin-top: 0.15rem;
}
body.site-theme-theme2 .product-card-cta {
  margin-top: auto;
  align-self: flex-start;
}
body.site-theme-theme2 .bb2-product-detail__back {
  margin: 0 0 1rem;
}
body.site-theme-theme2 .bb2-product-detail__back a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
body.site-theme-theme2 .bb2-product-detail__grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 760px) {
  body.site-theme-theme2 .bb2-product-detail__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2rem;
  }
}
body.site-theme-theme2 .bb2-product-detail__media {
  border-radius: 1rem;
  overflow: hidden;
  background: #f8fafc;
  aspect-ratio: 1 / 1;
}
body.site-theme-theme2 .bb2-product-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body.site-theme-theme2 .bb2-product-detail__body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
body.site-theme-theme2 .product-grid-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.15rem 1.25rem;
}
body.site-theme-theme2 .product-grid-wrap .product-card {
  flex: 0 1 15.5rem;
  width: 15.5rem;
  max-width: 100%;
}

/* Touch: keep Add to cart bar over the image bottom (not below it) */
@media (hover: none), (max-width: 767px) {
  body.site-theme-theme2 .product-card-quick-add {
    transform: translateY(0) !important;
  }
}

/* Hero — multi-slide grid + image fill */
body.site-theme-theme2 .hero {
  min-height: 0;
}
body.site-theme-theme2 .hero:not(.hero--carousel) .hero-slide {
  min-height: 0;
}
body.site-theme-theme2 .hero--carousel .hero-viewport {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
body.site-theme-theme2 .hero--carousel .hero-slide {
  grid-area: 1 / 1;
  width: 100%;
  min-height: 480px;
  align-self: stretch;
}
body.site-theme-theme2 .hero--carousel .hero-slide[hidden] {
  display: grid !important;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
}
body.site-theme-theme2 .hero--carousel .hero-slide.is-active {
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
body.site-theme-theme2 .hero-content {
  padding: clamp(2rem, 5vw, 4rem) var(--container-pad);
  max-width: 40rem;
  height: 100%;
}
body.site-theme-theme2 .hero-subtitle {
  max-width: 32rem;
}
body.site-theme-theme2 .hero-actions {
  gap: 0.85rem;
}
body.site-theme-theme2 .hero-img-wrap {
  position: relative;
  min-height: 14rem;
  overflow: hidden;
  height: 100%;
}
body.site-theme-theme2 .hero-img-wrap > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 0.92;
}
body.site-theme-theme2 .hero-img-block {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--c-indigo) 0%, var(--c-canvas) 100%);
  opacity: 0.85;
}
body.site-theme-theme2 .hero-nav {
  bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
  background: color-mix(in srgb, var(--color-secondary, var(--c-canvas)) 86%, #000);
  border-color: var(--color-accent, var(--c-yellow));
  box-shadow: 3px 3px 0 var(--color-text, var(--c-text));
}
/* Hero carousel controls — beat button reset; palette contrast */
body.site-theme-theme2 button.hero-nav__btn {
  background: var(--color-surface, var(--c-bg-white, #fff)) !important;
  color: var(--color-primary, var(--c-indigo)) !important;
  border: 2px solid var(--color-primary, var(--c-indigo)) !important;
}
body.site-theme-theme2 button.hero-nav__btn:hover,
body.site-theme-theme2 button.hero-nav__btn:focus-visible {
  background: var(--color-accent, var(--c-yellow)) !important;
  color: var(--color-accent-text, var(--c-on-accent, #111)) !important;
  border-color: var(--color-accent, var(--c-yellow)) !important;
  transform: scale(1.06);
  outline: none;
}
body.site-theme-theme2 button.hero-nav__btn i {
  color: inherit;
}
body.site-theme-theme2 button.hero-nav__dot {
  background: color-mix(in srgb, var(--color-secondary-text, #fff) 50%, transparent) !important;
  border: 0 !important;
}
body.site-theme-theme2 button.hero-nav__dot.is-active,
body.site-theme-theme2 button.hero-nav__dot[aria-selected="true"] {
  background: var(--color-accent, var(--c-yellow)) !important;
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-accent, var(--c-yellow)) 40%, transparent);
}
body.site-theme-theme2 button.hero-nav__dot:hover:not(.is-active),
body.site-theme-theme2 button.hero-nav__dot:focus-visible:not(.is-active) {
  background: color-mix(in srgb, var(--color-accent, var(--c-yellow)) 70%, #fff) !important;
  outline: none;
}

/* Testimonials carousel arrows — same palette contrast */
body.site-theme-theme2 button.bb2-testimonials__btn {
  background: var(--color-accent, var(--c-yellow)) !important;
  color: var(--color-accent-text, var(--c-on-accent, #111)) !important;
  border-color: var(--color-text, var(--c-text)) !important;
  box-shadow: 3px 3px 0 var(--color-accent-hover, var(--c-yellow-dark));
}
body.site-theme-theme2 button.bb2-testimonials__btn:hover:not(:disabled) {
  background: var(--color-primary, var(--c-indigo)) !important;
  color: var(--color-primary-text, var(--c-on-primary, #fff)) !important;
  border-color: var(--color-primary, var(--c-indigo)) !important;
}
@media (min-width: 768px) {
  body.site-theme-theme2 .hero-slide,
  body.site-theme-theme2 .hero--carousel .hero-slide {
    min-height: 520px;
  }
  body.site-theme-theme2 .hero-content {
    max-width: none;
    padding-inline: clamp(1.5rem, 4vw, 3.5rem);
  }
  body.site-theme-theme2 .hero-img-wrap {
    min-height: 100%;
  }
}

/* Stats block — count-up figures */
body.site-theme-theme2 .bb2-stats {
  background: var(--c-bg);
  border-top: 2px solid var(--c-text);
  border-bottom: 2px solid var(--c-text);
}
body.site-theme-theme2 .bb2-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10.5rem, 13.5rem));
  justify-content: center;
  justify-items: stretch;
  gap: 1rem;
  width: 100%;
  max-width: 64rem;
  margin-inline: auto;
}
body.site-theme-theme2 .bb2-stats__card {
  text-align: center;
  padding: 1.35rem 1rem 1.2rem;
  background: var(--c-bg-white);
  border: 2px solid var(--c-text);
  box-shadow: 4px 4px 0 var(--c-text);
}
body.site-theme-theme2 .bb2-stats__value {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--c-indigo);
  margin: 0;
  font-variant-numeric: tabular-nums;
}
body.site-theme-theme2 .bb2-stats__suffix {
  margin-left: 0.05em;
}
body.site-theme-theme2 .bb2-stats__label {
  margin: 0.5rem 0 0;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.35;
}

/* Contact — equal-height info pane + map */
body.site-theme-theme2 .bb2-contact-split {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}
body.site-theme-theme2 .bb2-contact-split--map {
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  body.site-theme-theme2 .bb2-contact-split--map {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.35rem;
    min-height: 22rem;
  }
}
body.site-theme-theme2 .bb2-contact-pane {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.85rem;
  min-width: 0;
  min-height: 16rem;
  height: 100%;
  padding: 1.35rem 1.25rem;
  background: var(--c-bg-white);
  border: 2px solid var(--c-text);
  box-shadow: var(--sh-hard);
  box-sizing: border-box;
}
body.site-theme-theme2 .bb2-contact-map {
  position: relative;
  min-height: 16rem;
  height: 100%;
  border: 2px solid var(--c-text);
  box-shadow: var(--sh-hard);
  background: var(--c-bg-white);
  overflow: hidden;
  box-sizing: border-box;
}
@media (min-width: 860px) {
  body.site-theme-theme2 .bb2-contact-split--map .bb2-contact-pane,
  body.site-theme-theme2 .bb2-contact-split--map .bb2-contact-map {
    min-height: 22rem;
    height: 100%;
    align-self: stretch;
  }
}
body.site-theme-theme2 .bb2-contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
body.site-theme-theme2 .bb2-contact-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
  flex: 1 1 auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
body.site-theme-theme2 .bb2-contact-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
body.site-theme-theme2 .bb2-contact-item strong {
  display: block;
  font-size: var(--fs-2xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 0.2rem;
}
body.site-theme-theme2 .bb2-contact-item a {
  word-break: break-word;
}
body.site-theme-theme2 .bb2-contact-pane .bb2-contact-title {
  margin-bottom: 0;
}
body.site-theme-theme2 .bb2-contact-pane .bb2-contact-lead {
  margin-bottom: 0;
}

/* Forms */
body.site-theme-theme2 #enquireForm .sec-head,
body.site-theme-theme2 #appointmentForm .sec-head {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.45rem;
}
body.site-theme-theme2 #enquireForm .sec-head h2,
body.site-theme-theme2 #appointmentForm .sec-head h2 {
  text-align: center;
}
body.site-theme-theme2 #enquireForm .sec-head h2 .underline-accent,
body.site-theme-theme2 #appointmentForm .sec-head h2 .underline-accent {
  margin-inline: auto;
}
body.site-theme-theme2 #enquireForm .sec-sub,
body.site-theme-theme2 #appointmentForm .sec-sub {
  text-align: center;
  margin-inline: auto;
  max-width: 36rem;
}
body.site-theme-theme2 .bb2-form-card {
  max-width: 36rem;
  margin: 0 auto;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  background: var(--c-bg-white);
  border: 2px solid var(--c-text);
  box-shadow: var(--sh-hard);
}
body.site-theme-theme2 .bb2-form-card .bb2-field { margin-bottom: 1rem; }
body.site-theme-theme2 .bb2-form-card label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
body.site-theme-theme2 .bb2-form-card input,
body.site-theme-theme2 .bb2-form-card textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 2px solid var(--c-text);
  font: inherit;
  background: var(--c-bg);
  border-radius: var(--r-sm);
}
body.site-theme-theme2 .bb2-form-card input:focus,
body.site-theme-theme2 .bb2-form-card textarea:focus {
  outline: 2px solid var(--c-indigo);
  outline-offset: 1px;
}
body.site-theme-theme2 .bb2-form-actions { text-align: center; margin-top: 1.25rem; }
body.site-theme-theme2 .bb2-form-actions .btn { margin-inline: auto; }
body.site-theme-theme2 [data-bb-form-status] {
  font-size: var(--fs-sm);
  margin: 0.5rem 0 0;
  color: var(--c-indigo);
}
body.site-theme-theme2 [data-bb-form-status].is-err { color: var(--c-coral-dark); }

/* Reviews / gallery */
/* Testimonials — single-row carousel */
body.site-theme-theme2 .bb2-testimonials {
  --bb2-t-gap: 1rem;
  --bb2-t-per: 1;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 56rem;
  margin-inline: auto;
  box-sizing: border-box;
}
body.site-theme-theme2 .bb2-testimonials__viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}
body.site-theme-theme2 .bb2-testimonials__track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: var(--bb2-t-gap);
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  box-sizing: border-box;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
body.site-theme-theme2 .bb2-testimonials__btn {
  flex: 0 0 auto;
  width: 2.65rem;
  height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--c-text) !important;
  border-radius: var(--r-sm);
  background: var(--c-yellow);
  color: var(--c-text);
  box-shadow: var(--sh-hard-yel);
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform var(--ease), background var(--ease), opacity var(--ease);
}
body.site-theme-theme2 .bb2-testimonials__btn:hover {
  background: var(--c-indigo);
  color: #fff;
  border-color: var(--c-indigo) !important;
  transform: translate(-1px, -1px);
}
body.site-theme-theme2 .bb2-testimonials__btn:disabled,
body.site-theme-theme2 .bb2-testimonials__btn[aria-disabled="true"] {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
  transform: none;
}
body.site-theme-theme2 .bb2-testimonials.is-static .bb2-testimonials__btn {
  display: none;
}
body.site-theme-theme2 .bb2-testimonials.is-static .bb2-testimonials__track {
  justify-content: center;
}
body.site-theme-theme2 .bb2-testimonials.is-static .bb2-review-card:only-child {
  flex-basis: min(100%, 28rem);
  max-width: 28rem;
}
@media (min-width: 720px) {
  body.site-theme-theme2 .bb2-testimonials { --bb2-t-per: 2; --bb2-t-gap: 1.1rem; }
}
@media (min-width: 1040px) {
  body.site-theme-theme2 .bb2-testimonials { --bb2-t-per: 3; --bb2-t-gap: 1.2rem; max-width: 60rem; }
}
body.site-theme-theme2 .bb2-review-card {
  flex: 0 0 calc((100% - (var(--bb2-t-per) - 1) * var(--bb2-t-gap)) / var(--bb2-t-per));
  width: auto;
  max-width: none;
  min-width: 0;
  margin: 0;
  background: var(--c-bg-white);
  border: 2px solid var(--c-text);
  box-shadow: var(--sh-hard);
  padding: 1.25rem 1.15rem;
  box-sizing: border-box;
  list-style: none;
}
body.site-theme-theme2 .bb2-review-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.65rem;
  color: var(--c-yellow, #eab308);
  font-size: 0.95rem;
  line-height: 1;
}
body.site-theme-theme2 .bb2-review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
body.site-theme-theme2 .bb2-review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-text);
  flex-shrink: 0;
}
body.site-theme-theme2 .bb2-review-avatar--init {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-indigo-light);
  font-weight: 800;
  color: var(--c-indigo);
}
body.site-theme-theme2 .bb2-review-text {
  margin: 0;
  color: var(--c-text);
  font-size: var(--fs-sm);
  line-height: 1.6;
}
@media (max-width: 639px) {
  body.site-theme-theme2 .bb2-testimonials { gap: 0.4rem; }
  body.site-theme-theme2 .bb2-testimonials__btn {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.8rem;
  }
}
body.site-theme-theme2 .bb2-gallery-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 860px) {
  body.site-theme-theme2 .bb2-gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.1rem; }
}
body.site-theme-theme2 .bb2-gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 2px solid var(--c-text);
  box-shadow: var(--sh-hard);
  background: var(--c-bg);
}
body.site-theme-theme2 .bb2-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.35s ease;
}
body.site-theme-theme2 .bb2-gallery-item:hover img { transform: scale(1.04); }

/* About / policy */
body.site-theme-theme2 .bb2-about-page {
  display: grid;
  gap: 1.5rem;
  padding-block: 0.5rem;
}
@media (min-width: 860px) {
  body.site-theme-theme2 .bb2-about-page {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 2rem;
  }
}
body.site-theme-theme2 .bb2-about-visual {
  border: 2px solid var(--c-text);
  box-shadow: var(--sh-hard);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--c-bg);
}
body.site-theme-theme2 .bb2-about-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
body.site-theme-theme2 .bb2-about-page h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  margin: 0 0 0.85rem;
}
body.site-theme-theme2 .bb2-policy-body {
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.75;
  font-size: var(--fs-md);
}

/* Blog */
body.site-theme-theme2 .bb2-blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr));
  gap: 1.25rem;
}
body.site-theme-theme2 .bb2-blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border: 2px solid var(--c-text);
  border-radius: 0.85rem;
  overflow: hidden;
  background: var(--c-bg-white);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
body.site-theme-theme2 .bb2-blog-card__link:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--c-text);
}
body.site-theme-theme2 .bb2-blog-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--c-bg-soft, #f3f4f6);
  overflow: hidden;
}
body.site-theme-theme2 .bb2-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body.site-theme-theme2 .bb2-blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 1.05rem 1.15rem;
}
body.site-theme-theme2 .bb2-blog-card__title {
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.3;
}
body.site-theme-theme2 .bb2-blog-card__ex {
  font-size: 0.92rem;
  line-height: 1.5;
  opacity: 0.8;
}
body.site-theme-theme2 .bb2-blog-article__inner {
  max-width: 48rem;
  margin: 0 auto;
}
body.site-theme-theme2 .bb2-blog-article__back {
  margin: 0 0 1.1rem;
}
body.site-theme-theme2 .bb2-blog-article__back a {
  color: var(--c-indigo, var(--c-text));
  font-weight: 700;
  text-decoration: none;
}
body.site-theme-theme2 .bb2-blog-article__back a:hover {
  text-decoration: underline;
}
body.site-theme-theme2 .bb2-blog-article__hero {
  margin: 0 0 1.35rem;
  border: 2px solid var(--c-text);
  border-radius: 0.85rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--c-bg-soft, #f3f4f6);
}
body.site-theme-theme2 .bb2-blog-article__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body.site-theme-theme2 .bb2-blog-article__head h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  margin: 0 0 0.45rem;
}
body.site-theme-theme2 .bb2-blog-article__date {
  margin: 0;
  opacity: 0.7;
  font-size: 0.9rem;
}
body.site-theme-theme2 .bb2-blog-article__lead {
  margin: 0.85rem 0 1.25rem;
  font-size: 1.08rem;
  line-height: 1.55;
}
body.site-theme-theme2 .bb2-blog-article__body {
  line-height: 1.75;
  font-size: var(--fs-md);
}
body.site-theme-theme2 .bb2-blog-article__body p {
  margin: 0 0 1rem;
}
body.site-theme-theme2 .bb2-blog-article__body ul,
body.site-theme-theme2 .bb2-blog-article__body ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
body.site-theme-theme2 .bb2-blog-article__body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
body.site-theme-theme2 .bb2-blog-article__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.75rem;
}
body.site-theme-theme2 .bb2-blog-article__media-item {
  margin: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.04);
}
body.site-theme-theme2 .bb2-blog-article__media-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
body.site-theme-theme2 .bb2-blog-article__media-item figcaption {
  padding: 0.45rem 0.65rem 0.6rem;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.65);
}
@media (max-width: 639px) {
  body.site-theme-theme2 .bb2-blog-article__media {
    grid-template-columns: 1fr;
  }
}

/* Footer — surface + ink from palette */
body.site-theme-theme2 .site-footer {
  background: var(--c-bg-white) !important;
  color: var(--c-text) !important;
  border-top: 2px solid var(--c-text) !important;
  margin-top: 0;
}
body.site-theme-theme2 .footer-grid {
  display: grid;
  gap: 1.5rem 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11.5rem), 1fr));
  padding: clamp(2rem, 4vw, 2.75rem) 0 1.5rem;
}
body.site-theme-theme2 .footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  min-width: 0;
  max-width: 22rem;
}
body.site-theme-theme2 .footer-brand .logo {
  margin-bottom: 0;
  color: var(--c-text) !important;
}
body.site-theme-theme2 .footer-tagline {
  color: var(--c-text-muted) !important;
  opacity: 1;
  font-size: var(--fs-sm);
  line-height: 1.55;
  max-width: 22rem;
  margin: 0;
}
/* Social under brand — same placement as theme1 */
body.site-theme-theme2 .footer-brand .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.15rem;
}
body.site-theme-theme2 .footer-brand .social-btn {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-text, var(--c-text));
  border-radius: var(--r-sm);
  background: var(--color-primary-soft, var(--c-indigo-light));
  color: var(--color-primary, var(--c-indigo)) !important;
  box-shadow: 2px 2px 0 var(--color-text, var(--c-text));
  font-size: 0.95rem;
  transition: background var(--ease), color var(--ease), transform var(--ease), box-shadow var(--ease);
}
body.site-theme-theme2 .footer-brand .social-btn:hover,
body.site-theme-theme2 .footer-brand .social-btn:focus-visible {
  background: var(--color-primary, var(--c-indigo)) !important;
  color: var(--color-primary-text, var(--c-on-primary, #fff)) !important;
  border-color: var(--color-primary, var(--c-indigo));
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--color-accent, var(--c-yellow));
  outline: none;
}
body.site-theme-theme2 .footer-heading,
body.site-theme-theme2 .footer-col h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-sm);
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
  color: var(--c-text) !important;
  text-transform: none;
}
body.site-theme-theme2 .footer-link {
  margin-bottom: 0.4rem;
  color: var(--c-text) !important;
}
body.site-theme-theme2 .footer-link a {
  color: var(--c-text) !important;
  opacity: 1;
  font-size: var(--fs-sm);
  text-decoration: none;
}
body.site-theme-theme2 .footer-link a:hover {
  color: var(--c-indigo) !important;
}
body.site-theme-theme2 .footer-bar {
  border-top: 2px solid var(--c-text);
  padding: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: space-between;
  align-items: center;
}
body.site-theme-theme2 .footer-copy {
  font-size: var(--fs-xs);
  color: var(--c-text-muted) !important;
  opacity: 1;
}
body.site-theme-theme2 .bb2-powered {
  color: var(--c-text-muted) !important;
  opacity: 1;
  font-size: var(--fs-xs);
  text-decoration: none;
}
body.site-theme-theme2 .bb2-powered:hover {
  color: var(--c-indigo) !important;
}
body.site-theme-theme2 .bb2-footer-admin {
  color: var(--c-text-muted) !important;
  opacity: 1;
  font-size: var(--fs-xs);
  text-decoration: none;
}
body.site-theme-theme2 .bb2-footer-admin:hover {
  color: var(--c-indigo) !important;
}

/* Header cart — primary fill + contrasting label (beats button reset) */
body.site-theme-theme2 .header-icons button.icon-btn[data-bb2-open-cart] {
  background: var(--color-primary, var(--c-indigo));
  color: var(--color-primary-text, var(--c-on-primary, #fff)) !important;
  border: 2px solid var(--color-text, var(--c-text));
  border-radius: var(--r-sm);
  box-shadow: 3px 3px 0 var(--color-text, var(--c-text));
  transition: background var(--ease), color var(--ease), transform var(--ease), box-shadow var(--ease);
}
body.site-theme-theme2 .header-icons button.icon-btn[data-bb2-open-cart]:hover,
body.site-theme-theme2 .header-icons button.icon-btn[data-bb2-open-cart]:focus-visible {
  background: var(--color-primary-hover, var(--c-indigo-dark));
  color: var(--color-primary-text, var(--c-on-primary, #fff)) !important;
  outline: none;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--color-text, var(--c-text));
}
body.site-theme-theme2 .header-icons button.icon-btn[data-bb2-open-cart] i {
  color: inherit;
}
body.site-theme-theme2 .header-icons button.icon-btn[data-bb2-open-cart] .cart-count {
  top: -0.2rem;
  right: -0.2rem;
  background: var(--color-accent, var(--c-yellow));
  color: var(--color-accent-text, var(--c-on-accent, #111)) !important;
  border: 2px solid var(--color-surface, #fff);
}

/* Cart FAB / drawer */
body.site-theme-theme2 .bb2-cart-fab,
body.site-theme-theme2 .bb2-wa-fab {
  position: fixed;
  right: max(1.15rem, env(safe-area-inset-right, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  z-index: 91;
  width: 3.35rem;
  height: 3.35rem;
  border: 2px solid var(--color-text, var(--c-text));
  border-radius: 50%;
  background: var(--color-primary, var(--c-indigo));
  color: var(--color-primary-text, var(--c-on-primary, #fff));
  box-shadow: 4px 4px 0 var(--color-text, var(--c-text));
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
body.site-theme-theme2 button.bb2-cart-fab {
  background: var(--color-primary, var(--c-indigo)) !important;
  color: var(--color-primary-text, var(--c-on-primary, #fff)) !important;
  border: 2px solid var(--color-text, var(--c-text));
}
body.site-theme-theme2 button.bb2-cart-fab:hover,
body.site-theme-theme2 button.bb2-cart-fab:focus-visible {
  background: var(--color-primary-hover, var(--c-indigo-dark)) !important;
  color: var(--color-primary-text, var(--c-on-primary, #fff)) !important;
  outline: none;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--color-text, var(--c-text));
}
body.site-theme-theme2 .bb2-cart-fab[hidden] { display: none !important; }
/* Cart sits above common .whatsapp-float (same corner otherwise) */
body.site-theme-theme2:has(.whatsapp-float) .bb2-cart-fab,
body.site-theme-theme2:has(.pub-float-btn--wa) .bb2-cart-fab,
body.site-theme-theme2:has(.bb2-wa-fab) .bb2-cart-fab {
  bottom: calc(max(1.25rem, env(safe-area-inset-bottom, 0px)) + 4.5rem);
}
body.site-theme-theme2 .bb2-wa-fab {
  background: var(--c-success);
  color: var(--c-on-primary);
  border-color: var(--color-text, var(--c-text));
  z-index: 90;
}
body.site-theme-theme2 .bb2-wa-fab--above-cart {
  bottom: max(5.35rem, calc(env(safe-area-inset-bottom, 0px) + 4.35rem));
}

body.site-theme-theme2 .bb2-float-stack {
  position: fixed;
  right: max(1.3rem, env(safe-area-inset-right, 0px));
  bottom: max(5.35rem, calc(env(safe-area-inset-bottom, 0px) + 4.35rem));
  z-index: 89;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
body.site-theme-theme2 .bb2-float-stack--above-cart {
  bottom: max(9.4rem, calc(env(safe-area-inset-bottom, 0px) + 8.4rem));
}
body.site-theme-theme2 .bb2-float-stack__btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 2px solid var(--color-text, var(--c-text));
  background: #fff;
  color: var(--color-text, var(--c-text));
  box-shadow: 3px 3px 0 var(--color-text, var(--c-text));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
body.site-theme-theme2 .bb2-float-stack__btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--color-text, var(--c-text));
}
body.site-theme-theme2 .bb2-float--dock {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
}
body.site-theme-theme2 .bb2-float__dock {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.55rem 0.4rem;
  border: 2px solid var(--color-text, var(--c-text));
  border-right: 0;
  border-radius: 1rem 0 0 1rem;
  background: #fff;
  box-shadow: -4px 4px 0 var(--color-text, var(--c-text));
}
body.site-theme-theme2 .bb2-float__btn {
  position: relative;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  border: 2px solid var(--color-text, var(--c-text));
  background: var(--color-primary, var(--c-indigo));
  color: var(--color-primary-text, #fff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
body.site-theme-theme2 .bb2-float__btn--wa {
  background: var(--c-success, #22c55e);
}
body.site-theme-theme2 .bb2-float__btn[data-label]::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 0.5rem);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  padding: 0.25rem 0.5rem;
  border: 2px solid var(--color-text, var(--c-text));
  background: #fff;
  color: var(--color-text, var(--c-text));
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
}
body.site-theme-theme2 .bb2-float__btn:hover[data-label]::before { opacity: 1; }

/* Common engine emits .pub-float-* / .whatsapp-float — keep NEXO Bold skin + all viewports */
body.site-theme-theme2 .pub-float-wrap--dock {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1098;
}
body.site-theme-theme2 .pub-float-dock {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.55rem 0.4rem;
  border: 2px solid var(--color-text, var(--c-text));
  border-right: 0;
  border-radius: 1rem 0 0 1rem;
  background: #fff;
  box-shadow: -4px 4px 0 var(--color-text, var(--c-text));
  overflow: visible;
}
body.site-theme-theme2 .pub-float-btn--dock {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  border: 2px solid var(--color-text, var(--c-text));
  background: var(--color-primary, var(--c-indigo));
  color: var(--color-primary-text, #fff);
  border-bottom: 2px solid var(--color-text, var(--c-text));
  box-shadow: none;
}
body.site-theme-theme2 .pub-float-btn--dock:first-child,
body.site-theme-theme2 .pub-float-btn--dock:last-child {
  border-radius: 50%;
}
body.site-theme-theme2 .pub-float-btn--dock:hover {
  background: var(--color-primary-hover, var(--c-indigo-dark));
  color: var(--color-primary-text, #fff);
  transform: none;
}
body.site-theme-theme2 .pub-float-btn--dock::before {
  border: 2px solid var(--color-text, var(--c-text));
  background: #fff;
  color: var(--color-text, var(--c-text));
  border-radius: 0;
  font-weight: 700;
}
body.site-theme-theme2 .pub-float-btn--wa {
  background: var(--c-success, #22c55e) !important;
  color: #fff !important;
  border-color: var(--color-text, var(--c-text));
}
body.site-theme-theme2 .whatsapp-float,
body.site-theme-theme2 .whatsapp-float--above-cart {
  border-radius: 50%;
  border: 2px solid var(--color-text, var(--c-text));
  box-shadow: 4px 4px 0 var(--color-text, var(--c-text));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  right: max(1.15rem, env(safe-area-inset-right, 0px));
}
body.site-theme-theme2 .pub-float-stack a {
  border-radius: 50%;
  border: 2px solid var(--color-text, var(--c-text));
  background: #fff;
  color: var(--color-text, var(--c-text));
  box-shadow: 3px 3px 0 var(--color-text, var(--c-text));
}

body.site-theme-theme2 .bb2-cart-fab__badge {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--color-accent, var(--c-yellow));
  color: var(--color-accent-text, var(--c-on-accent, #111)) !important;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-surface, #fff);
}
body.site-theme-theme2 .bb2-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
body.site-theme-theme2 .bb2-cart-drawer.is-open { pointer-events: auto; }
body.site-theme-theme2 .bb2-cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .2s ease;
}
body.site-theme-theme2 .bb2-cart-drawer.is-open .bb2-cart-drawer__backdrop { opacity: 1; }
body.site-theme-theme2 .bb2-cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(22rem, 100%);
  height: 100%;
  background: var(--c-bg-white);
  border-left: 2px solid var(--c-text);
  box-shadow: var(--sh-hard);
  transform: translateX(105%);
  transition: transform .22s ease;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  box-sizing: border-box;
}
body.site-theme-theme2 .bb2-cart-drawer.is-open .bb2-cart-drawer__panel { transform: none; }
body.site-theme-theme2 .bb2-cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-lg);
}
body.site-theme-theme2 .bb2-cart-drawer__list {
  flex: 1;
  overflow: auto;
  list-style: none;
  margin: 0;
  padding: 0;
  min-height: 0;
}
body.site-theme-theme2 .bb2-cart-drawer__foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 2px solid var(--c-text);
}
body.site-theme-theme2 .bb2-cart-summary {
  margin-bottom: 0.85rem;
  font-weight: 700;
}
body.site-theme-theme2 .bb2-cart-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
  font-size: var(--fs-sm);
}
/* Cart line layout matches theme1: name + rate|sum full width, then qty | Remove */
body.site-theme-theme2 .bb2-cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--c-border);
}
body.site-theme-theme2 .bb2-cart-line__info {
  grid-column: 1 / -1;
  min-width: 0;
  width: 100%;
}
body.site-theme-theme2 .bb2-cart-line__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-sm);
}
body.site-theme-theme2 .bb2-cart-line__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  width: 100%;
  margin-top: 0.35rem;
  font-size: var(--fs-xs);
  font-variant-numeric: tabular-nums;
  line-height: 1.35;
}
body.site-theme-theme2 .bb2-cart-line__rate {
  color: var(--c-text-muted);
  min-width: 0;
}
body.site-theme-theme2 .bb2-cart-line__sum {
  color: var(--c-text);
  font-weight: 800;
  white-space: nowrap;
  margin-left: auto;
}
body.site-theme-theme2 .bb2-cart-line__qty {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 2px solid var(--color-primary, var(--c-indigo));
  border-radius: var(--r-sm);
  padding: 0.2rem 0.3rem;
  font-weight: 700;
  justify-self: start;
  background: var(--color-surface, var(--c-bg-white, #fff));
  box-shadow: 2px 2px 0 var(--color-primary-soft, var(--c-indigo-light));
}
body.site-theme-theme2 button.bb2-cart-line__step {
  width: 1.65rem;
  height: 1.65rem;
  border: none;
  background: var(--color-primary-soft, var(--c-indigo-light)) !important;
  color: var(--color-primary, var(--c-indigo)) !important;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: background var(--ease), color var(--ease), transform var(--ease);
}
body.site-theme-theme2 button.bb2-cart-line__step:hover,
body.site-theme-theme2 button.bb2-cart-line__step:focus-visible {
  background: var(--color-primary, var(--c-indigo)) !important;
  color: var(--color-primary-text, var(--c-on-primary, #fff)) !important;
  outline: none;
  transform: scale(1.05);
}
body.site-theme-theme2 button.bb2-cart-line__step:active {
  transform: scale(0.96);
}
body.site-theme-theme2 .bb2-cart-line__n {
  min-width: 1.25rem;
  text-align: center;
  font-weight: 800;
  font-size: var(--fs-sm);
  color: var(--color-text, var(--c-text));
}
body.site-theme-theme2 .bb2-cart-line__remove {
  border: none;
  background: none;
  color: var(--color-primary, var(--c-indigo)) !important;
  font-size: var(--fs-xs);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  justify-self: end;
  padding: 0.25rem 0;
}
body.site-theme-theme2 .bb2-cart-line__remove:hover,
body.site-theme-theme2 .bb2-cart-line__remove:focus-visible {
  color: var(--color-primary-hover, var(--c-indigo-dark)) !important;
  outline: none;
}

/* Place order — primary CTA with contrasting label */
body.site-theme-theme2 #bb2CartOrder.btn-yellow,
body.site-theme-theme2 .bb2-cart-drawer__foot button.btn-yellow {
  background: var(--color-primary, var(--c-indigo)) !important;
  color: var(--color-primary-text, var(--c-on-primary, #fff)) !important;
  border-color: var(--color-primary, var(--c-indigo)) !important;
  box-shadow: 4px 4px 0 var(--color-primary-hover, var(--c-indigo-dark));
}
body.site-theme-theme2 #bb2CartOrder.btn-yellow:hover:not(:disabled),
body.site-theme-theme2 .bb2-cart-drawer__foot button.btn-yellow:hover:not(:disabled) {
  background: var(--color-primary-hover, var(--c-indigo-dark)) !important;
  border-color: var(--color-primary-hover, var(--c-indigo-dark)) !important;
  color: var(--color-primary-text, var(--c-on-primary, #fff)) !important;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--color-primary, var(--c-indigo));
}
body.site-theme-theme2 #bb2CartOrder.btn-yellow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.12);
}
body.site-theme-theme2 .bb2-cart-empty {
  list-style: none;
  color: var(--c-text-muted);
  padding: 1rem 0;
}

/* Header Call Now — accent fill + contrasting label */
body.site-theme-theme2 .header-icons .icon-btn.is-call {
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  width: auto;
  height: auto;
  min-height: 2.35rem;
  border-radius: var(--r-full);
  background: var(--color-accent, var(--c-yellow));
  border: 2px solid var(--color-text, var(--c-text));
  box-shadow: 3px 3px 0 var(--color-accent-hover, var(--c-yellow-dark));
  text-decoration: none;
  color: var(--color-accent-text, var(--c-on-accent, #111)) !important;
}
body.site-theme-theme2 .header-icons .icon-btn.is-cta-secondary {
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  width: auto;
  height: auto;
  min-height: 2.35rem;
  border-radius: var(--r-full);
  background: transparent;
  border: 2px solid var(--color-text, var(--c-text));
  text-decoration: none;
  color: var(--color-text, var(--c-text)) !important;
}
body.site-theme-theme2 .mobile-drawer-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.85rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--c-border, rgba(0, 0, 0, 0.12));
}
body.site-theme-theme2 .mobile-drawer-link--cta {
  font-weight: 700;
  text-align: center;
  border-radius: var(--r-full, 999px);
  border: 2px solid var(--color-text, var(--c-text));
}
body.site-theme-theme2 .mobile-drawer-link--cta.is-primary {
  background: var(--color-accent, var(--c-yellow));
  color: var(--color-accent-text, var(--c-on-accent, #111)) !important;
}
@media (max-width: 767px) {
  body.site-theme-theme2 .header-icons .icon-btn.is-call,
  body.site-theme-theme2 .header-icons .icon-btn.is-cta-secondary { display: none; }
  body.site-theme-theme2 .section { padding: var(--sp-12) 0; }
  body.site-theme-theme2 .section-sm { padding: var(--sp-8) 0; }
  body.site-theme-theme2 .header-inner {
    gap: 0.4rem 0.5rem;
  }
  body.site-theme-theme2 .header-inner > .logo {
    font-size: clamp(1.05rem, 4.4vw, 1.18rem) !important;
    line-height: 1.22 !important;
  }
  body.site-theme-theme2 .header-inner > .logo .logo-mark {
    width: 2rem;
    height: 2rem;
  }
  body.site-theme-theme2 .sec-head {
    align-items: flex-start;
  }
  body.site-theme-theme2 .sec-head-copy {
    min-width: 0;
    max-width: 100%;
    flex: 1 1 100%;
  }
  body.site-theme-theme2 .sec-head h2 {
    font-size: clamp(1.1rem, 5.2vw, 1.4rem);
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  body.site-theme-theme2 .footer-brand .logo {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 100%;
    font-size: clamp(0.95rem, 4.5vw, 1.25rem);
    line-height: 1.25;
  }
  body.site-theme-theme2 .product-grid-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
  body.site-theme-theme2 .product-grid-wrap .product-card {
    width: 100%;
    flex: none;
  }
  body.site-theme-theme2 .product-card-body { padding: 0.75rem 0.7rem 0.9rem; }
  body.site-theme-theme2 .price-cur { font-size: var(--fs-md); }
  body.site-theme-theme2 .sec-head { margin-bottom: var(--sp-6); }
  body.site-theme-theme2 {
    --sh-hard: 3px 3px 0 var(--color-text, #111118);
    --sh-hard-ind: 3px 3px 0 var(--color-primary, #4f46e5);
    --sh-hard-yel: 3px 3px 0 var(--color-accent, #fbbf24);
    --container-pad: 1.1rem;
  }
}

@media (min-width: 1100px) {
  body.site-theme-theme2 .product-grid-wrap .product-card {
    flex-basis: 16.25rem;
    width: 16.25rem;
  }
}

.bb2-categories-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.bb2-category-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid var(--color-text, #111118);
  border-radius: 0.35rem;
  background: var(--color-surface, #fff);
  box-shadow: var(--sh-hard, 3px 3px 0 #111118);
  text-decoration: none;
  color: inherit;
  min-height: 12rem;
  transition: transform 120ms ease;
}
.bb2-category-card:hover {
  transform: translate(-2px, -2px);
}
.bb2-category-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3f3f7;
}
.bb2-category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bb2-category-card__title {
  display: block;
  padding: 0.85rem 0.9rem 1rem;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.25;
}

/* —— Theme2 architecture slots (NEXO Bold) —— */

.bb2-utility {
  background: var(--color-text, #111118);
  color: #fff;
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 3px solid var(--color-accent, #fbbf24);
}
.bb2-utility__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 1.25rem;
  min-height: 2rem;
  padding-block: 0.4rem;
}
.bb2-utility__line {
  color: var(--color-accent, #fbbf24);
}
.bb2-utility__note {
  opacity: 0.85;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.01em;
}

.nav-submenu-title {
  padding: 0.5rem 0.85rem 0.3rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary, #4f46e5);
  list-style: none;
}
.nav-sublink {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  white-space: normal;
}
.nav-sublabel {
  display: block;
  font-weight: 700;
}
.nav-subhint {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-muted, #6b7280);
  line-height: 1.35;
}
.nav-view-all {
  list-style: none;
  margin-top: 0.2rem;
  padding-top: 0.25rem;
  border-top: 2px solid var(--color-text, #111118);
}
.nav-view-all-link {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-primary, #4f46e5);
}
.mobile-drawer-subtitle {
  margin: 0.65rem 1rem 0.15rem;
  padding: 0;
}
.mobile-drawer-link--sub {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.bb2-hero-credentials,
.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 3px solid var(--color-text, #111118);
}
.bb2-hero-credential,
.hero-credential {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 5.5rem;
}
.bb2-hero-credential strong,
.hero-credential strong {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-text, #111118);
  line-height: 1.1;
}
.bb2-hero-credential span,
.hero-credential span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-muted, #6b7280);
}

.product-card-eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary, #4f46e5);
}
.product-card-excerpt {
  margin: 0.3rem 0 0.45rem;
  font-size: 0.84rem;
  line-height: 1.4;
  color: var(--color-muted, #6b7280);
}

.bb2-about-home__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 2rem 2.5rem;
  align-items: center;
}
@media (max-width: 860px) {
  .bb2-about-home__grid {
    grid-template-columns: 1fr;
  }
}
.bb2-about-home__visual {
  position: relative;
  border: 3px solid var(--color-text, #111118);
  border-radius: 0.35rem;
  overflow: hidden;
  box-shadow: var(--sh-hard-yel, 4px 4px 0 #fbbf24);
  background: var(--color-surface, #fff);
}
.bb2-about-home__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.bb2-about-home__badge {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  max-width: calc(100% - 1.7rem);
  padding: 0.75rem 0.9rem;
  border: 2px solid var(--color-text, #111118);
  border-radius: 0.25rem;
  background: var(--color-accent, #fbbf24);
  box-shadow: var(--sh-hard, 3px 3px 0 #111118);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  color: var(--color-text, #111118);
}
.bb2-about-home__badge-role {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.bb2-about-home__badge-name {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 1.05rem;
  font-weight: 800;
}
.bb2-about-home__badge-qual {
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 600;
  opacity: 0.85;
}
.bb2-about-home__body {
  margin-top: 0.85rem;
}
.bb2-about-home__body p + p {
  margin-top: 0.75rem;
}
.bb2-about-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.bb2-gallery-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}
@media (max-width: 860px) {
  .bb2-gallery-spotlight {
    grid-template-columns: 1fr;
  }
}
.bb2-gallery-spotlight__bullets {
  margin: 1rem 0 1.15rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.bb2-gallery-spotlight__bullets li {
  position: relative;
  padding-left: 1.45rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text, #111118);
}
.bb2-gallery-spotlight__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 0.6rem;
  height: 0.6rem;
  border: 2px solid var(--color-text, #111118);
  background: var(--color-accent, #fbbf24);
  box-shadow: 2px 2px 0 var(--color-text, #111118);
}
.bb2-gallery-spotlight__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.bb2-gallery-spotlight__item {
  margin: 0;
  border: 3px solid var(--color-text, #111118);
  border-radius: 0.35rem;
  overflow: hidden;
  box-shadow: var(--sh-hard, 3px 3px 0 #111118);
  background: var(--color-surface, #fff);
}
.bb2-gallery-spotlight__item:first-child {
  grid-row: span 2;
}
.bb2-gallery-spotlight__item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 10rem;
  object-fit: cover;
}

.bb2-care-rail {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.bb2-care-rail__item {
  flex: 0 0 min(72vw, 16.5rem);
  margin: 0;
  scroll-snap-align: start;
  border: 3px solid var(--color-text, #111118);
  border-radius: 0.35rem;
  overflow: hidden;
  background: var(--color-surface, #fff);
  box-shadow: var(--sh-hard-ind, 3px 3px 0 #4f46e5);
}
.bb2-care-rail__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.bb2-care-rail__item figcaption {
  padding: 0.65rem 0.8rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-text, #111118);
}

/* Pro care-carousel emit — NEXO Bold skin */
body.site-theme-theme2 .care-gallery--rail,
body.site-theme-theme2 .care-gallery {
  overflow: hidden;
}
body.site-theme-theme2 .care-gallery__track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
}
body.site-theme-theme2 .care-gallery__track figure {
  flex: 0 0 min(72vw, 16.5rem);
  margin: 0;
  scroll-snap-align: start;
  border: 3px solid var(--color-text, #111118);
  border-radius: 0.35rem;
  overflow: hidden;
  background: var(--color-surface, #fff);
  box-shadow: var(--sh-hard-ind, 3px 3px 0 #4f46e5);
}
body.site-theme-theme2 .care-gallery__track img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
body.site-theme-theme2 .care-gallery__track figcaption {
  padding: 0.65rem 0.8rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 800;
}

body.site-theme-theme2 .bb2-faq .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body.site-theme-theme2 .bb2-faq .sec-head,
body.site-theme-theme2 .bb2-faq > .container > p {
  width: 100%;
}
body.site-theme-theme2 .bb2-faq__list {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 0.75rem;
}
.bb2-faq__item {
  border: 3px solid var(--color-text, #111118);
  border-radius: 0.35rem;
  background: var(--color-surface, #fff);
  box-shadow: var(--sh-hard, 3px 3px 0 #111118);
  overflow: hidden;
}
.bb2-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-text, #111118);
}
.bb2-faq__q::-webkit-details-marker {
  display: none;
}
.bb2-faq__mark {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--color-text, #111118);
  border-radius: 0.2rem;
  background: var(--color-accent, #fbbf24);
  color: var(--color-text, #111118);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease;
}
.bb2-faq__item[open] .bb2-faq__mark {
  transform: rotate(45deg);
  background: var(--color-primary, #4f46e5);
  color: #fff;
}
.bb2-faq__a {
  padding: 0 1.15rem 1.1rem;
}
.bb2-faq__a p {
  color: var(--color-muted, #6b7280);
  font-weight: 500;
}

.bb2-product-detail__desc p + p {
  margin-top: 0.75rem;
}

body.site-theme-theme2 .bb2-about-visual.is-brand-panel,
body.site-theme-theme2 .bb2-about-home__visual.is-brand-panel {
  display: grid;
  place-items: center;
  aspect-ratio: auto;
  min-height: 240px;
  padding: 1.5rem;
  background: #fff;
}
body.site-theme-theme2 .bb2-about-visual.is-brand-panel img,
body.site-theme-theme2 .bb2-about-home__visual.is-brand-panel img {
  width: auto !important;
  height: auto !important;
  max-width: min(260px, 70%) !important;
  max-height: 140px !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
}
body.site-theme-theme2 #enquireForm,
body.site-theme-theme2 #appointmentForm,
body.site-theme-theme2 .wd-block-anchor {
  scroll-margin-top: 120px;
}
