/*
 * SEE Header — ported from Sweet Heaven (Shopify) and re-skinned industrial
 * Structure: Desktop Topbar → Floating Pill Nav → Mobile Drawer
 */

/* ─── Shared tokens (override child style.css :root if needed) ────────────── */
:root {
  --hbg:   #ffffff;
  --ring:  rgba(17,17,17,.12);
  --max:   min(96vw, 1440px);
  --pad:   clamp(12px, 3vw, 28px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   DESKTOP TOP BAR
   Grid: Logo · Tagline · Spacer · Phone · Get Quote CTA
   Hidden on ≤1024 px
═══════════════════════════════════════════════════════════════════════════ */

.see-tb {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--hbg);
  border-bottom: 1px solid var(--ring);
}

.see-tb__in {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto auto auto; /* logo · spacer · search · phone · cta */
  gap: 14px;
  align-items: center;
}

.see-tb__logo img {
  max-height: 46px;
  height: auto;
  width: auto;
  display: block;
}

/* ─── Expanding search pill (default = circle icon, click to expand) ──── */
.see-tb__search {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.10);
  display: flex;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  justify-self: end;
  transition:
    width 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.see-tb__search:hover { background: rgba(0, 0, 0, 0.10); }
.see-tb__search.is-open {
  width: min(360px, 38vw);
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  cursor: text;
}

.see-search-toggle {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #141414;
  transition: color 0.25s ease;
}
.see-tb__search.is-open .see-search-toggle {
  color: #6a6a6a;
  cursor: default;
}

.see-search-form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 6px;
  min-width: 0;            /* allow input to shrink inside flex */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease 0.05s;
}
.see-tb__search.is-open .see-search-form {
  opacity: 1;
  pointer-events: auto;
}

.see-search-form input[type="search"] {
  flex: 1;
  min-width: 0;
  width: 0;
  border: none;
  background: transparent;
  outline: none;
  font: 500 14px/1.2 -apple-system, BlinkMacSystemFont, "Inter", system-ui, sans-serif;
  color: #0f0f0f;
  padding: 0;
  -webkit-appearance: none;
}
.see-search-form input::placeholder { color: rgba(15, 15, 15, 0.42); }
.see-search-form input::-webkit-search-cancel-button { display: none; }

.see-search-close {
  width: 26px;
  height: 26px;
  background: rgba(0, 0, 0, 0.06);
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #555;
  flex-shrink: 0;
  padding: 0;
  transition: background 0.15s ease, color 0.15s ease;
}
.see-search-close:hover { background: rgba(0, 0, 0, 0.12); color: #000; }

/* ─── Animated ringing phone ─────────────────────────────────────────── */
@keyframes see-ring {
  0%,100%  { transform: rotate(0deg); }
  10%      { transform: rotate(-18deg); }
  20%      { transform: rotate(18deg); }
  30%      { transform: rotate(-14deg); }
  40%      { transform: rotate(14deg); }
  50%      { transform: rotate(-8deg); }
  60%      { transform: rotate(0deg); }
}
.see-phone-icon {
  display: inline-flex;
  animation: see-ring 2.8s ease-in-out infinite;
  transform-origin: 50% 85%;
}

.see-tb__phone a {
  display: flex;
  align-items: center;
  gap: 7px;
  font: 700 14px/1.2 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--tb-text, #141414);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid var(--ring);
  transition: border-color .15s;
}
.see-tb__phone a:hover { border-color: var(--see-red, #CC1B1B); color: var(--see-red, #CC1B1B); }

.see-tb__cta a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--see-red, #CC1B1B);
  color: #fff;
  font: 700 14px/1.2 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s;
}
.see-tb__cta a:hover { background: var(--see-red-dark, #A01515); }

@media (max-width: 1024px) { .see-tb { display: none; } }


/* ═══════════════════════════════════════════════════════════════════════════
   DESKTOP NAV — FLOATING PILL
═══════════════════════════════════════════════════════════════════════════ */

.see-nav-wrap {
  background: transparent;
  border: 0;
  position: relative;
  z-index: 80;
  padding: 10px var(--pad);
  display: flex;
  justify-content: center;
}

/* Responsive pill width: fluid across viewport with sane caps per screen tier */
.see-nav {
  width: 96vw;
  max-width: 1680px;
  margin: 0;
}
@media (min-width: 1920px) { .see-nav { width: 88vw; max-width: 1760px; } }
@media (min-width: 1440px) and (max-width: 1919px) { .see-nav { width: 92vw; } }
@media (max-width: 1280px) { .see-nav { width: 95vw; } }
@media (max-width: 1024px) { .see-nav { width: 96vw; } }

.see-nav__surface {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;          /* full pill */
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 10px 32px rgba(0, 0, 0, 0.12),
    0 2px 6px rgba(0, 0, 0, 0.06);
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO BLEED — TOPBAR + NAV both fixed, transparent, floating over video
   Hero fills 100vh from the very top. Both headers are out of page flow
   via position:fixed so nothing pushes the hero down.
═══════════════════════════════════════════════════════════════════════ */

/* ── 1. TOPBAR: ALWAYS transparent (in both states) ── */
body.home .see-tb,
body.has-bleed-hero .see-tb {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
}
body.home .see-tb__in,
body.has-bleed-hero .see-tb__in {
  grid-template-columns: auto 1fr auto auto;  /* logo · search · phone · cta */
}
body.home.admin-bar .see-tb,
body.has-bleed-hero.admin-bar .see-tb { top: 32px; }

/* Logo: white circular backdrop so transparent-JPEG logo blends on dark video */
body.home .see-tb__logo,
body.has-bleed-hero .see-tb__logo {
  /* Transparent — let the hero video play through the logo */
  background: transparent;
  padding: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.35));
}
body.home .see-tb__logo img,
body.has-bleed-hero .see-tb__logo img { max-height: 56px; }

/* Search pill over hero — glass circle in closed state, solid white when open */
body.home .see-tb__search,
body.has-bleed-hero .see-tb__search {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
body.home .see-tb__search:hover,
body.has-bleed-hero .see-tb__search:hover {
  background: rgba(255, 255, 255, 0.22) !important;
}
body.home .see-tb__search .see-search-toggle,
body.has-bleed-hero .see-tb__search .see-search-toggle {
  color: #ffffff !important;
}
body.home .see-tb__search.is-open,
body.has-bleed-hero .see-tb__search.is-open {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28) !important;
}
body.home .see-tb__search.is-open .see-search-toggle,
body.has-bleed-hero .see-tb__search.is-open .see-search-toggle {
  color: #6a6a6a !important;
}

/* Phone: light text over hero, sits in subtle glass pill so it stays readable */
body.home .see-tb__phone a,
body.has-bleed-hero .see-tb__phone a {
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  background: rgba(0,0,0,0.22) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body.home .see-tb__phone a:hover,
body.has-bleed-hero .see-tb__phone a:hover {
  background: rgba(0,0,0,0.32) !important;
  border-color: rgba(255,255,255,0.4) !important;
  color: #fff !important;
}

/* ── 2. NAV PILL: fixed just below topbar, glass effect ── */
body.home .see-nav-wrap,
body.has-bleed-hero .see-nav-wrap {
  position: fixed !important;
  top: 62px;   /* topbar height */
  left: 0;
  right: 0;
  z-index: 80;
  background: transparent;
  transition: top .3s ease;
}
body.home.admin-bar .see-nav-wrap,
body.has-bleed-hero.admin-bar .see-nav-wrap { top: calc(32px + 62px); }

body.home .see-nav__surface,
body.has-bleed-hero .see-nav__surface {
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(28px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 12px 40px rgba(0, 0, 0, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.10) !important;
  border: 1px solid rgba(255,255,255,0.55) !important;
}

/* Nav links over video — dark for high readability on white glass */
body.home .see-nav__link,
body.has-bleed-hero .see-nav__link {
  color: #0f0f0f !important;
}
body.home .see-nav__link:hover,
body.has-bleed-hero .see-nav__link:hover,
body.home .see-nav__menu > li:hover > .see-nav__link,
body.has-bleed-hero .see-nav__menu > li:hover > .see-nav__link {
  background: rgba(0, 0, 0, 0.06) !important;
  color: #0a0a0a !important;
}

/* ── 3. HERO: fills from absolute top. Headers are fixed (out of flow). ── */
body.home #main,
body.has-bleed-hero #main { margin-top: 0 !important; padding-top: 0 !important; }

body.home .see-hero,
body.has-bleed-hero .see-hero { margin-top: 0 !important; }

/* Hero text is vertically centered inside 100vh — no padding needed.
   Admin bar (32px) only shifts the headers, not the hero content. */

/* ── 4. ON SCROLL: both go solid (class added by JS) ── */
@keyframes see-slidein {
  from { transform: translateY(-8px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* Topbar STAYS TRANSPARENT when scrolled — only its contents change.
   Logo keeps the white backdrop pill (works on both dark & light bgs).
   Search swaps to lighter glass, phone goes dark on white body. */
body.home .see-tb.is-scrolled,
body.has-bleed-hero .see-tb.is-scrolled {
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
}
body.home .see-tb.is-scrolled .see-tb__search,
body.has-bleed-hero .see-tb.is-scrolled .see-tb__search {
  background: rgba(0, 0, 0, 0.05) !important;
  border-color: rgba(0, 0, 0, 0.10) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.home .see-tb.is-scrolled .see-tb__search .see-search-toggle,
body.has-bleed-hero .see-tb.is-scrolled .see-tb__search .see-search-toggle {
  color: #141414 !important;
}
body.home .see-tb.is-scrolled .see-tb__search.is-open,
body.has-bleed-hero .see-tb.is-scrolled .see-tb__search.is-open {
  background: #ffffff !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10) !important;
}
body.home .see-tb.is-scrolled .see-tb__phone a,
body.has-bleed-hero .see-tb.is-scrolled .see-tb__phone a {
  color: #141414 !important;
  background: rgba(255,255,255,0.78) !important;
  border-color: rgba(0,0,0,0.10) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Mobile topbar: ALWAYS transparent (matches desktop behavior) */
body.home .see-mbar,
body.has-bleed-hero .see-mbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
}
body.home.admin-bar .see-mbar,
body.has-bleed-hero.admin-bar .see-mbar { top: 46px; }
body.home .see-mbar .see-btn,
body.has-bleed-hero .see-mbar .see-btn,
body.home .see-mbar__actions a,
body.has-bleed-hero .see-mbar__actions a {
  color: #fff;
  border-color: rgba(255,255,255,.35) !important;
  background: rgba(0,0,0,.22) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body.home .see-mbar__logo,
body.has-bleed-hero .see-mbar__logo {
  background: transparent;
  padding: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}
body.home .see-mbar__logo span,
body.has-bleed-hero .see-mbar__logo span { color: #0f0f0f !important; }
body.home .see-mbar.is-scrolled .see-btn,
body.has-bleed-hero .see-mbar.is-scrolled .see-btn,
body.home .see-mbar.is-scrolled .see-mbar__actions a,
body.has-bleed-hero .see-mbar.is-scrolled .see-mbar__actions a {
  color: #141414;
  background: rgba(255,255,255,0.78) !important;
  border-color: rgba(0,0,0,0.10) !important;
}
/* Restore search bar once header goes solid */
body.home .see-tb.is-scrolled .see-tb__search,
body.has-bleed-hero .see-tb.is-scrolled .see-tb__search { display: block; }
body.home .see-tb.is-scrolled .see-tb__search input,
body.has-bleed-hero .see-tb.is-scrolled .see-tb__search input {
  background: #f0f0f0 !important;
  border-color: rgba(0,0,0,.15) !important;
  color: #141414 !important;
}
body.home .see-tb.is-scrolled .see-tb__search input::placeholder,
body.has-bleed-hero .see-tb.is-scrolled .see-tb__search input::placeholder { color: #999 !important; }
body.home .see-tb.is-scrolled .see-tb__search svg,
body.has-bleed-hero .see-tb.is-scrolled .see-tb__search svg { color: inherit; opacity: .45; }
body.home .see-tb.is-scrolled .see-tb__phone a,
body.has-bleed-hero .see-tb.is-scrolled .see-tb__phone a { color: #141414 !important; border-color: rgba(0,0,0,.12) !important; }

body.home .see-nav-wrap.is-scrolled .see-nav__surface,
body.has-bleed-hero .see-nav-wrap.is-scrolled .see-nav__surface {
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 10px 32px rgba(0, 0, 0, 0.10) !important;
}

/* Mobile topbar: also goes solid white when scrolled past hero */
body.home .see-mbar.is-scrolled,
body.has-bleed-hero .see-mbar.is-scrolled {
  background: #fff !important;
  border-bottom: 1px solid rgba(0,0,0,.08) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

/* Menu items — distributed evenly across the wide pill */
.see-nav__menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  flex: 1;
  justify-content: space-around;
}
.see-nav__menu > li {
  list-style: none;
  position: static;
}

.see-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  color: #0f0f0f;
  padding: 10px 18px;
  border-radius: 999px;
  font: 600 13.5px/1 -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Text", system-ui, sans-serif;
  letter-spacing: .005em;
  white-space: nowrap;
  position: relative;
  transition: color .2s ease, background .2s ease;
}
.see-nav__link:hover,
.see-nav__menu > li:hover > .see-nav__link {
  background: rgba(0, 0, 0, 0.06);
  color: #0a0a0a;
}
/* Subtle active-dot indicator for current page (modern Linear/Vercel style) */
.see-nav__menu > li.current-menu-item > .see-nav__link::after,
.see-nav__menu > li.current_page_item > .see-nav__link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--see-red, #CC1B1B);
}

/* Arrow icon inside link */
.see-nav__link svg { transition: transform .2s; }
.see-nav__menu > li:hover > .see-nav__link svg { transform: rotate(180deg); }

/* (CTA removed from pill nav — lives in topbar only) */


/* ─── Full-width dropdown ─────────────────────────────────────────────── */

.see-nav__dd-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  transform: translateY(8px);
}

.see-nav__dd {
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 3px solid var(--see-red, #CC1B1B);
  box-shadow: 0 20px 48px rgba(0,0,0,.16);
  padding: 24px var(--pad) 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 60;
  min-height: 200px;
}
.see-nav__menu > li:hover .see-nav__dd {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.see-nav__dd-inner {
  max-width: var(--max);
  margin: 0 auto;
}

/* Category label inside dropdown */
.see-nav__dd-label {
  font: 800 10px/1 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--see-red, #CC1B1B);
  margin-bottom: 14px;
}

/* Grid of product tiles */
.see-nav__sub {
  display: grid;
  gap: 18px 22px;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  align-items: stretch;
}

/* Individual product tile */
.see-nav__item { position: relative; }

.see-nav__item > a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  transition: transform .18s ease, background .15s ease, box-shadow .15s ease;
  border: 1px solid transparent;
}
.see-nav__item > a:hover {
  transform: translateY(-2px);
  background: rgba(204,27,27,.04);
  border-color: rgba(204,27,27,.12);
  box-shadow: 0 6px 18px rgba(0,0,0,.10);
}

.see-nav__thumb {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  object-fit: cover;
  background: #f4f4f2;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  border: 1px solid var(--ring);
}

.see-nav__title-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.see-nav__title-row span { line-height: 1.3; }

/* Deep (level 3) flyout */
.see-nav__deep {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 240px;
  max-width: 320px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--ring);
  border-left: 3px solid var(--see-red, #CC1B1B);
  box-shadow: 0 16px 40px rgba(0,0,0,.16);
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translate(10px, 4px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
  z-index: 75;
}
.see-nav__item:hover .see-nav__deep {
  opacity: 1;
  visibility: visible;
  transform: translate(10px, 0);
}

.see-nav__deep a {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px 8px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  font-size: 13px;
  font-weight: 600;
  transition: background .14s;
}
.see-nav__deep a:hover { background: rgba(204,27,27,.06); color: var(--see-red, #CC1B1B); }

.see-nav__deep .see-nav__thumb {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .see-nav-wrap { display: none; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE TOP BAR
═══════════════════════════════════════════════════════════════════════════ */

.see-mbar {
  position: sticky;
  top: 0;
  z-index: 95;
  background: #fff;
  border-bottom: 1px solid var(--ring);
  display: none;
}

.see-mbar__in {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 10px var(--pad);
}

.see-mbar .see-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--ring);
  background: transparent;
  cursor: pointer;
  color: #141414;
  padding: 0;
  overflow: hidden;
}
.see-mbar .see-btn:hover { background: rgba(17,17,17,.05); }

/* ── Mobile menu icon: animated 3-bar default ── */
.see-menu-anim {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 22px;
  align-items: flex-start;
}
.see-menu-anim span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform-origin: left center;
  animation: see-menu-pulse 1.8s ease-in-out infinite;
}
.see-menu-anim span:nth-child(1) { width: 22px; animation-delay: 0s; }
.see-menu-anim span:nth-child(2) { width: 16px; animation-delay: 0.2s; }
.see-menu-anim span:nth-child(3) { width: 20px; animation-delay: 0.4s; }
@keyframes see-menu-pulse {
  0%, 100% { transform: scaleX(1);   opacity: 1; }
  50%      { transform: scaleX(0.55); opacity: 0.55; }
}

/* ── Mobile menu icon: custom GIF (uploaded via Customizer) ── */
.see-menu-gif {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.see-mbar__logo { justify-self: center; }
.see-mbar__logo img { max-height: 36px; height: auto; width: auto; display: block; }

.see-mbar__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.see-mbar__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--ring);
  color: #141414;
  text-decoration: none;
}

/* Quote CTA pill on mobile bar */
.see-mbar__quote {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--see-red, #CC1B1B);
  color: #fff !important;
  font: 700 12px/1 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  border: none !important;
}

@media (max-width: 1024px) { .see-mbar { display: block; } }


/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE OVERLAY DRAWER
   Same slide-in pattern as Sweet Heaven
═══════════════════════════════════════════════════════════════════════════ */

.see-drawer {
  position: fixed;
  inset: 0;
  z-index: 2147483600;
  pointer-events: none;
}

.see-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}

.see-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: clamp(300px, 86vw, 420px);
  background: #fff;
  border-right: 1px solid var(--ring);
  box-shadow: 20px 0 40px rgba(0,0,0,.18);
  transform: translateX(-102%);
  transition: transform .28s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.see-drawer.is-open .see-backdrop {
  opacity: 1;
  pointer-events: auto;
}
.see-drawer.is-open {
  pointer-events: auto;
}
.see-drawer.is-open .see-panel {
  transform: translateX(0);
}

/* Drawer header band */
.see-dr__head {
  background: #1C1C1C;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.see-dr__head img { max-height: 34px; }
.see-dr__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

/* Mobile drawer search */
.see-dr__search {
  padding: 10px 14px;
  border-bottom: 1px solid var(--ring);
  flex-shrink: 0;
  position: relative;
}
.see-dr__search form { position: relative; }
.see-dr__search input {
  width: 100%;
  border: 1px solid var(--ring);
  border-radius: 20px;
  padding: 9px 14px 9px 36px;
  font: 500 14px/1.2 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #f9f9f9;
}
.see-dr__search input:focus {
  outline: none;
  border-color: var(--see-red, #CC1B1B);
  background: #fff;
}
.see-dr__search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .4;
  pointer-events: none;
}

/* Quick action strip */
.see-dr__quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--ring);
  flex-shrink: 0;
}
.see-dr__quick a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--ring);
  font: 700 13px/1.1 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #141414;
  text-decoration: none;
}
.see-dr__quick a:first-child {
  background: var(--see-red, #CC1B1B);
  color: #fff;
  border-color: transparent;
}

/* Menu list */
.see-dr__body {
  overflow: auto;
  flex: 1;
  padding: 8px 0 24px;
  -webkit-overflow-scrolling: touch;
}

.see-mlist, .see-mlist ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.see-mlist > li { position: relative; }

.see-mlist input.sub-toggle {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.see-mlist > li > .see-mhead {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 52px 14px 18px;
  min-height: 52px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.see-mlist > li > .see-mhead > a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #141414;
  font: 700 15px/1.1 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.see-mlist > li > .see-mhead > a:hover { color: var(--see-red, #CC1B1B); }

.see-mtoggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--ring);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  cursor: pointer;
  z-index: 1;
}
.see-mtoggle svg { transition: transform .2s ease; }
.see-mlist input.sub-toggle:checked + .see-mhead .see-mtoggle svg { transform: rotate(90deg); }

/* Sub-menu (L2) */
.see-msub {
  display: none;
  background: #fafafa;
}
.see-mlist input.sub-toggle:checked ~ .see-msub { display: block; }

.see-msub > li > a {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 14px 10px 22px;
  min-height: 66px;
  text-decoration: none;
  color: #141414;
  font: 600 14px/1.2 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.see-msub > li > a:hover { background: rgba(204,27,27,.04); color: var(--see-red, #CC1B1B); }

.see-msub .see-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--ring);
  background: #fff;
}

/* Sub-sub-menu (L3) */
.see-msub2 {
  display: none;
  padding: 4px 0 4px 12px;
  background: #f5f5f5;
}
.see-mlist input.sub-toggle:checked ~ .see-msub2 { display: block; }
.see-msub2 > li > a {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 8px 24px;
  text-decoration: none;
  color: #333;
  font: 500 13px/1.2 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.see-msub2 > li > a:hover { color: var(--see-red, #CC1B1B); }
.see-msub2 .see-thumb { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; border: 1px solid var(--ring); background: #fff; }

/* Sticky quote button at drawer bottom */
.see-dr__footer {
  flex-shrink: 0;
  padding: 12px 14px;
  border-top: 1px solid var(--ring);
  background: #fff;
}
.see-dr__footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  background: var(--see-red, #CC1B1B);
  color: #fff;
  border-radius: 12px;
  font: 700 14px/1.1 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  text-decoration: none;
}

/* ─── Scroll-reveal utility ─────────────────────────────────────────────── */
.see-rv {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
.see-rv.see-in { opacity: 1; transform: translateY(0); }
