/* ============================================
   ZALI INDUSTRIES — SHARED DESIGN SYSTEM
   ============================================ */

:root {
  --bg: #fafaf7;
  --bg-soft: #f0efea;
  --bg-line: #e3e1d9;
  --ink: #0a0a0a;
  --ink-soft: #2a2a2a;
  --ink-mute: #6a6a6a;
  --accent: #d6411a;
  --accent-deep: #a8311a;
  --white: #ffffff;
  --pure-black: #000000;

  --ocean: #0a3340;
  --ocean-mid: #14536b;
  --ocean-soft: #d8e6e9;
  --sand: #e6d9bf;

  --green-wa: #25d366;
  --green-wa-deep: #1eba59;

  --display: 'Fraunces', Georgia, serif;
  --body:
    'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  --mono: 'JetBrains Mono', monospace;

  --container: 1320px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--accent);
  color: var(--bg);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
}

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 720px) {
  .container {
    padding: 0 20px;
  }
}

/* TRIANGLE MOTIF (echoes the geometric A in the ZALI logo) */
.tri {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid var(--accent);
  vertical-align: middle;
  margin-right: 10px;
  flex-shrink: 0;
}
.tri-sm {
  border-left-width: 4px;
  border-right-width: 4px;
  border-bottom-width: 6px;
  margin-right: 8px;
}
.tri-lg {
  border-left-width: 7px;
  border-right-width: 7px;
  border-bottom-width: 11px;
  margin-right: 12px;
}
.tri-white {
  border-bottom-color: var(--bg);
}
.tri-ink {
  border-bottom-color: var(--ink);
}
.tri-sand {
  border-bottom-color: var(--sand);
}

/* ============ TOP TICKER ============ */
.topbar {
  background: var(--ink);
  color: var(--bg);
  padding: 9px 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.topbar-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 50s linear infinite;
  align-items: center;
}
.topbar-track span {
  flex-shrink: 0;
  opacity: 0.75;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.topbar-track .accent-text {
  color: var(--accent);
  opacity: 1;
  font-weight: 600;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============ SKELETON LOADER ============ */
@keyframes shimmer {
  0% {
    background-position: -800px 0;
  }
  100% {
    background-position: 800px 0;
  }
}
.skeleton-card {
  background: var(--white);
  border: 1px solid var(--bg-line);
  overflow: hidden;
  pointer-events: none;
}
.skeleton-img {
  aspect-ratio: 4/5;
  background: linear-gradient(90deg, #ededea 25%, #e3e1d9 50%, #ededea 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s infinite linear;
}
.skeleton-info {
  padding: 10px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.skeleton-line {
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ededea 25%, #e3e1d9 50%, #ededea 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s infinite linear;
}
.skeleton-line.sk-wide {
  width: 80%;
}
.skeleton-line.sk-medium {
  width: 55%;
  animation-delay: 0.1s;
}
.skeleton-line.sk-narrow {
  width: 35%;
  animation-delay: 0.2s;
}

/* ============ NAV ============ */
nav.main {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.94);
  border-bottom: 1px solid var(--bg-line);
  backdrop-filter: blur(20px);
}
.nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 60px;
  gap: 28px;
}
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-right {
  justify-content: flex-end;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}
.nav-logo img {
  height: 30px;
  width: auto;
  display: block;
}
.nav-logo .small {
  display: none;
}
@media (max-width: 540px) {
  .nav-logo img {
    height: 22px;
  }
}
.nav-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 11px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s;
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}
.nav-burger span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition:
    transform 0.25s,
    opacity 0.2s;
  display: block;
}
.nav-burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 980px) {
  .nav-left {
    display: none;
  }
  .nav-row {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }
  .nav-right {
    gap: 8px;
  }
  .nav-burger {
    display: inline-flex;
  }
  .nav-link.hide-md {
    display: none;
  }
}
@media (max-width: 540px) {
  .nav-cta .desktop-only {
    display: none;
  }
  .nav-cta {
    padding: 11px 14px;
    font-size: 10px;
  }
  nav.main {
    height: 64px;
  }
  .nav-row {
    height: 64px;
  }
}

/* MOBILE DRAWER */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--bg);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--bg-line);
  overflow-y: auto;
  padding-top: 24px;
}
.mobile-drawer.open {
  transform: translateX(0);
}
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px 24px;
  border-bottom: 1px solid var(--bg-line);
}
.mobile-drawer-header .logo {
  display: inline-flex;
  align-items: center;
}
.mobile-drawer-header .logo img {
  height: 26px;
  width: auto;
  display: block;
}
.mobile-drawer-close {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ink);
}
.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  flex-grow: 1;
}
.mobile-drawer-nav a {
  padding: 16px 24px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--bg-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.mobile-drawer-nav a:hover,
.mobile-drawer-nav a.active {
  color: var(--accent);
  background: var(--bg-soft);
}
.mobile-drawer-nav a .arrow {
  font-family: var(--body);
  font-size: 18px;
  opacity: 0.4;
}
.mobile-drawer-foot {
  padding: 24px;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-drawer-foot .btn {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 12px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--body);
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--ink);
  border-color: var(--ink);
}
.btn-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn-light:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-sm {
  padding: 12px 20px;
  font-size: 11px;
}
.btn-lg {
  padding: 22px 36px;
  font-size: 13px;
}
.btn .arrow {
  transition: transform 0.25s;
}
.btn:hover .arrow {
  transform: translateX(4px);
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ============ SECTIONS ============ */
.sec {
  padding: 36px 0;
  border-bottom: 1px solid var(--bg-line);
  position: relative;
}
.sec-tight {
  padding: 30px 0;
}
.sec-soft {
  background: var(--bg-soft);
}
.sec-dark {
  background: var(--ink);
  color: var(--bg);
  border-bottom: none;
}
.sec-dark .sec-h2 {
  color: var(--bg);
}
.sec-dark .sec-h2 em {
  color: var(--accent);
}
.sec-dark .sec-eyebrow {
  color: rgba(250, 250, 247, 0.6);
}
.sec-dark .sec-desc {
  color: rgba(250, 250, 247, 0.7);
}

@media (max-width: 720px) {
  .sec {
    padding: 64px 0;
  }
  .sec-tight {
    padding: 56px 0;
  }
}

.sec-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 30px;
}
.sec-head .left {
  max-width: 760px;
}
.sec-head-center {
  grid-template-columns: 1fr;
  text-align: center;
}
.sec-head-center .left {
  max-width: 720px;
  margin: 0 auto;
}
.sec-head-center .sec-eyebrow {
  justify-content: center;
}
.sec-head-center .sec-desc {
  margin-left: auto;
  margin-right: auto;
}

.sec-eyebrow {
  color: var(--ink-mute);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.sec-h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(26px, 3.6vw, 48px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.sec-h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.sec-h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.sec-desc {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 22px;
  max-width: 540px;
  line-height: 1.55;
}
.sec-link {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.sec-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
/* Removed max-width: 720px override for .sec-head to keep links on the right */

/* ============ PAGE HERO (smaller than home hero) ============ */
.page-hero {
  padding: 28px 0 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--bg-line);
  position: relative;
  overflow: hidden;
}
.page-hero-tight {
  padding: 22px 0 16px;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
}
.page-hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-top: 16px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.page-hero p.lead {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 560px;
  margin-top: 18px;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.breadcrumb a {
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--accent);
}
.breadcrumb .sep {
  opacity: 0.4;
}
@media (max-width: 980px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============ TRUST STRIP ============ */
.trust {
  background: var(--ink);
  color: var(--bg);
  padding: 30px 0;
  overflow: hidden;
}
.trust-row {
  display: flex;
  gap: 80px;
  align-items: center;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
}
.trust-row .item {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  flex-shrink: 0;
  opacity: 0.92;
  letter-spacing: -0.01em;
}
.trust-row .item em {
  font-style: italic;
  color: var(--accent);
}
.trust-row .sep {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid var(--accent);
  flex-shrink: 0;
}

/* ============ CARDS ============ */
.card-base {
  background: var(--white);
  border: 1px solid var(--bg-line);
  transition: all 0.3s;
}
.card-base:hover {
  border-color: var(--ink);
}

/* PRODUCT CARD */
.prod {
  background: var(--white);
  border: 1px solid var(--bg-line);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}
.prod:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
}
.prod-img {
  aspect-ratio: 1/1;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.prod-img-inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--bg-soft), #e3e0d4);
}
.prod-img-inner svg {
  width: 50%;
  height: 50%;
  opacity: 0.35;
  color: var(--ink);
}
.prod-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 9px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.prod-tag.hot {
  background: var(--accent);
}
.prod-tag.hawaii {
  background: var(--ocean);
}
.prod-tag.women {
  background: var(--accent-deep);
}
.prod-info {
  padding: 14px 16px 16px;
}
.prod-cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.prod-name {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.prod-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--bg-line);
}
.prod-moq {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.prod-moq strong {
  color: var(--ink);
  font-weight: 600;
}
.prod-cta {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============ FORMS ============ */
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.field label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field label .req {
  color: var(--accent);
}
.field input,
.field textarea,
.field select {
  font-family: var(--body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--bg-line);
  background: var(--white);
  color: var(--ink);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(214, 65, 26, 0.12);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}
.field-row .field {
  margin-bottom: 0;
}
@media (max-width: 540px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}
.field-help {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 4px;
}
.field-error {
  color: var(--accent);
  font-size: 12px;
}

/* file input */
.file-drop {
  border: 1.5px dashed var(--bg-line);
  background: var(--bg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}
.file-drop:hover {
  border-color: var(--ink);
  background: var(--bg-soft);
}
.file-drop-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
}
.file-drop-text {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.file-drop-text strong {
  color: var(--ink);
}
.file-drop-help {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* radio cards */
.radio-card {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--bg-line);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 10px;
}
.radio-card:hover {
  border-color: var(--ink);
}
.radio-card input {
  display: none;
}
.radio-card.checked,
.radio-card:has(input:checked) {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 1px var(--accent) inset;
}
.radio-card-title {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--ink);
}
.radio-card-desc {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.4;
}

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: var(--bg);
  padding: 90px 0 36px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 36px;
}
.foot-brand .logo {
  margin-bottom: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.foot-brand .logo img {
  height: 42px;
  width: auto;
  display: block;
  filter: invert(1) brightness(2); /* Invert dark logo for dark bg */
}
.foot-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.5);
  margin-bottom: 24px;
}
.foot-desc {
  color: rgba(250, 250, 247, 0.75);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 24px;
}
.foot-social {
  display: flex;
  gap: 10px;
}
.foot-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(250, 250, 247, 0.2);
  display: grid;
  place-items: center;
  transition: all 0.25s;
  color: var(--bg);
}
.foot-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.foot-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.5);
  margin-bottom: 22px;
}
.foot-col ul {
  list-style: none;
}
.foot-col li {
  margin-bottom: 12px;
}
.foot-col a {
  color: rgba(250, 250, 247, 0.85);
  font-size: 14px;
  transition: color 0.2s;
}
.foot-col a:hover {
  color: var(--accent);
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.5);
}
.foot-bottom a {
  color: rgba(250, 250, 247, 0.7);
  margin-left: 16px;
  transition: color 0.2s;
}
.foot-bottom a:hover {
  color: var(--accent);
}
@media (max-width: 980px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 540px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .foot-bottom {
    justify-content: flex-start;
  }
  .foot-bottom > div:last-child a {
    margin-left: 0;
    margin-right: 16px;
  }
}

/* ============ STICKY WHATSAPP ============ */
.wa-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: var(--green-wa);
  color: white;
  padding: 14px 22px 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.wa-bubble:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  background: var(--green-wa-deep);
}
.wa-bubble svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.wa-text {
  white-space: nowrap;
}
@media (max-width: 540px) {
  .wa-bubble {
    padding: 14px;
    bottom: 18px;
    right: 18px;
  }
  .wa-text {
    display: none;
  }
}

/* ============ PLACEHOLDER MARKERS ============ */
.placeholder-banner {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  background: var(--accent);
  color: var(--white);
  padding: 5px 10px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.placeholder-pill {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 9px;
  margin-bottom: 14px;
  border: 1px dashed var(--accent);
}

/* ============ ACCORDION (FAQ) ============ */
.acc-group {
  display: grid;
  gap: 0;
}
.acc {
  border-bottom: 1px solid var(--bg-line);
}
.acc-trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.acc-trigger:hover {
  color: var(--accent);
}
.acc-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: var(--body);
  font-weight: 400;
  font-size: 18px;
  transition: all 0.25s;
  margin-top: 4px;
}
.acc.open .acc-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}
.acc-content {
  display: none;
  padding-bottom: 28px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 760px;
}
.acc.open .acc-content {
  display: block;
}
.acc-content p {
  margin-bottom: 12px;
}
.acc-content p:last-child {
  margin-bottom: 0;
}
.acc-content ul {
  padding-left: 20px;
  margin: 12px 0;
}
.acc-content li {
  margin-bottom: 6px;
}

/* ============ TABLES ============ */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--bg-line);
  background: var(--white);
}
.table-z {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.table-z th,
.table-z td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--bg-line);
}
.table-z th {
  background: var(--bg-soft);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.table-z tr:last-child td {
  border-bottom: none;
}
.table-z tbody tr:hover {
  background: var(--bg-soft);
}

/* ============ TAGS / CHIPS ============ */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--bg-line);
  background: var(--white);
  color: var(--ink-soft);
  transition: all 0.2s;
  cursor: pointer;
}
.chip:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.chip.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.chip-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ============ UTILITIES ============ */
.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.split-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.split-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .split-2,
  .split-3,
  .split-4 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .split-2.keep,
  .split-3.keep,
  .split-4.keep {
    grid-template-columns: repeat(2, 1fr);
  }
}
.muted {
  color: var(--ink-mute);
}
.text-center {
  text-align: center;
}
.mt-32 {
  margin-top: 32px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mt-48 {
  margin-top: 48px;
}
.mb-48 {
  margin-bottom: 48px;
}

/* ============================================
   MOBILE POLISH PASS
   ============================================ */

@media (max-width: 720px) {
  /* Topbar quieter on mobile */
  .topbar {
    padding: 8px 0;
    font-size: 9px;
    letter-spacing: 0.1em;
  }
  .topbar-track {
    gap: 36px;
    animation-duration: 10s;
  }

  /* Tighter section padding */
  .sec {
    padding: 56px 0;
  }
  .sec-tight {
    padding: 44px 0;
  }

  /* Section heads stack better */
  .sec-head {
    gap: 18px;
    margin-bottom: 36px;
  }
  .sec-link {
    font-size: 10px;
  }

  /* Page hero compresses */
  .page-hero {
    padding: 40px 0 32px;
  }
  .page-hero h1 {
    margin-top: 16px;
  }
  .page-hero p.lead {
    font-size: 16px;
    margin-top: 20px;
  }

  /* Buttons grow touch targets */
  .btn {
    padding: 16px 22px;
    min-height: 48px;
  }
  .btn-sm {
    padding: 12px 18px;
    min-height: 42px;
    font-size: 11px;
  }
  .btn-lg {
    padding: 20px 28px;
  }

  /* Chips become more tappable */
  .chip,
  .filter-chip {
    padding: 10px 14px;
    min-height: 40px;
    font-size: 11px;
  }

  /* Forms */
  .field input,
  .field textarea,
  .field select {
    padding: 16px 14px;
    font-size: 16px;
    min-height: 50px;
  }
  /* font-size 16px prevents iOS zoom-on-focus */
  .field label {
    font-size: 11px;
  }
  .form-card-main,
  .sp-form {
    padding: 28px 22px;
  }
  .form-section-title {
    font-size: 18px;
    flex-wrap: wrap;
  }
  .submit-row {
    flex-direction: column;
    align-items: stretch;
  }
  .submit-row .btn {
    width: 100%;
    justify-content: center;
  }
  .submit-row .submit-note,
  .submit-row > span {
    text-align: center;
  }

  /* Radio cards taller */
  .radio-card {
    padding: 16px 18px;
    min-height: 56px;
  }

  /* File drop tighter */
  .file-drop {
    padding: 24px 20px;
  }

  /* Trust ticker faster on mobile */
  .trust-row {
    gap: 50px;
    animation-duration: 28s;
  }
  .trust-row .item {
    font-size: 18px;
  }

  /* Footer compresses */
  footer {
    padding: 60px 0 28px;
  }
  .foot-grid {
    padding-bottom: 40px;
    gap: 32px;
  }
  .foot-brand .logo img {
    height: 32px;
  }
  .foot-tag {
    font-size: 9px;
  }
  .foot-desc {
    font-size: 13px;
    max-width: none;
  }
  .foot-col h5 {
    margin-bottom: 14px;
  }
  .foot-col li {
    margin-bottom: 10px;
  }
  .foot-bottom {
    font-size: 10px;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .foot-bottom > div:last-child a {
    margin-left: 0;
    margin-right: 14px;
  }

  /* WhatsApp bubble lower so it doesn't overlap mobile browser UI */
  .wa-bubble {
    bottom: 16px;
    right: 16px;
    padding: 14px;
  }

  /* Sec dark CTAs at bottom of pages stack properly */
  .sec-dark > .container > div[style*='grid-template-columns'] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .sec-dark
    > .container
    > div[style*='grid-template-columns']
    > div[style*='display: flex'] {
    width: 100%;
  }
  .sec-dark
    > .container
    > div[style*='grid-template-columns']
    > div[style*='display: flex']
    .btn {
    flex-grow: 1;
  }

  /* Trust strip on Hawaii */
  .h-clients {
    padding: 56px 0;
  }
  .h-cta {
    padding: 70px 0;
  }
  .h-cta h2 {
    font-size: clamp(32px, 9vw, 56px);
  }
  .h-cta p {
    font-size: 15px;
  }

  /* Pricing block on sample pack */
  .pricing {
    padding: 36px 24px;
  }
  .pricing-num {
    font-size: clamp(56px, 16vw, 88px);
  }
  .pricing-points {
    gap: 16px;
  }
  .pricing-line {
    margin: 24px auto;
  }

  /* Sample CTA on home */
  .sample-cta {
    padding: 70px 0;
  }
  .sf {
    padding: 16px 18px;
    gap: 12px;
  }

  /* About page tweaks */
  .about-hero {
    padding: 50px 0 40px;
  }
  .founder-quote {
    padding: 22px 24px;
    font-size: 18px;
    margin: 24px 0;
  }
  .founder-text p {
    font-size: 15px;
  }
  .sialkot-stat .num {
    font-size: 30px;
  }

  /* Product detail */
  .pdp {
    padding: 16px 0 60px;
    gap: 32px;
  }
  .pdp h1 {
    margin-bottom: 12px;
  }
  .pdp-tagline {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .spec-grid {
    padding: 18px;
    gap: 12px;
  }
  .spec-item .val {
    font-size: 13px;
  }
  .panel {
    padding: 22px 20px;
  }
  .panel-title {
    font-size: 20px;
  }
  .price {
    font-size: 24px;
  }
  .pdp-tabs {
    margin-top: 56px;
    padding-top: 40px;
  }
  .tab-row {
    gap: 16px;
    flex-wrap: wrap;
  }
  .tab-btn {
    font-size: 10px;
    padding: 12px 0;
  }
  .tab-content {
    font-size: 14px;
  }
  .tab-content h4 {
    font-size: 18px;
  }

  /* Size grid stays 6-col but each cell smaller */
  .size-grid {
    gap: 4px;
  }
  .size-btn {
    padding: 12px 0;
    font-size: 12px;
    min-height: 42px;
  }

  /* Products page filter sidebar when toggled open */
  .filter-sidebar.open {
    padding: 22px 18px;
  }
  .filter-block {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }
  .filter-block h4 {
    font-size: 11px;
    margin-bottom: 12px;
  }
  .grid-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 14px;
  }
  .grid-sort {
    width: 100%;
  }
  .grid-sort select {
    flex-grow: 1;
    padding: 10px 12px;
    min-height: 42px;
  }
  .cat-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .cat-header h3 {
    font-size: 22px;
  }

  /* Hawaii page tweaks */
  .h-hero {
    padding: 50px 0 40px;
  }
  .h-hero h1 {
    margin-top: 18px;
  }
  .h-story {
    padding: 56px 0;
  }
  .h-story-grid {
    gap: 32px;
  }
  .h-story p {
    font-size: 15px;
  }
  .form-card {
    padding: 24px 22px;
  }
  .clients-grid {
    gap: 12px;
  }
  .client {
    padding: 18px;
    aspect-ratio: 5/4;
  }
  .client-name {
    font-size: 19px;
  }

  /* FAQ accordion mobile */
  .acc-trigger {
    font-size: 17px;
    padding: 18px 0;
    gap: 16px;
  }
  .acc-icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
  .acc-content {
    padding-bottom: 22px;
    font-size: 14px;
  }
  .faq-cat-head h2 {
    font-size: clamp(24px, 6vw, 32px);
    flex-wrap: wrap;
    gap: 10px;
  }
  .faq-cat-head h2 .num {
    font-size: 11px;
    padding: 3px 8px;
  }
  .faq-layout {
    gap: 16px;
    padding: 20px 0 60px;
  }
  .faq-cat {
    margin-bottom: 48px;
  }

  /* Contact page paths grid stack */
  .path-card {
    padding: 24px 22px;
  }
  .path-card h3 {
    font-size: 22px;
  }
  .form-grid {
    gap: 28px;
  }
  .form-section {
    padding: 60px 0;
  }
  .form-helper-list {
    padding: 20px;
    margin-top: 24px;
  }
  .office-grid {
    gap: 28px;
  }
  .office-info h3 {
    font-size: 26px;
  }
  .office-details {
    gap: 10px;
    margin-top: 24px;
  }
  .office-item {
    padding: 16px 18px;
  }

  /* Process page timeline */
  .ts {
    gap: 14px;
    margin-bottom: 32px;
  }
  .ts-content {
    padding: 20px 18px;
  }
  .ts-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .ts-content > p {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .ts-meta-grid {
    gap: 8px;
    padding: 14px 16px;
  }

  /* Print methods page */
  .pm {
    padding: 50px 0;
  }
  .pm-grid {
    gap: 32px;
  }
  .pm h2 {
    font-size: clamp(28px, 7vw, 42px);
  }
  .pm-lead {
    font-size: 15px;
  }
  .pm-stats {
    gap: 10px;
  }
  .pm-stat {
    padding: 14px 16px;
  }
  .pm-stat-value {
    font-size: 18px;
  }
  .pm-list li {
    padding: 10px 0;
    font-size: 13px;
  }
  .pm-visual-overlay {
    padding: 22px;
  }
  .pm-visual-caption {
    font-size: 24px;
  }

  /* Fabrics page */
  .fab-cat {
    margin-bottom: 56px;
  }
  .fab-cat-head h3 {
    font-size: 24px;
  }
  .fab-cat-head p {
    font-size: 13px;
  }
  .lib-info {
    padding: 18px 20px 22px;
  }
  .lib-name {
    font-size: 19px;
  }

  /* Sample pack page hero */
  .sp-hero {
    padding: 56px 0 50px;
  }
  .sp-hero h1 {
    margin: 18px 0 20px;
  }
  .sp-hero p.lead {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .sp-hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .inc-card {
    padding: 26px 22px 24px;
  }
  .inc-card h4 {
    font-size: 22px;
  }
  .sp-form-title {
    font-size: 24px;
  }
}

/* ULTRA-NARROW (small Android, iPhone SE) */
@media (max-width: 380px) {
  .container {
    padding: 0 16px;
  }
  .hero h1,
  .page-hero h1,
  .h-hero h1,
  .sp-hero h1 {
    font-size: clamp(38px, 11vw, 60px);
  }
  .sec-h2 {
    font-size: clamp(28px, 9vw, 44px);
  }
  .nav-cta {
    padding: 10px 12px;
    font-size: 9px;
    letter-spacing: 0.06em;
  }
  .topbar {
    font-size: 8px;
    padding: 7px 0;
  }
  .topbar-track {
    gap: 28px;
    animation-duration: 10s;
  }
  .topbar-track span {
    font-size: 8px;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .form-row-3 {
    grid-template-columns: 1fr;
  }
  .size-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sample-features .sf {
    flex-direction: column;
    gap: 8px;
  }
  .pricing-num {
    font-size: 64px;
  }
  .pricing-num .small {
    display: block;
    font-size: 14px;
    margin-top: 6px;
  }
}

/* ============================================
   MEGA MENU (DESKTOP)
   ============================================ */

.nav-mega-wrap {
  position: static;
}
.nav-mega-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
}
.nav-mega-link .caret {
  font-size: 8px;
  transition: transform 0.2s;
  opacity: 0.6;
}
.nav-mega-wrap:hover .nav-mega-link .caret {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--accent);
}

.nav-mega {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--ink);
  z-index: 99;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
}
.nav-mega.open {
  display: block;
}

.mega-grid {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 360px;
  max-width: var(--container);
  margin: 0 auto;
}

.mega-sidebar {
  background: rgba(255, 255, 255, 0.025);
  display: flex;
  flex-direction: column;
  padding: 18px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.mega-cat-link {
  padding: 10px 22px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.65);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
  border-left: 2px solid transparent;
  background: transparent;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  width: 100%;
  text-align: left;
}
.mega-cat-link .caret-r {
  opacity: 0.4;
  font-size: 10px;
}
.mega-cat-link:hover,
.mega-cat-link.active {
  color: var(--bg);
  background: rgba(255, 255, 255, 0.04);
  border-left-color: var(--accent);
}
.mega-cat-link:hover .caret-r,
.mega-cat-link.active .caret-r {
  opacity: 1;
  color: var(--accent);
}

.mega-panels {
  padding: 20px 28px 24px;
  position: relative;
  color: var(--bg);
}
.mega-panel {
  display: none;
}
.mega-panel.active {
  display: block;
}
.mega-panel-head {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mega-panel-head h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 4px;
}
.mega-panel-head h3 em {
  color: var(--accent);
  font-style: italic;
}
.mega-panel-head p {
  color: rgba(250, 250, 247, 0.55);
  font-size: 11px;
  letter-spacing: 0.01em;
}

/* CELL GRID — each subcategory is its own bordered cell */
.mega-cell-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}
.mega-cell {
  padding: 13px 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.015);
}
.mega-cell-empty {
  background: transparent;
}
.mega-sub-h {
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--bg);
  margin-bottom: 9px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(214, 65, 26, 0.35);
  position: relative;
  line-height: 1.15;
}
.mega-sub-h::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 20px;
  height: 1px;
  background: var(--accent);
}
.mega-prod {
  display: block;
  padding: 2.5px 0;
  font-size: 12px;
  color: rgba(250, 250, 247, 0.85);
  transition:
    color 0.15s,
    padding-left 0.15s;
  line-height: 1.3;
}
.mega-prod:hover {
  color: var(--accent);
  padding-left: 4px;
}

/* ============================================
   TEAM SPORTS — TWO-PANE LAYOUT (Option C)
   Sport list (left) + live preview pane (right)
   ============================================ */
.team-twopane {
  display: grid;
  grid-template-columns: 1fr 300px;
  min-height: 380px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.team-sport-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}
.team-sport-link {
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.015);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--body);
  border-top: 0;
  border-left: 0;
  text-align: left;
  transition: background 0.15s;
  color: inherit;
}
.team-sport-link:hover {
  background: rgba(214, 65, 26, 0.08);
}
.team-sport-link.active {
  background: rgba(214, 65, 26, 0.15);
}
.team-sport-link .ts-name {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  color: var(--bg);
  letter-spacing: -0.005em;
  line-height: 1.15;
}
.team-sport-link .ts-arr {
  font-size: 10px;
  color: rgba(250, 250, 247, 0.3);
  transition: color 0.15s;
}
.team-sport-link:hover .ts-arr,
.team-sport-link.active .ts-arr {
  color: var(--accent);
}

.team-preview-pane {
  background: linear-gradient(
    135deg,
    rgba(214, 65, 26, 0.06) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  border-left: 1px solid rgba(214, 65, 26, 0.2);
  padding: 20px 22px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.team-preview-panel {
  display: none;
  flex-direction: column;
  height: 100%;
}
.team-preview-panel.active {
  display: flex;
}
.ts-preview-header {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ts-preview-h4 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--bg);
  margin-bottom: 4px;
  line-height: 1;
  letter-spacing: -0.025em;
}
.ts-preview-desc {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.5);
}
.ts-products {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 16px;
  flex: 1;
  overflow-y: auto;
  max-height: 290px;
}
.ts-product {
  font-size: 12.5px;
  color: rgba(250, 250, 247, 0.85);
  padding: 3px 0;
  line-height: 1.3;
  transition:
    color 0.15s,
    padding-left 0.15s;
}
.ts-product:hover {
  color: var(--accent);
  padding-left: 4px;
}
.ts-preview-cta {
  margin-top: auto;
  padding: 11px 16px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  align-self: flex-start;
  transition: all 0.2s;
  border: 1px solid var(--bg);
}
.ts-preview-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

@media (max-width: 980px) {
  .nav-mega {
    display: none !important;
  }
}

/* ============================================
   MOBILE DRAWER — CATEGORY ACCORDIONS
   ============================================ */

.drawer-section {
  border-bottom: 1px solid var(--bg-line);
}
.drawer-section-head {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  min-height: 56px;
  transition:
    background 0.2s,
    color 0.2s;
}
.drawer-section-head:hover {
  background: var(--bg-soft);
}
.drawer-section.open .drawer-section-head {
  color: var(--accent);
}
.drawer-section-head .toggle {
  font-size: 22px;
  opacity: 0.4;
  transition:
    transform 0.25s,
    color 0.2s;
  font-weight: 300;
  font-family: var(--body);
}
.drawer-section.open .drawer-section-head .toggle {
  transform: rotate(45deg);
  color: var(--accent);
  opacity: 1;
}
.drawer-section-body {
  display: none;
  padding: 0 24px 16px;
}
.drawer-section.open .drawer-section-body {
  display: block;
}

.drawer-cat {
  border-left: 2px solid var(--bg-line);
  padding-left: 14px;
  margin-bottom: 4px;
}
.drawer-cat.open {
  border-left-color: var(--accent);
}
.drawer-cat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  min-height: 40px;
}
.drawer-cat.open .drawer-cat-head {
  color: var(--accent);
}
.drawer-cat-head .toggle-sm {
  font-size: 16px;
  opacity: 0.4;
  transition: transform 0.2s;
  font-weight: 300;
}
.drawer-cat.open .drawer-cat-head .toggle-sm {
  transform: rotate(45deg);
  color: var(--accent);
  opacity: 1;
}
.drawer-cat-body {
  display: none;
  padding: 0 0 8px 0;
}
.drawer-cat.open .drawer-cat-body {
  display: block;
}
.drawer-cat-body a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 0;
  font-family: var(--body);
  transition: color 0.2s;
}
.drawer-cat-body a:hover {
  color: var(--accent);
}
.drawer-cat-body a.view-all {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 10px;
  margin-top: 6px;
  border-top: 1px solid var(--bg-line);
}

/* Drawer simple links (non-accordion) keep simple style */
.mobile-drawer-nav .drawer-link {
  padding: 16px 24px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--bg-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 56px;
}
.mobile-drawer-nav .drawer-link:hover {
  color: var(--accent);
  background: var(--bg-soft);
}
.mobile-drawer-nav .drawer-link .arrow {
  font-family: var(--body);
  font-size: 18px;
  opacity: 0.4;
}

/* ============================================
   FLOATING CONTACT BUBBLES (WA + INSTAGRAM)
   ============================================ */

.contact-bubbles {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.contact-bubble {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
  transition: all 0.25s ease;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  color: white;
}
.contact-bubble:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.contact-bubble svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.contact-bubble .b-text {
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.contact-bubble .b-text strong {
  font-size: 12px;
  font-weight: 700;
}
.contact-bubble .b-text small {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.02em;
}

.bubble-wa {
  background: var(--green-wa);
}
.bubble-wa:hover {
  background: var(--green-wa-deep);
}
.bubble-ig {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
}
.bubble-ig:hover {
  background: linear-gradient(135deg, #e5751c 0%, #c4216c 50%, #6b289a 100%);
}

@media (max-width: 540px) {
  .contact-bubbles {
    bottom: 18px;
    right: 18px;
    gap: 8px;
  }
  .contact-bubble {
    padding: 12px;
  }
  .contact-bubble .b-text {
    display: none;
  }
}

/* ============================================
   PRODUCT GRID OVERRIDES
   ============================================ */

/* Featured products on homepage — 4 col desktop, 2 col mobile */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 980px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Categories on homepage stay 2-col on mobile */
@media (max-width: 540px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
  }
  .cat {
    aspect-ratio: 4/5 !important;
  }
  .cat-title {
    font-size: 18px !important;
  }
  .cat-content {
    padding: 16px !important;
  }
  .cat-num {
    font-size: 9px !important;
  }
  .cat-meta {
    font-size: 9px !important;
  }
  .cat-meta .arrow-c {
    width: 26px !important;
    height: 26px !important;
  }
}

/* Products page grid — 3 col desktop, 2 col mobile (no 1-col) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 10px;
}
@media (max-width: 980px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
  }
}

/* Fabric library — 3 col desktop, 2 col tablet+mobile */
.lib-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 980px) {
  .lib-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .lib-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* Smaller product card text on tighter grids */
@media (max-width: 720px) {
  .prod-info {
    padding: 12px 14px 14px;
  }
  .prod-cat {
    font-size: 9px;
    margin-bottom: 4px;
  }
  .prod-name {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.15;
  }
  .prod-bottom {
    padding-top: 8px;
  }
  .prod-moq {
    font-size: 9px;
  }
  .prod-cta {
    font-size: 9px;
  }
  .prod-tag {
    font-size: 8px;
    padding: 4px 7px;
    top: 8px;
    left: 8px;
  }
}

@media (max-width: 720px) {
  .lib-info {
    padding: 16px 16px 18px;
  }
  .lib-name {
    font-size: 17px;
  }
  .lib-spec {
    font-size: 9px;
  }
  .lib-desc {
    font-size: 12px;
  }
  .lib-meta-item .lbl {
    font-size: 8px;
  }
  .lib-meta-item .val {
    font-size: 11px;
  }
  .lib-swatch-tag {
    font-size: 8px;
    padding: 4px 7px;
    top: 10px;
    left: 10px;
  }
}

/* ============================================
   BIG PRINT METHOD VISUAL CARDS (HOMEPAGE)
   ============================================ */

.method-bigs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}
.method-big {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
  display: block;
}
.method-big:hover {
  transform: translateY(-4px);
}
.method-big-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}
.method-big:hover .method-big-bg {
  transform: scale(1.06);
}
.method-big.m1 .method-big-bg {
  background: linear-gradient(135deg, #d6411a 0%, #a8311a 60%, #1a1a1a 100%);
}
.method-big.m2 .method-big-bg {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 60%, #0a0a0a 100%);
}
.method-big.m3 .method-big-bg {
  background: linear-gradient(135deg, #14536b 0%, #0a3340 60%, #1a2530 100%);
}
.method-big.m4 .method-big-bg {
  background: linear-gradient(135deg, #6a4a2a 0%, #4a3a1a 60%, #2a2a1a 100%);
}
.method-big.m5 .method-big-bg {
  background: linear-gradient(135deg, #4a4a4a 0%, #2a2a2a 60%, #0a0a0a 100%);
}
.method-big-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 55%
  );
}
.method-big-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  color: var(--bg);
}
.method-big-num {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.method-big-num .tri {
  border-bottom-color: var(--accent);
}
.method-big-num.popular {
  color: var(--accent);
  opacity: 1;
}
.method-big-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.method-big-arrow {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.method-big:hover .method-big-arrow {
  color: var(--accent);
  opacity: 1;
}
.method-big .placeholder-banner {
  font-size: 8px;
  padding: 4px 8px;
}

@media (max-width: 980px) {
  .method-bigs {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (max-width: 540px) {
  .method-bigs {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .method-big-content {
    padding: 16px;
  }
  .method-big-title {
    font-size: 18px;
  }
}

/* ============================================
   HAWAII PRODUCTS LIST ON HOMEPAGE
   ============================================ */

.hawaii-prods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.hprod {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
  display: block;
}
.hprod:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}
.hprod-img {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #14536b 0%, #0a3340 100%);
  position: relative;
  overflow: hidden;
}
.hprod-img.h2 {
  background: linear-gradient(135deg, #1a4d3d 0%, #2a7a5a 100%);
}
.hprod-img.h3 {
  background: linear-gradient(135deg, #d4a056 0%, #a87a36 100%);
}
.hprod-img-inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.35);
}
.hprod-img-inner svg {
  width: 45%;
  height: 45%;
}
.hprod-info {
  padding: 16px 18px 18px;
}
.hprod-cat {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 6px;
}
.hprod-name {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--bg);
  letter-spacing: -0.005em;
}
@media (max-width: 980px) {
  .hawaii-prods {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
@media (max-width: 540px) {
  .hawaii-prods {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
  }
  .hprod-info {
    padding: 12px 12px 14px;
  }
  .hprod-name {
    font-size: 14px;
  }
  .hprod-cat {
    font-size: 8px;
  }
}

/* ============================================================
   BOOMBAH-STYLE NAV (index.html demo)
   Light theme, horizontal categories, dropdown mega menus
   Prefix: bb- (Boombah-style)
   ============================================================ */

/* Hide the original dark nav on pages using bb-nav (but keep .topbar marquee) */
body.bb-page nav.main {
  display: none;
}

/* UTILITY BAR */
.bb-utility {
  background: #f5f5f3;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  color: #777;
}
.bb-utility-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.bb-utility .bb-dot {
  margin: 0 6px;
  opacity: 0.4;
}
.bb-utility-right {
  display: flex;
  gap: 16px;
}
.bb-utility-right a {
  color: #777;
  text-decoration: none;
  transition: color 0.15s;
}
.bb-utility-right a:hover {
  color: #1a1a1a;
}

/* MAIN NAV */
.bb-nav {
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-family: 'Inter', system-ui, sans-serif;
  position: sticky;
  top: 0;
  z-index: 100;
}
.bb-nav-main {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.bb-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.bb-nav-logo img {
  height: 30px;
  width: auto;
  display: block;
}
.bb-nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bb-nav-cta {
  background: #d6411a;
  color: white !important;
  padding: 13px 22px;
  text-decoration: none;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #d6411a;
  transition:
    background 0.15s,
    border-color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bb-nav-cta:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
}
.bb-nav-cta:hover {
  background: #b53614;
}
.bb-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
}
.bb-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a1a;
}

/* CATEGORY BAR — left/right split (categories on left, utility on right) */
.bb-nav-cats {
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}
.bb-nav-cats-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  height: 46px;
}
.bb-nav-cats-left {
  display: flex;
  align-items: stretch;
}
.bb-nav-cats-right {
  display: flex;
  align-items: stretch;
}
.bb-cat {
  display: flex;
  align-items: stretch;
}
.bb-cat-link {
  display: flex;
  align-items: center;
  padding: 0 16px;
  text-decoration: none;
  color: #1a1a1a;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.005em;
  gap: 6px;
  height: 100%;
  border-bottom: 3px solid transparent;
  transition: all 0.15s;
  cursor: pointer;
}
.bb-cat-link:hover,
.bb-cat:hover .bb-cat-link {
  color: #d6411a;
  border-bottom-color: #d6411a;
}
.bb-cat-link .bb-arr {
  font-size: 8px;
  color: #aaa;
  transition: transform 0.15s;
}
.bb-cat:hover .bb-cat-link .bb-arr {
  transform: rotate(180deg);
  color: #d6411a;
}

/* DROPDOWN — positioned relative to .bb-nav (sticky), so it spans full page width centered */
.bb-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(1340px, calc(100vw - 32px));
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 2px solid #d6411a;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  padding: 26px 30px 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.15s,
    transform 0.15s,
    visibility 0s 0.15s;
  z-index: 200;
  overflow: hidden;
}
.bb-cat:hover .bb-dropdown,
.bb-cat.open .bb-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition:
    opacity 0.15s,
    transform 0.15s,
    visibility 0s 0s;
}
.bb-dropdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  gap: 16px;
  flex-wrap: wrap;
}
.bb-dropdown-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
}
.bb-dropdown-view-all {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: #d6411a;
  text-decoration: none;
  padding: 7px 14px;
  border: 1px solid rgba(214, 65, 26, 0.3);
  border-radius: 3px;
  transition: all 0.15s;
  white-space: nowrap;
}
.bb-dropdown-view-all:hover {
  background: #d6411a;
  color: white;
  border-color: #d6411a;
}

/* TEXT-LIST COLUMNS (replaces card grid) */
.bb-cols {
  display: grid;
  gap: 28px;
}
.bb-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.bb-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.bb-cols-5 {
  grid-template-columns: repeat(5, 1fr);
}
.bb-cols-6 {
  grid-template-columns: repeat(6, 1fr);
}
.bb-cols-7 {
  grid-template-columns: repeat(7, 1fr);
}

.bb-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bb-col-h {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin: 0 0 14px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(214, 65, 26, 0.25);
  position: relative;
  line-height: 1.1;
}
.bb-col-h::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 24px;
  height: 1px;
  background: #d6411a;
}

.bb-col-link {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  color: #444;
  text-decoration: none;
  padding: 4px 0;
  line-height: 1.35;
  transition:
    color 0.12s,
    transform 0.12s;
  border: none;
}
.bb-col-link:hover {
  color: #d6411a;
  transform: translateX(2px);
}

/* PROMO STRIP */
.bb-promo-strip {
  background: linear-gradient(90deg, #d6411a 0%, #b53614 100%);
  color: white;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  border-radius: 3px;
  gap: 14px;
  flex-wrap: wrap;
}
.bb-promo-text {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
}
.bb-promo-text strong {
  font-weight: 700;
}
.bb-promo-cta {
  background: white;
  color: #d6411a;
  padding: 9px 14px;
  text-decoration: none;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid white;
  transition: all 0.15s;
  white-space: nowrap;
}
.bb-promo-cta:hover {
  background: #1a1a1a;
  color: white;
  border-color: #1a1a1a;
}
.bb-promo-cta:hover {
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 900px) {
  .bb-nav-cats {
    display: none;
  }
  .bb-burger {
    display: flex;
  }
  .bb-utility-left {
    display: none;
  }
}

/* ============================================================
   MOBILE MENU DRAWER (multi-level drilldown — mobile only)
   Prefix: bb-md-
   ============================================================ */

.bb-md-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.25s;
}
.bb-md-overlay.open {
  display: block;
  opacity: 1;
}

.bb-md-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 100vw);
  height: 100vh;
  background: white;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow: hidden;
}
.bb-md-drawer.open {
  display: block;
  transform: translateX(0);
}

.bb-md-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: #1a1a1a;
  cursor: pointer;
  padding: 4px 8px;
  z-index: 10;
  font-weight: 300;
}
.bb-md-close:hover {
  color: #d6411a;
}

/* PANELS — stacked, slide in/out */
.bb-md-panel {
  position: absolute;
  inset: 0;
  background: white;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
}
.bb-md-panel.active {
  transform: translateX(0);
}
.bb-md-panel[data-panel='root'] {
  transform: translateX(-100%);
}
.bb-md-panel[data-panel='root'].active {
  transform: translateX(0);
}

/* HEADER */
.bb-md-panel-head {
  padding: 18px 22px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.bb-md-root-head {
  justify-content: flex-start;
}
.bb-md-logo {
  height: 26px;
  width: auto;
}
.bb-md-back {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px 6px 0;
  margin-right: 8px;
}
.bb-md-back:hover {
  color: #d6411a;
}
.bb-md-back-arr {
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
}
.bb-md-panel-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  flex: 1;
}

/* LIST */
.bb-md-list {
  flex: 1;
  overflow-y: auto;
  padding: 4px 0;
}
.bb-md-item {
  display: flex;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px 22px;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #1a1a1a;
  transition:
    background 0.12s,
    color 0.12s;
  gap: 8px;
}
.bb-md-item:hover,
.bb-md-item:active {
  background: #faf9f5;
  color: #d6411a;
}
.bb-md-item-text {
  flex: 1;
}
.bb-md-item-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #999;
  font-weight: 500;
  letter-spacing: 0;
}
.bb-md-arr {
  font-size: 18px;
  color: #ccc;
  font-weight: 300;
  line-height: 1;
}
.bb-md-item:hover .bb-md-arr,
.bb-md-item:active .bb-md-arr {
  color: #d6411a;
}
.bb-md-item-plain {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #555;
  padding: 14px 22px;
  background: #fafaf8;
}
.bb-md-item-all {
  background: #fff5f0;
  color: #d6411a;
  font-style: italic;
}
.bb-md-item-all:hover {
  background: #ffe8e0;
}

/* FOOTER */
.bb-md-foot {
  padding: 18px 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}
.bb-md-cta {
  display: block;
  background: #d6411a;
  color: white !important;
  padding: 14px 18px;
  text-align: center;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bb-md-cta:hover {
  background: #1a1a1a;
}

/* Only show this drawer on mobile/narrow screens */
@media (min-width: 901px) {
  .bb-md-drawer,
  .bb-md-overlay {
    display: none !important;
  }
}

/* Body scroll lock */
body.bb-md-locked {
  overflow: hidden;
}

/* ============================================================ */
/* COMPACT MODE — 37% TIGHTER PADDINGS & GAPS (site-wide)        */
/* High-specificity selectors override per-page inline styles    */
/* ============================================================ */

/* Hero sections (homepage) */
body .hero {
  padding: 23px 0 25px !important;
}
body .hero-grid {
  gap: 20px;
}
body .hero-eyebrow {
  margin-bottom: 11px;
}
body .hero h1 {
  margin-bottom: 11px;
}
body .hero-sub {
  margin-bottom: 16px;
}
body .hero-ctas {
  gap: 9px;
}

/* Page-hero (inner-page headers) */
body .page-hero {
  padding: 18px 0 15px !important;
}
body .page-hero h1 {
  margin-bottom: 10px;
}
body .page-hero-grid {
  gap: 28px;
}

/* Section containers */
body .sec {
  padding: 23px 0 !important;
}
body .sec-tight {
  padding: 19px 0 !important;
}
body .sec-head {
  margin-bottom: 19px;
}
body .sec-head .sec-desc {
  margin-top: 8px;
}
body .sec-h2 {
  margin-bottom: 6px;
}

/* Trust bar */
body .trust-bar {
  padding: 14px 0;
}
body .trust-row {
  gap: 50px;
}

/* Featured / category / product grids */
body .feat-grid {
  gap: 11px !important;
}
body .cat-grid {
  gap: 9px !important;
}

/* How It Works (homepage) */
body .step {
  padding: 24px 18px 24px 0;
}
body .step:not(:last-child) {
  padding-right: 18px;
}
body .step:not(:first-child) {
  padding-left: 18px;
}
body .step-num {
  margin-bottom: 19px;
}

/* Product cards */
body .prod-info {
  padding: 13px 11px;
}
body .prod-name {
  margin: 3px 0 7px;
}
body .prod-bottom {
  padding-top: 8px;
}

/* Contact paths grid */
body .paths-grid {
  gap: 11px !important;
  margin-top: 11px !important;
}
body .path-card {
  padding: 22px 19px !important;
}
body .path-icon {
  margin-bottom: 16px !important;
  width: 48px !important;
  height: 48px !important;
}
body .path-card h3 {
  margin-bottom: 8px;
}
body .path-card p {
  margin-bottom: 15px;
}
body .path-card .contact-info {
  padding-top: 11px;
  margin-bottom: 11px;
}

/* Form section */
body .form-section {
  padding: 60px 0 !important;
}
body .form-grid {
  gap: 22px !important;
}
body .form-helper-list {
  padding: 16px !important;
  margin-top: 18px !important;
}

/* Office / contact info */
body .office-grid {
  gap: 22px !important;
}
body .office-info h3 {
  margin-bottom: 8px !important;
}

/* Footer */
body footer {
  padding: 38px 0 22px;
}
body .foot-grid {
  gap: 22px;
  margin-bottom: 26px;
}
body .foot-brand {
  gap: 12px;
}
body .foot-bottom {
  padding-top: 18px;
}

/* PDP (product detail page) */
body .pdp {
  padding: 20px 0 50px !important;
  gap: 40px !important;
}
body .pdp-info h1 {
  margin-bottom: 8px;
}
body .pdp-tagline {
  margin-bottom: 14px;
}
body .spec-grid {
  gap: 10px !important;
  margin-bottom: 16px;
}
body .spec-item {
  padding: 11px 13px !important;
}
body .quote-panel {
  padding: 20px !important;
  margin: 18px 0 !important;
}
body .quote-panel h3 {
  margin-bottom: 10px;
}
body .quote-panel p {
  margin-bottom: 14px;
}
body .quote-panel-meta {
  gap: 12px !important;
  margin-bottom: 14px;
}
body .quote-panel-ctas {
  gap: 9px;
}
body .benefits {
  gap: 14px !important;
  margin-top: 16px;
}
body .benefit {
  padding: 13px !important;
}
body .pdp-tabs {
  margin-top: 36px;
}
body .tab-content {
  padding-top: 18px !important;
}
body .tab-content h4 {
  margin: 14px 0 6px;
}
body .tab-content p,
body .tab-content ul {
  margin-bottom: 10px;
}
body .sizechart-callout {
  padding: 14px !important;
  margin-top: 16px !important;
}
body .related-grid {
  gap: 11px !important;
}

/* Fabrics / Process / FAQ page-specific */
body .feature-card,
body .info-card {
  padding: 22px !important;
}
body .faq-item {
  padding: 14px 0 !important;
}
body .timeline-step {
  padding: 18px 0 !important;
}

/* Sample pack */
body .sample-grid {
  gap: 22px;
}
body .sample-card {
  padding: 22px;
}

/* ── ACTIVE PAGE NAV INDICATOR ─────────────────────
   Marks the current page in the top navigation with rust-orange color + underline. */
.bb-cat.is-active > .bb-cat-link,
.bb-cat-simple.is-active {
  color: var(--accent) !important;
  position: relative;
}
.bb-cat.is-active > .bb-cat-link::after,
.bb-cat-simple.is-active::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
