/* ── ANNOUNCEMENT BAR ── */
.announce {
  background: var(--tobacco); color: var(--amber);
  text-align: center; padding: 8px 16px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream); border-bottom: 1px solid var(--linen);
  box-shadow: 0 1px 12px rgba(44,26,14,0.06);
  transition: box-shadow 0.3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px; height: 70px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.nav-logo-text { line-height: 1.1; }
.nav-logo-text strong { font-family: 'Playfair Display'; font-weight: 700; color: var(--tobacco); font-size: 17px; display: block; }
.nav-logo-text small { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--walnut); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--bark);
  text-decoration: none; letter-spacing: 0.05em;
  position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--brass);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--brass); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--tobacco); color: var(--amber);
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 10px 20px; text-decoration: none; transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--walnut); }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Nav search */
.nav-search {
  position: relative; display: flex; align-items: center;
  background: var(--canvas); border: 1px solid var(--linen); border-radius: 999px;
  padding: 6px 10px 6px 12px; gap: 6px; width: 220px;
  transition: border-color 0.2s, background 0.2s, width 0.2s;
}
.nav-search:focus-within {
  border-color: var(--brass); background: #fff; width: 280px;
  box-shadow: 0 0 0 3px rgba(184,134,46,0.12);
}
.nav-search-icon { width: 14px; height: 14px; flex-shrink: 0; color: var(--walnut); }
.nav-search input[type="search"] {
  border: none; outline: none; background: transparent;
  font: inherit; font-size: 13px; color: var(--tobacco);
  width: 100%; padding: 4px 0;
}
.nav-search input[type="search"]::placeholder { color: var(--walnut); opacity: 0.75; }
.nav-search input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }

.nav-search-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  min-width: 340px;
  background: var(--cream); border: 1px solid var(--linen); border-radius: 10px;
  box-shadow: 0 12px 32px rgba(44,26,14,0.18);
  max-height: 70vh; overflow-y: auto; z-index: 150;
  padding: 6px;
}
.nav-search-row {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 10px; border-radius: 8px;
  text-decoration: none; color: var(--tobacco);
  transition: background 0.15s;
}
.nav-search-row:hover, .nav-search-row.active { background: var(--linen); }
.nav-search-thumb {
  width: 44px; height: 44px; object-fit: cover;
  border-radius: 6px; background: var(--canvas); flex-shrink: 0;
}
.nav-search-meta { flex: 1; min-width: 0; }
.nav-search-name {
  font-size: 13px; font-weight: 500; color: var(--tobacco);
  line-height: 1.25;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.nav-search-sub {
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--walnut); margin-top: 2px;
}
.nav-search-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px; color: var(--brass); font-weight: 700;
  flex-shrink: 0;
}
.nav-search-empty {
  padding: 14px 12px; font-size: 13px; color: var(--walnut); text-align: center;
}
.nav-search-all {
  display: block; width: 100%; text-align: center;
  margin-top: 4px; padding: 10px 12px;
  background: var(--tobacco); color: var(--amber);
  border: none; border-radius: 8px; cursor: pointer;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  transition: background 0.2s;
}
.nav-search-all:hover { background: var(--walnut); }

/* Shop page search-results banner */
.search-results-banner {
  max-width: 1200px; margin: 0 auto 20px; padding: 14px 20px;
  background: var(--cream); border: 1px solid var(--linen); border-radius: 8px;
  font-size: 14px; color: var(--bark);
}
.search-results-banner strong { color: var(--tobacco); }
.search-results-banner a { color: var(--brass); text-decoration: underline; }
.search-results-banner a:hover { color: var(--copper); }

/* Drawer search */
.drawer-search {
  padding: 16px 20px 0;
}
.drawer-search .nav-search {
  width: 100%;
}
.drawer-search .nav-search:focus-within { width: 100%; }
.drawer-search .nav-search-dropdown { min-width: 0; }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--tobacco); margin: 5px 0; border-radius: 2px; transition: 0.3s; }

/* Mobile drawer */
.drawer-overlay { display: none; position: fixed; inset: 0; background: rgba(44,26,14,0.55); z-index: 200; backdrop-filter: blur(3px); }
.drawer {
  position: fixed; right: 0; top: 0; height: 100%; width: 280px;
  background: var(--cream); z-index: 201; box-shadow: -4px 0 32px rgba(44,26,14,0.18);
  transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-overlay.open { display: block; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--linen); }
.drawer-head strong { font-family: 'Playfair Display'; font-size: 16px; color: var(--tobacco); }
.drawer-close { background: none; border: none; cursor: pointer; font-size: 22px; color: var(--tobacco); line-height: 1; }
.drawer-nav { flex: 1; padding: 12px; }
.drawer-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 10px; color: var(--bark); text-decoration: none;
  font-size: 14px; font-weight: 500; border-bottom: 1px solid rgba(237,229,208,0.6);
  transition: color 0.2s;
}
.drawer-nav a:hover { color: var(--brass); }
.drawer-foot { padding: 16px; border-top: 1px solid var(--linen); }
.drawer-foot a {
  display: block; width: 100%; background: var(--tobacco); color: var(--amber);
  text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 14px; text-decoration: none;
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 92vh;
  background: var(--tobacco); overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
  display: flex; align-items: center;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; pointer-events: none;
}
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(43,27,18,0.78) 0%, rgba(43,27,18,0.55) 55%, rgba(43,27,18,0.35) 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.15; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(184,134,46,0.14) 0%, transparent 70%);
}
.hero-inner {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto;
  padding: 80px 24px 120px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-stars { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.hero-stars svg { width: 13px; height: 13px; fill: var(--brass); }
.hero-stars span { color: rgba(212,168,83,0.7); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.hero-eyebrow { font-family: 'Bebas Neue'; color: var(--brass); font-size: 22px; letter-spacing: 0.2em; margin-bottom: 8px; }
.hero h1 { font-family: 'Playfair Display'; font-weight: 900; color: var(--cream); font-size: clamp(48px, 6vw, 76px); line-height: 1.0; margin-bottom: 24px; }
.hero h1 em { color: var(--amber); font-style: normal; }
.hero-desc { color: rgba(237,229,208,0.65); font-size: 17px; line-height: 1.7; max-width: 420px; margin-bottom: 36px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brass); color: var(--tobacco);
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 16px 28px; text-decoration: none; transition: background 0.2s;
}
.btn-primary:hover { background: var(--amber); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(251,247,238,0.25); color: rgba(251,247,238,0.75);
  font-size: 12px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 16px 28px; text-decoration: none; transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--brass); color: var(--amber); }
.hero-trust { display: flex; gap: 32px; padding-top: 32px; border-top: 1px solid rgba(237,229,208,0.08); }
.hero-trust-item { text-align: center; }
.hero-trust-item strong { display: block; font-family: 'Bebas Neue'; color: var(--brass); font-size: 26px; line-height: 1; }
.hero-trust-item span { display: block; color: rgba(237,229,208,0.8); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 4px; }
/* Hero badge panel */
.hero-badge-wrap { display: flex; justify-content: center; align-items: center; }
.hero-badge {
  position: relative; width: 320px; height: 320px;
  border: 1px solid rgba(184,134,46,0.2);
  background: var(--bark);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
}
.hero-badge::before { content: ''; position: absolute; inset: 8px; border: 2px solid rgba(184,134,46,0.2); transform: rotate(3deg); pointer-events: none; }
.hero-badge-circle {
  width: 120px; height: 120px; border-radius: 50%;
  border: 4px solid rgba(184,134,46,0.55);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hero-badge-circle strong { font-family: 'Bebas Neue'; color: var(--brass); font-size: 42px; line-height: 1; }
.hero-badge-circle small { color: rgba(212,168,83,0.55); font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; margin-top: 2px; }
.hero-badge-est { font-family: 'Bebas Neue'; color: var(--amber); font-size: 22px; letter-spacing: 0.2em; }
.hero-badge-sub { color: rgba(237,229,208,0.75); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; }
.corner { position: absolute; width: 18px; height: 18px; border-color: rgba(184,134,46,0.4); border-style: solid; }
.corner-tl { top: 14px; left: 14px; border-width: 2px 0 0 2px; }
.corner-tr { top: 14px; right: 14px; border-width: 2px 2px 0 0; }
.corner-bl { bottom: 14px; left: 14px; border-width: 0 0 2px 2px; }
.corner-br { bottom: 14px; right: 14px; border-width: 0 2px 2px 0; }

/* ── STATS ── */
.stats { background: #241408; padding: 72px 0; position: relative; overflow: hidden; }
.stats-grain { position: absolute; inset: 0; opacity: 0.1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.stats-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.stats-head { text-align: center; margin-bottom: 48px; }
.stats-head .eyebrow { font-family: 'Bebas Neue'; color: var(--brass); font-size: 20px; letter-spacing: 0.25em; margin-bottom: 4px; }
.stats-head p { color: rgba(237,229,208,0.75); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(237,229,208,0.08); }
.stat-cell {
  background: rgba(36,20,8,0.85); padding: 36px 20px; text-align: center;
  transition: background 0.3s;
}
.stat-cell:hover { background: rgba(74,46,26,0.4); }
.stat-num { font-family: 'Bebas Neue'; color: var(--amber); font-size: 52px; line-height: 1; margin-bottom: 6px; transition: color 0.3s; }
.stat-cell:hover .stat-num { color: var(--brass); }
.stat-label { color: var(--cream); font-size: 13px; font-weight: 500; letter-spacing: 0.04em; margin-bottom: 4px; }
.stat-sub { color: rgba(237,229,208,0.75); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; }

/* ── SECTION SHARED ── */
.section-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; justify-content: center; }
.section-eyebrow .line { height: 1px; background: rgba(184,134,46,0.3); width: 48px; }
.section-eyebrow span { font-family: 'Bebas Neue'; color: var(--brass); font-size: 14px; letter-spacing: 0.25em; text-transform: uppercase; }
.section-eyebrow .line-r { flex: 1; }
h2.section-title { font-family: 'Playfair Display'; font-weight: 900; color: var(--tobacco); font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; text-align: center; }
h2.section-title em { font-style: normal; color: var(--walnut); }
.section-desc { color: rgba(107,63,34,0.65); font-size: 15px; max-width: 440px; margin: 0 auto 52px; text-align: center; line-height: 1.7; }

/* Shared container for collection-style sections */
.collections-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Featured collections (styled cards section) */
.collections-featured {
  background: var(--tobacco); padding: 80px 0 90px;
  position: relative; overflow: hidden;
}
.collections-featured .section-eyebrow span { color: var(--amber); }
.collections-featured .section-eyebrow .line { background: rgba(212,168,83,0.3); }
.coll-card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 8px;
}
@media (max-width: 900px) { .coll-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .coll-card-grid { grid-template-columns: 1fr; } }


/* ── FEATURED BUILD ── */
.featured-build { background: #EFEFEF; padding: 90px 0 100px; }
.featured-build-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid;
  grid-template-columns: 45fr 55fr;
  grid-template-areas:
    "text   gallery"
    "action gallery";
  column-gap: 56px;
  row-gap: 28px;
  align-items: start;
}

/* Left column row 1: text */
.featured-build-text { grid-area: text; display: flex; flex-direction: column; align-items: flex-start; }
.featured-build-eyebrow { justify-content: flex-start; margin-bottom: 18px; }
.featured-build-eyebrow .line { width: 36px; }
h2.featured-build-title {
  text-align: left;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.1;
  margin-bottom: 22px;
  max-width: 12ch;
}
.featured-build-story {
  color: rgba(107,63,34,0.72);
  font-size: 16px;
  line-height: 1.75;
  max-width: 46ch;
  margin: 0;
}

/* Left column row 2: badges + CTA */
.featured-build-action { grid-area: action; display: flex; flex-direction: column; align-items: flex-start; }
.featured-build-badges { margin-bottom: 24px; }
.featured-build-cta { align-self: flex-start; }

/* Right column (spans both rows): bento gallery */
.featured-build-gallery {
  grid-area: gallery;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 14px;
  aspect-ratio: 5 / 6;
  max-height: 640px;
}
.fb-photo {
  position: relative; overflow: hidden;
  background: var(--tobacco, #2C1A0E);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.fb-photo picture { position: absolute; inset: 0; display: block; }
.fb-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.fb-photo:hover { transform: translateY(-3px); }
.fb-photo:hover img { transform: scale(1.05); }
.fb-photo .coll-grain { opacity: 0.04; }
.fb-photo:hover .coll-shine { opacity: 1; }

/* Bento placement */
.fb-photo-hero   { grid-column: 1; grid-row: 1 / span 3; }
.fb-photo-mood   { grid-column: 2; grid-row: 1; }
.fb-photo-action { grid-column: 2; grid-row: 2; }
.fb-photo-human  { grid-column: 2; grid-row: 3; }

@media (prefers-reduced-motion: reduce) {
  .fb-photo, .fb-photo img { transition: none; }
  .fb-photo:hover { transform: none; }
  .fb-photo:hover img { transform: none; }
  .fb-photo .coll-shine { transition: none; }
}

@media (max-width: 900px) {
  .featured-build { padding: 70px 0 80px; }
  .featured-build-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "gallery"
      "action";
    column-gap: 0;
    row-gap: 32px;
  }
  h2.featured-build-title { max-width: none; }
  .featured-build-story { margin-bottom: 0; }
  .featured-build-gallery {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    aspect-ratio: auto;
    max-height: none;
    gap: 12px;
  }
  .fb-photo-hero   { grid-column: 1 / -1; grid-row: 1; aspect-ratio: 16 / 10; }
  .fb-photo-mood   { grid-column: 1; grid-row: 2; aspect-ratio: 1 / 1; }
  .fb-photo-action { grid-column: 2; grid-row: 2; aspect-ratio: 1 / 1; }
  .fb-photo-human  { grid-column: 3; grid-row: 2; aspect-ratio: 1 / 1; }
}

@media (max-width: 520px) {
  h2.featured-build-title { font-size: clamp(28px, 8vw, 36px); }
  .featured-build-story { font-size: 15px; }
  .featured-build-cta { width: 100%; justify-content: center; text-align: center; align-self: stretch; }
}

.coll-card {
  position: relative; overflow: hidden; text-decoration: none;
  min-height: 340px; display: flex; flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.coll-card:hover { transform: translateY(-5px); }
.coll-image {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.35; transition: opacity 0.4s, transform 0.5s;
  mix-blend-mode: luminosity;
}
.coll-card:hover .coll-image { opacity: 0.55; transform: scale(1.05); }
.coll-grain { position: absolute; inset: 0; opacity: 0.1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.coll-shine { position: absolute; inset: 0; opacity: 0; pointer-events: none;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.06) 0%, transparent 60%);
  transition: opacity 0.4s;
}
.coll-card:hover .coll-shine { opacity: 1; }
.coll-bottom-line { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; opacity: 0; transition: opacity 0.3s; }
.coll-card:hover .coll-bottom-line { opacity: 1; }
.coll-content { position: relative; z-index: 1; padding: 26px; flex: 1; display: flex; flex-direction: column; }
.coll-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: auto; }
.coll-tag { font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; padding: 4px 10px; }
.coll-icon { font-size: 22px; }
.coll-body { margin-top: 32px; }
.coll-name { font-family: 'Playfair Display'; font-weight: 700; color: var(--cream); font-size: 20px; line-height: 1.2; margin-bottom: 8px; }
.coll-desc { color: rgba(251,247,238,0.45); font-size: 13px; line-height: 1.6; margin-bottom: 16px; }
.coll-cta { display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; transition: gap 0.25s; }
.coll-card:hover .coll-cta { gap: 10px; }

/* ── WHY US ── */
.why { background: var(--canvas); padding: 80px 0; }
.why-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-left .eyebrow { font-family: 'Bebas Neue'; color: var(--brass); font-size: 20px; letter-spacing: 0.2em; margin-bottom: 10px; }
.why-left h2 { font-family: 'Playfair Display'; font-weight: 900; font-size: clamp(30px,4vw,46px); color: var(--tobacco); line-height: 1.15; margin-bottom: 20px; }
.why-left h2 em { font-style: normal; color: var(--walnut); }
.why-left p { color: rgba(107,63,34,0.65); font-size: 15px; line-height: 1.7; max-width: 360px; margin-bottom: 28px; }
.why-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.why-badge { background: var(--tobacco); color: var(--amber); font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 8px 14px; }
.comp-header { display: grid; grid-template-columns: 1fr 100px 100px; gap: 1px; margin-bottom: 6px; }
.comp-header-jpats { background: var(--tobacco); color: var(--amber); font-family: 'Bebas Neue'; letter-spacing: 0.15em; font-size: 12px; padding: 10px; text-align: center; }
.comp-header-others { background: var(--linen); color: rgba(107,63,34,0.55); font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 10px; text-align: center; }
.comp-table { border: 1px solid var(--linen); overflow: hidden; }
.comp-row { display: grid; grid-template-columns: 1fr 100px 100px; align-items: center; border-bottom: 1px solid rgba(237,229,208,0.6); }
.comp-row:last-child { border-bottom: none; }
.comp-row:nth-child(odd) { background: var(--cream); }
.comp-row:nth-child(even) { background: var(--linen); }
.comp-label { padding: 12px 16px; font-size: 13px; font-weight: 500; color: var(--tobacco); }
.comp-cell { padding: 12px; text-align: center; display: flex; align-items: center; justify-content: center; }
.comp-cell.jpats { border-left: 2px solid rgba(44,26,14,0.15); }
.comp-cell.others { border-left: 1px solid var(--linen); }
.check { color: var(--sage); }
.cross { color: rgba(194,98,42,0.5); }
.why-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--brass); font-size: 13px; font-weight: 600; text-decoration: none; transition: color 0.2s; }
.why-link:hover { color: var(--walnut); }

/* ── ON DUTY ── */
.onduty {
  background: var(--tobacco); padding: 100px 0 110px;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  position: relative; overflow: hidden;
}
.onduty-grain { position: absolute; inset: 0; opacity: 0.1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.onduty-glow { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 55% at 15% 60%, rgba(184,134,46,0.11) 0%, transparent 70%);
}
.onduty-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.onduty-tag { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.onduty-tag .line { width: 32px; height: 1px; background: var(--brass); }
.onduty-tag span { font-family: 'Bebas Neue'; color: var(--brass); font-size: 15px; letter-spacing: 0.22em; }
.onduty h2 { font-family: 'Playfair Display'; font-weight: 900; color: var(--cream); font-size: clamp(34px,4.5vw,56px); line-height: 1.05; margin-bottom: 20px; }
.onduty h2 em { font-style: normal; color: var(--amber); }
.onduty-desc { color: rgba(237,229,208,0.6); font-size: 15px; line-height: 1.7; max-width: 420px; margin-bottom: 28px; }
.dept-cards { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.dept-card {
  display: flex; align-items: center; gap: 16px;
  background: rgba(74,46,26,0.3); padding: 16px 20px;
  border: 1px solid rgba(237,229,208,0.08); transition: border-color 0.25s;
}
.dept-card:hover { border-color: rgba(184,134,46,0.3); }
.dept-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(184,134,46,0.15); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 30px; line-height: 1;
}
.dept-info strong { display: block; color: var(--cream); font-size: 13px; font-weight: 600; }
.dept-info span { color: rgba(237,229,208,0.75); font-size: 11px; }
/* Badge cards right side */
.badge-cards { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.badge-card {
  position: relative; width: 260px; overflow: hidden;
  border: 1px solid rgba(184,134,46,0.22);
  transition: transform 0.2s;
}
.badge-image {
  width: 100%; height: 200px; object-fit: contain; padding: 4px; display: block;
  border-bottom: 1px solid rgba(184,134,46,0.22);
}
.badge-card:hover { transform: translateX(-6px); }
.badge-grain { position: absolute; inset: 0; opacity: 0.18; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='150' height='150' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.badge-inner { position: relative; z-index: 1; padding: 16px 18px; display: flex; align-items: center; gap: 14px; }
.badge-num { width: 38px; height: 38px; border-radius: 50%; border: 2px solid rgba(184,134,46,0.5); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.badge-num span { font-family: 'Bebas Neue'; color: var(--amber); font-size: 14px; }
.badge-dept strong { display: block; font-family: 'Bebas Neue'; color: var(--amber); letter-spacing: 0.15em; font-size: 14px; line-height: 1; }
.badge-dept small { color: rgba(251,247,238,0.4); font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 3px; display: block; }
.badge-shield { margin-left: auto; opacity: 0.5; font-size: 16px; }
.badge-note { color: rgba(237,229,208,0.55); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; text-align: right; margin-top: 8px; }

/* ── SERVICES ── */
.services { background: var(--linen); padding: 80px 0 90px; }
.services-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card {
  background: var(--cream); border: 1px solid var(--linen);
  position: relative; overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.svc-card:hover { border-color: rgba(184,134,46,0.35); box-shadow: 0 6px 28px rgba(44,26,14,0.06); }
.svc-image {
  width: 100%; height: 380px; object-fit: cover; object-position: center; display: block;
  background: var(--cream);
  border-bottom: 1px solid var(--linen);
}
.svc-top-line { position: absolute; top: 0; left: 0; right: 0; height: 3px; opacity: 0; transition: opacity 0.3s; z-index: 2; }
.svc-card:hover .svc-top-line { opacity: 1; }
.svc-content { padding: 32px; display: flex; flex-direction: column; flex: 1; }
.svc-icon { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 22px; }
.svc-price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 10px; }
.svc-price strong { font-family: 'Bebas Neue'; font-size: 36px; line-height: 1; }
.svc-price small { color: rgba(107,63,34,0.5); font-size: 11px; }
.svc-name { font-family: 'Playfair Display'; font-weight: 700; color: var(--tobacco); font-size: 19px; margin-bottom: 12px; }
.svc-desc { color: rgba(107,63,34,0.6); font-size: 13px; line-height: 1.7; margin-bottom: 22px; flex: 1; }
.svc-cta { display: inline-flex; align-self: flex-start; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; transition: gap 0.2s; margin-top: auto; }
.svc-card:hover .svc-cta { gap: 10px; }
.svc-bottom { text-align: center; margin-top: 44px; padding-top: 40px; border-top: 1px solid rgba(184,134,46,0.18); }
.svc-bottom p { color: rgba(107,63,34,0.55); font-size: 14px; margin-bottom: 16px; }

/* ── CONTACT ── */
.contact { background: var(--tobacco); padding: 80px 0; position: relative; overflow: hidden; }
.contact-grain { position: absolute; inset: 0; opacity: 0.1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.contact-glow { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 45% 55% at 80% 50%, rgba(184,134,46,0.09) 0%, transparent 70%);
}
.contact-inner { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-left .eyebrow { font-family: 'Bebas Neue'; color: var(--brass); font-size: 20px; letter-spacing: 0.2em; margin-bottom: 10px; }
.contact-left h2 { font-family: 'Playfair Display'; font-weight: 900; color: var(--cream); font-size: clamp(30px,4vw,46px); line-height: 1.1; margin-bottom: 20px; }
.contact-left h2 em { font-style: normal; color: var(--amber); }
.contact-left p { color: rgba(237,229,208,0.6); font-size: 15px; line-height: 1.7; margin-bottom: 28px; max-width: 340px; }
.contact-email { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.contact-email-icon { width: 36px; height: 36px; background: rgba(74,46,26,0.5); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.contact-email a { color: rgba(237,229,208,0.7); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.contact-email a:hover { color: var(--amber); }
.contact-tags { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(237,229,208,0.08); }
.contact-tags p { color: rgba(237,229,208,0.75); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 12px; }
.contact-tags-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.contact-tag { border: 1px solid rgba(237,229,208,0.25); color: rgba(237,229,208,0.8); font-size: 11px; padding: 6px 12px; transition: border-color 0.2s, color 0.2s; cursor: default; }
.contact-tag:hover { border-color: rgba(184,134,46,0.4); color: var(--amber); }
/* Form */
.cf-product-banner {
  background: rgba(212,168,83,0.08);
  border: 1px solid rgba(212,168,83,0.25);
  border-left: 3px solid var(--amber);
  padding: 16px 20px;
  margin-bottom: 22px;
}
.cf-product-banner-label {
  font-family: 'Bebas Neue'; color: var(--amber);
  font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase;
  margin-bottom: 6px;
}
.cf-product-banner-name {
  font-family: 'Playfair Display'; font-weight: 700;
  color: var(--cream); font-size: 16px; line-height: 1.35;
  margin-bottom: 4px;
}
.cf-product-banner-meta {
  color: rgba(237,229,208,0.6); font-size: 12px; letter-spacing: 0.05em;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-required-legend {
  margin: 0 0 24px;
  color: rgba(237,229,208,0.85);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
}
.contact-form .form-required-legend { margin-bottom: 8px; }
.form-required-legend .required-mark { font-size: 14px; line-height: 1; margin-right: 4px; }
.required-mark { color: #ff6b6b; margin-left: 3px; font-weight: 700; font-size: 1.05em; }
.form-label { display: block; color: rgba(237,229,208,0.8); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 7px; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: rgba(74,46,26,0.45);
  border: 1px solid rgba(237,229,208,0.1); color: var(--cream);
  font-family: 'DM Sans'; font-size: 14px;
  padding: 12px 16px; outline: none; transition: border-color 0.2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(237,229,208,0.22); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: rgba(184,134,46,0.5); }
.form-select { appearance: none; -webkit-appearance: none; cursor: pointer; color-scheme: dark; }
.form-select option { background: #2C1A0E; }
.form-textarea { resize: none; }
.form-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--brass); color: var(--tobacco);
  font-family: 'DM Sans'; font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 16px 24px; border: none; cursor: pointer; width: 100%;
  transition: background 0.2s; margin-top: 4px;
}
.form-submit:hover { background: var(--amber); }
.form-success { text-align: center; padding: 60px 20px; }
.form-success .check-big { font-size: 48px; margin-bottom: 16px; }
.form-success h3 { font-family: 'Playfair Display'; color: var(--cream); font-size: 24px; margin-bottom: 8px; }
.form-success p { color: rgba(237,229,208,0.8); font-size: 14px; }

/* ── FOOTER ── */
.footer-news { background: var(--walnut); padding: 40px 24px; }
.footer-news-inner { max-width: 900px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.footer-news-copy strong { display: block; font-family: 'Playfair Display'; color: var(--cream); font-size: 19px; margin-bottom: 4px; }
.footer-news-copy p { color: rgba(237,229,208,0.8); font-size: 13px; }
.footer-news-form { display: flex; }
.footer-news-input {
  background: rgba(74,46,26,0.5); border: 1px solid rgba(237,229,208,0.1);
  color: var(--cream); font-family: 'DM Sans'; font-size: 13px;
  padding: 12px 16px; outline: none; width: 240px;
  transition: border-color 0.2s;
}
.footer-news-input::placeholder { color: rgba(237,229,208,0.3); }
.footer-news-input:focus { border-color: rgba(184,134,46,0.4); }
.footer-news-btn {
  background: var(--brass); color: var(--tobacco);
  font-family: 'DM Sans'; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0 18px; border: none; cursor: pointer; white-space: nowrap;
  transition: background 0.2s;
}
.footer-news-btn:hover { background: var(--amber); }
.footer-main { background: var(--bark); padding: 56px 24px; }
.footer-main-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 200px 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand-badge { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo-img { width: 64px; height: 64px; object-fit: contain; flex-shrink: 0; background: #fff; border-radius: 50%; padding: 6px; }
.footer-brand-text strong { display: block; font-family: 'Playfair Display'; color: var(--cream); font-size: 15px; line-height: 1; }
.footer-brand-text small { color: rgba(237,229,208,0.7); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 2px; display: block; }
.footer-brand-desc { color: rgba(237,229,208,0.75); font-size: 12px; line-height: 1.7; margin-bottom: 16px; max-width: 180px; }
.footer-socials { display: flex; gap: 8px; }
.footer-social { width: 32px; height: 32px; background: rgba(237,229,208,0.1); display: flex; align-items: center; justify-content: center; text-decoration: none; color: rgba(237,229,208,0.85); font-size: 13px; transition: background 0.2s, color 0.2s; }
.footer-social:hover { background: rgba(184,134,46,0.2); color: var(--amber); }
.footer-col-title { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(251,247,238,0.75); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(237,229,208,0.75); font-size: 12px; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--amber); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(237,229,208,0.08); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.footer-bottom p { color: rgba(237,229,208,0.75); font-size: 12px; }
.footer-made { display: flex; align-items: center; gap: 5px; color: rgba(237,229,208,0.7); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-heart { color: var(--copper); }

/* ── SHOP / PRODUCT PAGES ── */
.page-hero {
  background: var(--tobacco); color: var(--cream);
  padding: 80px 24px 70px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero-grain {
  position: absolute; inset: 0; opacity: 0.12; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.page-hero .eyebrow { font-family: 'Bebas Neue'; color: var(--brass); font-size: 16px; letter-spacing: 0.3em; margin-bottom: 10px; }
.page-hero h1 { font-family: 'Playfair Display'; font-weight: 900; font-size: clamp(36px,5vw,64px); line-height: 1.05; margin-bottom: 18px; }
.page-hero h1 em { font-style: normal; color: var(--amber); }
.page-hero p { color: rgba(237,229,208,0.65); font-size: 16px; max-width: 560px; margin: 0 auto; line-height: 1.7; }
.page-hero .breadcrumb { display: inline-flex; gap: 8px; align-items: center; color: rgba(237,229,208,0.8); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 24px; }
.page-hero .breadcrumb a { color: rgba(212,168,83,0.8); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--amber); }

.shop-section { background: var(--canvas); padding: 70px 0 100px; }
.shop-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card {
  background: var(--cream); border: 1px solid var(--linen);
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(44,26,14,0.1);
  border-color: rgba(184,134,46,0.4);
}
.product-image-wrap {
  position: relative; aspect-ratio: 1 / 1;
  background: var(--linen); overflow: hidden;
}
.product-image {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  image-rendering: auto;
  transform-origin: center center;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.product-card:hover .product-image { transform: scale(1.05); }
.product-image-wrap:has(.product-image[src*="foam-side"]) {
  background: #ECE2CC;
}
.product-image-wrap:has(.product-image[src*="my-ol-lady"]),
.product-image-wrap:has(.product-image[src*="let-me-ask-my-ol-lady"]) {
  display: flex; align-items: center; justify-content: center;
}
.product-image[src*="my-ol-lady"],
.product-image[src*="let-me-ask-my-ol-lady"] {
  position: static; margin: 0;
  width: 78%; height: 78%; object-fit: contain;
}
.product-tag { display: none; }
.product-info { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.product-name {
  font-family: 'Playfair Display'; font-weight: 700;
  color: var(--tobacco); font-size: 15px; line-height: 1.35;
  margin-bottom: 10px; flex: 1;
}
.product-price-row { display: flex; align-items: baseline; justify-content: space-between; }
.product-price { font-family: 'Bebas Neue'; color: var(--brass); font-size: 22px; letter-spacing: 0.05em; }
.product-price small { color: rgba(107,63,34,0.55); font-size: 10px; font-family: 'DM Sans'; letter-spacing: 0.1em; margin-right: 4px; }
.product-cta { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--walnut); }

@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } .product-info { padding: 14px 14px 18px; } .product-name { font-size: 13px; } }
@media (max-width: 420px) { .product-grid { grid-template-columns: 1fr; } }

/* ── PRODUCT DETAIL PAGE ── */
.pdp-section { background: var(--canvas); padding: 50px 0 90px; }
.pdp-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.pdp-breadcrumb {
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
  color: rgba(107,63,34,0.55); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 36px;
}
.pdp-breadcrumb a { color: var(--walnut); text-decoration: none; }
.pdp-breadcrumb a:hover { color: var(--brass); }

.pdp-layout {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 56px; align-items: start;
}

.pdp-gallery { position: sticky; top: 90px; }
.pdp-image-wrap {
  position: relative; aspect-ratio: 1 / 1;
  background: var(--cream); border: 1px solid var(--linen);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.pdp-image { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; transition: transform 0.4s ease, opacity 200ms ease; }
.pdp-image-wrap.is-cover .pdp-image { width: 100%; height: 100%; object-fit: cover; transform: none; transition: opacity 200ms ease; image-rendering: auto; }
.pdp-image-wrap.is-contain { background: #ECE2CC; border-color: transparent; transition: background-color 220ms ease; }
.pdp-image-wrap.is-contain .pdp-image { width: 100%; height: 100%; object-fit: contain; transform: none; transition: opacity 200ms ease; }
.pdp-image-wrap.is-contain:hover .pdp-image { transform: none; }
.pdp-image-wrap:not(.is-cover):not(.is-contain):hover .pdp-image { transform: scale(1.03); }
.pdp-image-wrap.is-cover:hover .pdp-image { transform: none; }
.pdp-image.is-fading, .pdp-canvas.is-fading { opacity: 0; }

.pdp-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  cursor: zoom-in;
  transition: opacity 200ms ease;
}

.pdp-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(44, 26, 14, 0.7);
  color: var(--amber);
  border: 1px solid rgba(212, 168, 83, 0.5);
  cursor: pointer; z-index: 3;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
}
.pdp-nav:hover, .pdp-nav:focus-visible {
  background: var(--tobacco); border-color: var(--amber);
  opacity: 1; outline: none;
}
.pdp-nav svg { width: 22px; height: 22px; }
.pdp-nav-prev { left: 12px; }
.pdp-nav-next { right: 12px; }
@media (max-width: 700px) {
  .pdp-nav { width: 40px; height: 40px; }
  .pdp-nav-prev { left: 8px; }
  .pdp-nav-next { right: 8px; }
}
.pdp-tag { display: none; }

.pdp-thumbs {
  display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap;
}
.pdp-thumb {
  width: 88px; height: 88px; padding: 0;
  background: var(--cream); border: 1px solid var(--linen);
  cursor: pointer; overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pdp-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.pdp-thumb--contain { border-color: transparent; }
.pdp-thumb--contain img { object-fit: contain; }
.pdp-thumb:hover { border-color: var(--brass); }
.pdp-thumb.is-active { border-color: var(--tobacco); border-width: 2px; }
.pdp-thumb:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }

/* Image lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(20, 12, 6, 0.92);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox-img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  cursor: default;
  transform: scale(0.96);
  transition: transform 0.3s ease;
}
.lightbox.is-open .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 22px; right: 26px;
  width: 44px; height: 44px;
  border: 1px solid rgba(212, 168, 83, 0.5);
  background: rgba(44, 26, 14, 0.7);
  color: var(--amber);
  font-size: 22px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lightbox-close:hover, .lightbox-close:focus-visible {
  background: var(--tobacco);
  border-color: var(--amber);
  outline: none;
}
@media (prefers-reduced-motion: reduce) {
  .pdp-image, .pdp-image-wrap:hover .pdp-image,
  .lightbox, .lightbox-img { transition: none; transform: none; }
}

.pdp-info { padding-top: 4px; }
.pdp-eyebrow {
  font-family: 'Bebas Neue'; color: var(--brass);
  font-size: 16px; letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 14px;
}
.pdp-title {
  font-family: 'Playfair Display'; font-weight: 900;
  color: var(--tobacco); font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1; margin-bottom: 22px;
}
.pdp-price-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 22px; margin-bottom: 26px;
  border-bottom: 1px solid var(--linen);
}
.pdp-price { font-family: 'Bebas Neue'; color: var(--brass); font-size: 34px; letter-spacing: 0.05em; }
.pdp-price small {
  color: rgba(107,63,34,0.55); font-size: 11px;
  font-family: 'DM Sans'; letter-spacing: 0.15em;
  text-transform: uppercase; margin-right: 8px;
}
.pdp-usa {
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--walnut);
  background: var(--linen); padding: 6px 12px;
}

.pdp-description {
  color: rgba(74,46,26,0.8); font-size: 15px; line-height: 1.75;
  margin-bottom: 22px;
}
.pdp-features {
  list-style: none; padding: 0; margin: 0 0 30px;
  display: flex; flex-direction: column; gap: 8px;
}
.pdp-features li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--bark); font-size: 13px; line-height: 1.6;
}
.pdp-features li::before {
  content: ''; flex-shrink: 0;
  width: 8px; height: 8px; background: var(--brass);
  transform: rotate(45deg);
  margin-top: 6px;
  margin-top: calc((1lh - 8px) / 2);
}

.pdp-form { display: flex; flex-direction: column; gap: 18px; }
.pdp-field { display: flex; flex-direction: column; gap: 8px; }
.pdp-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--bark);
}
.pdp-select {
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--tobacco); background: var(--cream);
  border: 1px solid var(--linen); border-radius: 0;
  padding: 14px 16px; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B3F22' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px; cursor: pointer;
  transition: border-color 0.2s;
}
.pdp-select:focus { outline: none; border-color: var(--brass); }

.pdp-qty-wrap {
  display: inline-flex; align-items: stretch;
  border: 1px solid var(--linen); background: var(--cream);
  width: fit-content;
}
.pdp-qty-btn {
  background: none; border: none; cursor: pointer;
  color: var(--walnut); font-size: 18px; font-weight: 600;
  width: 44px; transition: background 0.2s;
}
.pdp-qty-btn:hover { background: var(--linen); }
.pdp-qty-input {
  width: 60px; text-align: center; border: none;
  background: none; font-family: 'DM Sans'; font-size: 15px;
  color: var(--tobacco);
  border-left: 1px solid var(--linen);
  border-right: 1px solid var(--linen);
}
.pdp-qty-input:focus { outline: none; }
.pdp-qty-input::-webkit-inner-spin-button,
.pdp-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

.pdp-cta {
  background: var(--tobacco); color: var(--amber);
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; padding: 18px 24px;
  border: none; cursor: pointer; margin-top: 8px;
  transition: background 0.2s, transform 0.2s;
}
.pdp-cta:hover { background: var(--walnut); transform: translateY(-1px); }
.pdp-note {
  color: rgba(107,63,34,0.6); font-size: 12px; line-height: 1.6;
  margin-top: 4px;
}

.pdp-missing { text-align: center; padding: 60px 0; }
.pdp-missing h1 {
  font-family: 'Playfair Display'; font-weight: 900;
  color: var(--tobacco); font-size: 36px; margin-bottom: 12px;
}
.pdp-missing p { color: var(--walnut); margin-bottom: 24px; }
.pdp-back-btn {
  display: inline-block; background: var(--tobacco); color: var(--amber);
  padding: 14px 22px; text-decoration: none;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
}
.pdp-back-btn:hover { background: var(--walnut); }

.pdp-related { margin-top: 90px; border-top: 1px solid var(--linen); padding-top: 60px; }
.pdp-related-head { text-align: center; margin-bottom: 36px; }
.pdp-related-head .eyebrow {
  font-family: 'Bebas Neue'; color: var(--brass);
  font-size: 16px; letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 8px;
}
.pdp-related-head h2 {
  font-family: 'Playfair Display'; font-weight: 900;
  color: var(--tobacco); font-size: clamp(26px, 3vw, 34px);
}

@media (max-width: 900px) {
  .pdp-layout { grid-template-columns: 1fr; gap: 32px; }
  .pdp-gallery { position: static; }
}
@media (max-width: 520px) {
  .pdp-section { padding: 30px 0 70px; }
  .pdp-price-row { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ── CUSTOM WORK PAGE ── */
.work-page { background: var(--canvas); padding: 70px 0 100px; }
.work-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.work-cat { margin-bottom: 70px; }
.work-cat:last-of-type { margin-bottom: 50px; }
.work-cat-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.work-cat-eyebrow {
  display: inline-block; font-family: 'Bebas Neue', sans-serif;
  color: var(--brass); font-size: 13px; letter-spacing: 0.32em;
  padding: 6px 14px; border: 1px solid rgba(184,134,46,0.35);
  border-radius: 999px; margin-bottom: 16px;
}
.work-cat-head h2 {
  font-family: 'Playfair Display', Georgia, serif; font-weight: 900;
  font-size: clamp(28px, 4vw, 42px); color: var(--tobacco);
  line-height: 1.1; margin-bottom: 12px;
}
.work-cat-head h2 em { font-style: italic; color: var(--walnut); }
.work-cat-head p { color: rgba(107,63,34,0.7); font-size: 15px; line-height: 1.65; }

.work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 900px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .work-grid { grid-template-columns: 1fr; } }

.work-card {
  background: var(--cream); border: 1px solid var(--linen); border-radius: 12px;
  overflow: hidden; transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184,134,46,0.4);
  box-shadow: 0 10px 30px rgba(44,26,14,0.08);
}
.work-card-image {
  aspect-ratio: 1021 / 944; background: var(--canvas);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--linen);
  background-image:
    linear-gradient(45deg, rgba(107,63,34,0.04) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(107,63,34,0.04) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(107,63,34,0.04) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(107,63,34,0.04) 75%);
  background-size: 18px 18px;
  background-position: 0 0, 0 9px, 9px -9px, -9px 0;
}
.work-card-image:has(img) {
  background-image: none; background-color: var(--cream);
}
.work-card-image img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  padding: 12px;
}
.work-card-image--fill img {
  object-fit: cover; padding: 0;
}
.work-card-placeholder {
  text-align: center; color: var(--walnut);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.work-card-placeholder span { font-size: 42px; filter: grayscale(0.2); opacity: 0.85; }
.work-card-placeholder small {
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.22em;
  font-size: 11px; color: rgba(107,63,34,0.55);
}
.work-card-meta { padding: 14px 16px 16px; }
.work-card-meta strong {
  display: block; font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; color: var(--tobacco); font-size: 16px; margin-bottom: 4px;
}
.work-card-meta span {
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.18em;
  font-size: 11px; color: var(--brass);
}

.work-cta {
  margin-top: 30px; text-align: center;
  background: var(--tobacco); color: var(--cream);
  padding: 56px 24px; border-radius: 14px;
  position: relative; overflow: hidden;
}
.work-cta h3 {
  font-family: 'Playfair Display', Georgia, serif; font-weight: 900;
  font-size: clamp(24px, 3.4vw, 36px); margin-bottom: 14px;
}
.work-cta h3 em { font-style: italic; color: var(--amber); }
.work-cta p {
  color: rgba(237,229,208,0.7); font-size: 15px; line-height: 1.7;
  max-width: 540px; margin: 0 auto 24px;
}

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── SCROLL-TOP BUTTON ── */
.scroll-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--tobacco); color: var(--amber);
  border: 1px solid var(--brass);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(44,26,14,0.22);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s, visibility 0.25s;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--walnut); }
.scroll-top:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
.scroll-top svg { width: 18px; height: 18px; }
@media (max-width: 640px) {
  .scroll-top { right: 16px; bottom: 16px; width: 42px; height: 42px; }
}

/* ── SHOP FILTER ── */
.shop-filter { margin-bottom: 28px; }
.shop-filter-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
}
.shop-filter-chips,
.shop-subfilter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.shop-filter-chip {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--tobacco);
  background: var(--cream);
  border: 1px solid var(--linen);
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.shop-filter-chip:hover { border-color: var(--brass); color: var(--bark); }
.shop-filter-chip:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }
.shop-filter-chip.is-active {
  background: var(--tobacco);
  color: var(--amber);
  border-color: var(--tobacco);
}
.shop-filter-count {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(44,26,14,0.6);
  font-family: 'DM Sans', sans-serif;
}

/* Sub-filter row: hidden by default, shown only when the top-level "Hats" chip is active. */
.shop-subfilter-chips { display: none; }
.shop-filter[data-product-active="hat"] .shop-subfilter-chips {
  display: flex; margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--linen);
}

/* Hide cards whose product-type doesn't match the top-level filter. */
.product-grid[data-product-filter="hat"]     .product-card:not([data-product-type="hat"])     { display: none; }
.product-grid[data-product-filter="shirt"]   .product-card:not([data-product-type="shirt"])   { display: none; }
.product-grid[data-product-filter="tumbler"] .product-card:not([data-product-type="tumbler"]) { display: none; }

/* Hide cards whose hat-type doesn't match the active sub-filter (only meaningful when product-filter is "hat"). */
.product-grid[data-active-filter="256P"]         .product-card:not([data-hat-type~="256P"])         { display: none; }
.product-grid[data-active-filter="112PFP"]       .product-card:not([data-hat-type~="112PFP"])       { display: none; }
.product-grid[data-active-filter="168P"]         .product-card:not([data-hat-type~="168P"])         { display: none; }
.product-grid[data-active-filter="112"]          .product-card:not([data-hat-type~="112"])          { display: none; }
.product-grid[data-active-filter="168"]          .product-card:not([data-hat-type~="168"])          { display: none; }
.product-grid[data-active-filter="infinity-her"] .product-card:not([data-hat-type~="infinity-her"]) { display: none; }

@media (max-width: 760px) {
  .shop-filter { margin-bottom: 20px; }
  .shop-filter-chip { font-size: 12px; padding: 7px 12px; }
}

/* ============================================
   CUSTOMIZER
   ============================================ */
.customizer { padding: 60px 0 100px; background: var(--canvas); }
.customizer-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px;
  align-items: start;
}

/* Form */
.customizer-form { display: flex; flex-direction: column; gap: 28px; }
.cz-error-banner {
  background: #f7e6e1; border: 1px solid #d6927d; color: #6b2a1a;
  padding: 14px 18px; border-radius: 10px; font-size: 14px;
}
.cz-error-banner a { color: #6b2a1a; font-weight: 600; }

.cz-section {
  background: var(--cream); border: 1px solid var(--linen); border-radius: 14px;
  padding: 26px 28px 28px; position: relative;
}
.cz-section-num {
  position: absolute; top: -10px; left: 22px;
  background: var(--tobacco); color: var(--amber);
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.2em;
  font-size: 12px; padding: 4px 10px; border-radius: 4px;
}
.cz-section-head { margin-bottom: 16px; }
.cz-section-head h2 {
  font-family: 'Playfair Display', Georgia, serif; font-weight: 700;
  color: var(--tobacco); font-size: 22px; margin-bottom: 4px;
}
.cz-section-head h2 small {
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  color: var(--walnut); letter-spacing: 0;
}
.cz-section-head p {
  font-size: 13px; color: var(--walnut); line-height: 1.5;
}

/* Form controls */
.cz-section .form-input,
.cz-section .form-select,
.cz-section .form-textarea {
  width: 100%; padding: 12px 14px; font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--tobacco);
  background: #fff; border: 1px solid var(--linen); border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.cz-section .form-input:focus,
.cz-section .form-select:focus,
.cz-section .form-textarea:focus {
  outline: none; border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(184,134,46,0.15);
}
.cz-section .form-label {
  display: block; font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.18em; font-size: 12px; color: var(--walnut);
  margin-bottom: 8px;
}
.cz-section .form-label small {
  font-family: 'DM Sans', sans-serif; font-size: 11px;
  letter-spacing: 0; text-transform: none; color: var(--walnut); opacity: 0.8;
}

/* Static single-option pill (used when a customizer section has no real choice) */
.cz-static-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: var(--cream);
  border: 1px solid var(--linen);
  border-left: 3px solid var(--brass);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  color: var(--tobacco);
}
.cz-static-pill-check {
  width: 16px; height: 16px; color: var(--brass); flex-shrink: 0;
}
.cz-static-pill-text { letter-spacing: 0.01em; }

/* Color row with swatch */
.cz-color-row { display: flex; align-items: center; gap: 14px; }
.cz-swatch {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid #fff; box-shadow: 0 0 0 1px var(--linen), 0 2px 6px rgba(0,0,0,0.08);
  flex-shrink: 0; transition: background 0.25s ease;
}

/* Patch type radios */
.cz-radio-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px;
}
.cz-radio { cursor: pointer; }
.cz-radio input { position: absolute; opacity: 0; pointer-events: none; }
.cz-radio-box {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; background: #fff; border: 1px solid var(--linen);
  border-radius: 8px; transition: all 0.2s ease;
}
.cz-radio:hover .cz-radio-box { border-color: var(--brass); }
.cz-radio input:checked + .cz-radio-box {
  border-color: var(--tobacco); background: var(--cream);
  box-shadow: 0 0 0 2px var(--tobacco);
}
.cz-radio-dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--linen); flex-shrink: 0; position: relative;
  transition: border-color 0.2s ease;
}
.cz-radio input:checked + .cz-radio-box .cz-radio-dot {
  border-color: var(--tobacco);
}
.cz-radio input:checked + .cz-radio-box .cz-radio-dot::after {
  content: ''; position: absolute; inset: 2px;
  background: var(--tobacco); border-radius: 50%;
}
.cz-radio-text {
  font-size: 13px; color: var(--tobacco); font-weight: 500;
}

/* File upload */
.cz-file-wrap { position: relative; display: flex; align-items: center; gap: 10px; }
.cz-file-input { position: absolute; opacity: 0; pointer-events: none; width: 1px; height: 1px; }
.cz-file-label {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: #fff; border: 1px dashed var(--brass);
  border-radius: 8px; cursor: pointer; flex: 1;
  font-size: 13px; color: var(--tobacco); transition: all 0.2s ease;
}
.cz-file-label:hover { background: var(--cream); border-style: solid; }
.cz-file-icon { font-size: 16px; }
.cz-file-text { font-weight: 500; }
.cz-file-clear {
  background: transparent; border: 1px solid var(--linen); color: var(--walnut);
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all 0.2s ease;
}
.cz-file-clear:hover { border-color: #b04a3a; color: #b04a3a; }

.cz-design-error {
  margin-top: 12px; font-size: 13px; color: #b04a3a;
}

/* Quantity */
.cz-qty-row { display: flex; align-items: center; gap: 10px; max-width: 200px; }
.cz-qty-btn {
  width: 40px; height: 44px; border-radius: 8px;
  background: #fff; border: 1px solid var(--linen);
  font-size: 18px; color: var(--tobacco); cursor: pointer;
  transition: all 0.2s ease;
}
.cz-qty-btn:hover { border-color: var(--brass); background: var(--cream); }
.cz-qty-input { text-align: center; max-width: 90px; }

/* Two-column grid for name/phone */
.cz-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Submit */
.cz-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 32px; background: var(--tobacco); color: var(--amber);
  border: none; border-radius: 10px; cursor: pointer;
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.2em;
  font-size: 16px; transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(44,26,14,0.15);
}
.cz-submit:hover {
  background: var(--walnut); transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(44,26,14,0.22);
}
.cz-submit-arrow { transition: transform 0.2s ease; }
.cz-submit:hover .cz-submit-arrow { transform: translateX(4px); }

.cz-fineprint {
  font-size: 12px; color: var(--walnut); line-height: 1.55;
  text-align: center; padding: 0 20px;
}

/* Preview side */
.customizer-preview { position: relative; }
.cz-preview-sticky { position: sticky; top: 100px; }
.cz-preview-image {
  background: var(--cream); border: 1px solid var(--linen); border-radius: 14px;
  aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 0;
}
.cz-preview-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.cz-preview-image--shapes {
  aspect-ratio: auto;
  background: transparent;
  border: none;
}
.cz-preview-image--shapes img {
  width: 100%; height: auto; object-fit: contain;
}
.cz-preview-color-note {
  margin-top: 10px; font-size: 12px; color: var(--walnut);
  text-align: center; font-style: italic;
}

.cz-summary {
  margin-top: 18px; background: var(--cream); border: 1px solid var(--linen);
  border-radius: 14px; padding: 22px 24px;
}
.cz-summary-head {
  border-bottom: 1px solid var(--linen); padding-bottom: 12px; margin-bottom: 14px;
}
.cz-summary-head strong {
  display: block; font-family: 'Playfair Display', Georgia, serif; font-weight: 700;
  font-size: 18px; color: var(--tobacco); margin-bottom: 2px;
}
.cz-summary-head span {
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.18em;
  font-size: 11px; color: var(--brass);
}
.cz-summary-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.cz-summary-list li {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 13px;
}
.cz-sum-k {
  color: var(--walnut); font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.16em; font-size: 11px; padding-top: 2px;
}
.cz-sum-v {
  color: var(--tobacco); font-weight: 500; text-align: right;
  max-width: 60%; word-break: break-word;
}

.cz-logo-thumb {
  display: flex; align-items: center; gap: 10px;
  margin-top: 14px; padding: 10px 12px;
  background: #fff; border: 1px solid var(--linen); border-radius: 8px;
  font-size: 12px;
}
.cz-logo-thumb-icon {
  font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; flex-shrink: 0;
}
.cz-logo-thumb-imgbtn {
  position: relative; padding: 0; border: none; cursor: pointer;
  background: transparent; flex-shrink: 0; line-height: 0;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cz-logo-thumb-imgbtn:hover { transform: scale(1.04); box-shadow: 0 4px 14px rgba(44,26,14,0.15); }
.cz-logo-thumb-imgbtn:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
.cz-logo-thumb-img {
  width: 56px; height: 56px; object-fit: contain;
  background:
    linear-gradient(45deg, #f0ebe0 25%, transparent 25%),
    linear-gradient(-45deg, #f0ebe0 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #f0ebe0 75%),
    linear-gradient(-45deg, transparent 75%, #f0ebe0 75%);
  background-size: 10px 10px;
  background-position: 0 0, 0 5px, 5px -5px, -5px 0;
  border: 1px solid var(--linen); border-radius: 6px;
  display: block;
}
.cz-logo-thumb-zoom {
  position: absolute; bottom: -4px; right: -4px;
  background: var(--tobacco); color: var(--amber);
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  border: 2px solid var(--cream);
  transition: background 0.18s ease, transform 0.18s ease;
}
.cz-logo-thumb-imgbtn:hover .cz-logo-thumb-zoom { background: var(--walnut); transform: scale(1.08); }
.cz-logo-thumb--has-image { padding: 8px 12px 8px 8px; }
.cz-logo-thumb-name {
  color: var(--tobacco); font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  flex: 1; min-width: 0;
}

.cz-price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--linen);
}
.cz-price-label {
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.2em;
  font-size: 13px; color: var(--walnut);
}
.cz-price-value {
  font-family: 'Playfair Display', Georgia, serif; font-weight: 700;
  font-size: 26px; color: var(--tobacco);
}
.cz-price-note {
  display: block; margin-top: 8px;
  font-size: 11px; color: var(--walnut); line-height: 1.5;
}

@media (max-width: 960px) {
  .customizer-inner { grid-template-columns: 1fr; gap: 28px; }
  .cz-preview-sticky { position: static; display: contents; }
  .customizer-form { display: contents; }
  .customizer-preview { display: contents; }
  .cz-preview-image { order: -2; }
  .cz-preview-color-note { order: -1; margin-top: 0; }
  .cz-summary { order: 1; margin-top: 0; }
  .cz-submit, .cz-fineprint { order: 2; }
}
@media (max-width: 560px) {
  .customizer { padding: 40px 0 70px; }
  .customizer-inner { padding: 0 18px; }
  .cz-section { padding: 22px 20px 24px; }
  .cz-section-head h2 { font-size: 19px; }
  .cz-grid-2 { grid-template-columns: 1fr; }
  .cz-radio-grid { grid-template-columns: 1fr 1fr; }
}

/* Custom-work hat card link wrapper */
.work-card-link {
  display: block; text-decoration: none; color: inherit;
  border-radius: 12px; transition: transform 0.35s ease;
}
.work-card-link:hover { transform: translateY(-4px); }
.work-card-link:hover .work-card { box-shadow: 0 10px 30px rgba(44,26,14,0.08); border-color: rgba(184,134,46,0.4); }
.work-card-link:focus-visible { outline: 2px solid var(--brass); outline-offset: 4px; }
.work-card-link .work-card { transition: border-color 0.35s ease, box-shadow 0.35s ease; }
.work-card-link .work-card:hover { transform: none; }

/* Customizer-prefilled banner on contact page */
.cf-customizer-banner {
  background: var(--tobacco); color: var(--amber);
  padding: 18px 22px; border-radius: 10px; margin-bottom: 22px;
}
.cf-customizer-banner-label {
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.22em;
  font-size: 11px; opacity: 0.7; margin-bottom: 4px;
}
.cf-customizer-banner-name {
  font-family: 'Playfair Display', Georgia, serif; font-weight: 700;
  font-size: 18px; margin-bottom: 6px;
}
.cf-customizer-banner-meta {
  font-size: 13px; opacity: 0.85;
}

/* Customizer lightbox */
.cz-lightbox {
  border: none; padding: 0; background: transparent;
  max-width: min(900px, 92vw); max-height: 92vh; width: auto;
  border-radius: 14px; overflow: hidden;
  margin: auto;
}
.cz-lightbox::backdrop {
  background: rgba(20,12,6,0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.cz-lightbox[open] {
  animation: czLightboxIn 0.22s ease;
}
@keyframes czLightboxIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.cz-lightbox-inner {
  background: var(--cream); border-radius: 14px;
  display: flex; flex-direction: column;
  max-height: 92vh;
}
.cz-lightbox-img {
  display: block; max-width: 100%; max-height: 70vh;
  width: auto; height: auto; object-fit: contain;
  background:
    linear-gradient(45deg, #ebe5d6 25%, transparent 25%),
    linear-gradient(-45deg, #ebe5d6 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #ebe5d6 75%),
    linear-gradient(-45deg, transparent 75%, #ebe5d6 75%);
  background-size: 22px 22px;
  background-position: 0 0, 0 11px, 11px -11px, -11px 0;
  margin: 0 auto;
}
.cz-lightbox-meta {
  padding: 18px 24px 22px; border-top: 1px solid var(--linen);
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
}
.cz-lightbox-filename {
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--tobacco); font-weight: 500;
  word-break: break-all; flex: 1; min-width: 200px;
}
.cz-lightbox-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cz-lightbox-replace,
.cz-lightbox-confirm {
  border: none; cursor: pointer; padding: 11px 20px;
  border-radius: 8px; font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.18em; font-size: 13px;
  transition: all 0.2s ease;
}
.cz-lightbox-replace {
  background: transparent; color: var(--walnut);
  border: 1px solid var(--linen);
}
.cz-lightbox-replace:hover { border-color: var(--brass); color: var(--tobacco); background: #fff; }
.cz-lightbox-confirm {
  background: var(--tobacco); color: var(--amber);
}
.cz-lightbox-confirm:hover { background: var(--walnut); }
.cz-lightbox-close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: rgba(20,12,6,0.75); color: var(--amber);
  border: none; cursor: pointer;
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 600; line-height: 1;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s ease, transform 0.15s ease;
}
.cz-lightbox-close:hover { background: rgba(20,12,6,0.95); transform: scale(1.08); }

@media (max-width: 560px) {
  .cz-lightbox-meta { padding: 14px 16px 18px; }
  .cz-lightbox-actions { width: 100%; }
  .cz-lightbox-replace,
  .cz-lightbox-confirm { flex: 1; }
}

/* =========================================================================
   Custom Select — keeps native <select> as the tabbable trigger, replaces
   only the open dropdown panel for cross-OS consistency.
   ========================================================================= */
.cs { position: relative; width: 100%; }
.cs > select { width: 100%; }
.cs.is-open > select.form-select,
.cs.is-open > select.pdp-select {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(184,134,46,0.15);
}
.cs--dark.is-open > select.form-select {
  border-color: rgba(184,134,46,0.5);
}

.cs-list {
  position: absolute;
  top: calc(100% + 6px); left: 0; right: 0;
  z-index: 100;
  list-style: none;
  margin: 0; padding: 6px;
  max-height: 240px;
  overflow-y: auto;
  background: var(--cream);
  border: 1px solid var(--linen);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(44,26,14,0.15), 0 4px 8px rgba(44,26,14,0.08);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  animation: cs-fade-down 0.12s ease-out;
}
.cs.cs-up .cs-list {
  top: auto; bottom: calc(100% + 6px);
  animation: cs-fade-up 0.12s ease-out;
}
@keyframes cs-fade-down {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cs-fade-up {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cs-option {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--tobacco);
  cursor: pointer; user-select: none;
  transition: background-color 0.1s ease;
}
.cs-option.is-active { background: rgba(184,134,46,0.12); }
.cs-option[aria-selected="true"] {
  color: var(--brass);
  font-weight: 600;
}
.cs-option[aria-selected="true"]::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brass);
  flex-shrink: 0;
}
.cs-option[aria-disabled="true"] { opacity: 0.4; cursor: not-allowed; }

/* PDP variant — square corners, slightly larger padding */
.cs--pdp .cs-trigger { border-radius: 0; padding: 14px 16px; }
.cs--pdp .cs-list { border-radius: 0; }

/* Dark theme — contact form, bulk-orders, newsletter */
.cs--dark .cs-trigger {
  background: rgba(74,46,26,0.45);
  border-color: rgba(237,229,208,0.1);
  color: var(--cream);
}
.cs--dark.is-open > .cs-trigger,
.cs--dark .cs-trigger:focus-visible {
  border-color: rgba(184,134,46,0.5);
  box-shadow: 0 0 0 3px rgba(184,134,46,0.15);
}
.cs--dark .cs-arrow { color: rgba(237,229,208,0.7); }
.cs--dark .cs-list {
  background: #2C1A0E;
  border-color: rgba(237,229,208,0.12);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.cs--dark .cs-option { color: var(--cream); }
.cs--dark .cs-option.is-active { background: rgba(184,134,46,0.2); }
.cs--dark .cs-option[aria-selected="true"] { color: var(--amber); }
.cs--dark .cs-option[aria-selected="true"]::before { background: var(--amber); }

/* List scrollbar — match site scrollbar */
.cs-list::-webkit-scrollbar { width: 6px; }
.cs-list::-webkit-scrollbar-track { background: transparent; }
.cs-list::-webkit-scrollbar-thumb { background: var(--brass); border-radius: 3px; }
.cs--dark .cs-list::-webkit-scrollbar-thumb { background: var(--amber); }

@media (prefers-reduced-motion: reduce) {
  .cs-list { animation: none; }
  .cs-arrow { transition: none; }
}

/* Cart badge in nav */
.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  color: inherit;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s ease;
}
.nav-cart:hover { background: rgba(0, 0, 0, 0.05); }
.nav-cart:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
.nav-cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: #c9302c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  font-family: "DM Sans", sans-serif;
}

/* Cart page */
.cart-section { padding: 48px 24px 96px; }
.cart-inner { max-width: 960px; margin: 0 auto; }
.cart-title { font-family: "Playfair Display", serif; font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 24px; }

.cart-empty { padding: 64px 24px; text-align: center; background: #f7f5f1; border-radius: 12px; }
.cart-empty p { font-size: 1.125rem; margin: 0 0 16px; color: #555; }
.cart-shop-link { color: #c9302c; font-weight: 600; text-decoration: none; }
.cart-shop-link:hover { text-decoration: underline; }

.cart-body[hidden] { display: none; }
.cart-body { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
@media (max-width: 720px) { .cart-body { grid-template-columns: 1fr; } }

.cart-lines { list-style: none; padding: 0; margin: 0; }
.cart-line { display: grid; grid-template-columns: 96px 1fr auto; gap: 16px; padding: 16px 0; border-bottom: 1px solid #e6e2d8; }
.cart-line-thumb { width: 96px; height: 96px; object-fit: cover; border-radius: 8px; background: #f0ede5; }
.cart-line-body h3 { margin: 0 0 4px; font-size: 1rem; font-family: "DM Sans", sans-serif; font-weight: 600; }
.cart-line-customs { font-size: 0.875rem; color: #666; margin: 4px 0 8px; line-height: 1.4; }
.cart-line-customs span { display: block; }
.cart-line-customs strong { color: #333; }
.cart-line-controls { display: flex; align-items: center; gap: 12px; }
.cart-qty-input { width: 56px; padding: 4px 8px; border: 1px solid #d6d2c8; border-radius: 6px; font: inherit; text-align: center; }
.cart-remove-btn { background: none; border: none; color: #c9302c; font-size: 0.875rem; cursor: pointer; padding: 0; }
.cart-remove-btn:hover { text-decoration: underline; }
.cart-line-price { text-align: right; font-weight: 600; font-family: "DM Sans", sans-serif; }

.cart-summary { background: #f7f5f1; padding: 24px; border-radius: 12px; }
.cart-row { display: flex; justify-content: space-between; padding: 8px 0; font-family: "DM Sans", sans-serif; }
.cart-row-muted { color: #666; font-size: 0.875rem; }
.cart-row-total { padding-top: 16px; border-top: 1px solid #d6d2c8; font-size: 1.25rem; font-weight: 700; }
.cart-pickup { display: flex; gap: 12px; align-items: flex-start; margin: 16px 0; padding: 12px 14px; background: #fff; border: 1px solid #d6d2c8; border-radius: 8px; cursor: pointer; font-family: "DM Sans", sans-serif; transition: border-color 0.15s, box-shadow 0.15s; }
.cart-pickup:hover { border-color: #1a1a1a; }
.cart-pickup:focus-within { border-color: #1a1a1a; box-shadow: 0 0 0 3px rgba(26,26,26,0.12); }
.cart-pickup input[type="checkbox"] { margin-top: 3px; width: 18px; height: 18px; accent-color: #1a1a1a; cursor: pointer; flex-shrink: 0; }
.cart-pickup-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.35; }
.cart-pickup-text strong { font-weight: 600; color: #1a1a1a; }
.cart-pickup-text small { color: #666; font-size: 0.8125rem; }
.cart-checkout-btn { width: 100%; padding: 14px; margin-top: 16px; background: #1a1a1a; color: #fff; border: none; border-radius: 8px; font: 600 1rem "DM Sans", sans-serif; cursor: pointer; }
.cart-checkout-btn:hover:not(:disabled) { background: #000; }
.cart-checkout-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.cart-error { margin-top: 12px; padding: 12px; background: #fde7e7; color: #8a1f1f; border-radius: 6px; font-size: 0.875rem; }
.cart-continue-link { display: block; text-align: center; margin-top: 16px; color: #666; text-decoration: none; font-size: 0.875rem; }
.cart-continue-link:hover { color: #c9302c; }

/* PDP Add-to-Cart CTA */
.pdp-add-btn { padding: 14px 24px; background: #c9302c; color: #fff; border: none; border-radius: 8px; font: 600 1rem "DM Sans", sans-serif; cursor: pointer; margin-top: 12px; display: block; width: 100%; }
.pdp-add-btn:hover { background: #a82420; }
.pdp-add-msg { margin-top: 12px; color: #2e7d2e; font-size: 0.875rem; }
.pdp-add-msg a { color: inherit; text-decoration: underline; }

/* Thank you page */
.thanks-section { padding: 96px 24px; }
.thanks-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.thanks-title { font-family: "Playfair Display", serif; font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 16px; }
.thanks-body { font-size: 1.125rem; color: #555; line-height: 1.6; margin: 0 0 24px; }
.thanks-order { font-family: "DM Sans", sans-serif; color: #666; margin: 0 0 32px; }
.thanks-order code { background: #f0ede5; padding: 2px 8px; border-radius: 4px; font-size: 0.9em; }
.thanks-shop-link { display: inline-block; padding: 12px 24px; background: #c9302c; color: #fff; text-decoration: none; border-radius: 8px; font: 600 1rem "DM Sans", sans-serif; }
.thanks-shop-link:hover { background: #a82420; }
