/* =========================================================
   DUTCHTOWN GRIFFINS — SCOPED CSS
   teeshirtali.com/schools/dutchtown/

   ALL rules are scoped to .dths-page so nothing bleeds
   into the main TSA site or other school subsites.

   HOW TO INSTALL:
   Option A — Flatsome: Appearance → Customize → Additional CSS → paste this file
   Option B — Drop into TSA child theme's style.css (append at bottom)
   Option C — Flatsome UX Builder global custom CSS field

   BRAND: Pantone 268C #592C82 · Cool Gray 3 #C7C9C8
========================================================= */

/* ===== SCOPED CSS VARIABLES =====
   Defined on BOTH body.dths-active and .dths-page so the global header/footer
   (which live OUTSIDE .dths-page) inherit the brand variables too. Per-store
   overrides are injected on the same selectors by tsa_store_brand_style(). */
body.dths-active,
.dths-page {
  --dths-black:         #09090b;
  --dths-charcoal:      #111114;
  --dths-purple:        #592c82;
  --dths-purple-rgb:    89,44,130;        /* primary as RGB for translucent accents */
  --dths-purple-bright: #8b5cf6;
  --dths-purple-bright-rgb: 139,92,246;  /* RGB components for translucent accents */
  --dths-purple-mid:    #5b21b6;
  --dths-silver:        #c7c9c8;
  --dths-silver-rgb:    199,201,200;      /* secondary as RGB for translucent accents */
  --dths-text:          rgba(255,255,255,.88);
  --dths-muted:         rgba(255,255,255,.62);
  --dths-line:          rgba(255,255,255,.11);
  --dths-radius:        26px;
  --dths-shadow:        0 18px 50px rgba(0,0,0,.4);

  /* Override page background inside Dutchtown pages only */
  background: var(--dths-black);
  color: var(--dths-text);
  font-family: 'Outfit', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Selection color within Dutchtown pages */
.dths-page ::selection { background: rgba(var(--dths-purple-bright-rgb),.42); color: #fff; }

/* ===== GOOGLE FONTS — loaded via snippet, listed here for reference =====
   Anton (display) · Outfit 300,400,500,600,700,800 (body)
   Added in dutchtown-functions.php snippet
================================================================== */

/* ===== TYPOGRAPHY ===== */
.dths-page .dths-display,
.dths-page .dths-title {
  font-family: 'Anton', 'Impact', sans-serif !important;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

.dths-page .dths-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(var(--dths-silver-rgb),.45);
  background: rgba(var(--dths-silver-rgb),.12);
  color: var(--dths-silver);
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

/* ===== SURFACES ===== */
.dths-page .dths-glass {
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  border: 1px solid var(--dths-line);
  border-radius: var(--dths-radius);
  box-shadow: var(--dths-shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.dths-page .dths-grain::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.055 0'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: .65;
  z-index: 1;
}

/* ===== BUTTONS ===== */
.dths-page .dths-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 14px;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  color: #fff !important;
  background: linear-gradient(135deg, var(--dths-purple-bright), var(--dths-purple-mid));
  box-shadow: 0 14px 34px rgba(var(--dths-purple-bright-rgb),.3);
  border: 0;
  text-decoration: none !important;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
  cursor: pointer;
}
.dths-page .dths-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(var(--dths-purple-bright-rgb),.42);
  filter: brightness(1.08);
  color: #fff !important;
}

.dths-page .dths-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 14px;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--dths-silver) !important;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(var(--dths-silver-rgb),.5);
  text-decoration: none !important;
  transition: transform .22s ease, background .22s ease;
  cursor: pointer;
}
.dths-page .dths-btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.1);
  color: #fff !important;
}

.dths-page .dths-btn-ghost {
  background: transparent;
  border: 1px solid transparent;
  color: var(--dths-muted);
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: color .18s, background .18s;
}
.dths-page .dths-btn-ghost:hover { color: #fff; background: rgba(255,255,255,.05); }

/* ===== CARD HOVER ===== */
.dths-page .dths-card-hover {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.dths-page .dths-card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 64px rgba(var(--dths-purple-bright-rgb),.24);
  border-color: rgba(var(--dths-purple-bright-rgb),.38) !important;
}

/* ===== LAYOUT ===== */
.dths-page .dths-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}
.dths-page .dths-section { padding: 96px 0; }

/* ===== MARQUEE ===== */
@keyframes dths-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.dths-page .dths-marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--dths-line);
  border-bottom: 1px solid var(--dths-line);
  background: rgba(0,0,0,.45);
  padding: 18px 0;
}
.dths-page .dths-marquee-track {
  display: flex;
  width: max-content;
  animation: dths-marquee 38s linear infinite;
}
.dths-page .dths-marquee-item {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  white-space: nowrap;
  padding: 0 48px;
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.dths-page .dths-marquee-dot { color: var(--dths-silver); font-size: .7em; }

/* ===== HERO ===== */
.dths-page .dths-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 0%, rgba(var(--dths-purple-bright-rgb),.48), transparent 52%),
    radial-gradient(circle at 92% 10%, rgba(var(--dths-silver-rgb),.07), transparent 20%),
    linear-gradient(180deg, #09090b 0%, #111114 52%, #09090b 100%);
  padding: 120px 0 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dths-page .dths-hero-bg { position: absolute; inset: 0; }
.dths-page .dths-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.dths-page .dths-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,9,11,.4), rgba(9,9,11,.88) 62%, #09090b);
}
.dths-page .dths-hero-inner { position: relative; z-index: 2; }
.dths-page .dths-hero-h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(52px, 9.5vw, 148px);
  line-height: .86;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.02em;
  max-width: 1000px;
  margin: 24px 0 0;
}
.dths-page .dths-hero-gradient {
  background: linear-gradient(135deg, var(--dths-silver) 0%, var(--dths-purple-bright) 45%, var(--dths-purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dths-page .dths-hero-sub { margin-top: 24px; max-width: 540px; font-size: 17px; line-height: 1.72; color: var(--dths-muted); }
.dths-page .dths-hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.dths-page .dths-stats-grid { margin-top: 72px; display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.dths-page .dths-stat { padding: 20px 22px; }
.dths-page .dths-stat-k { font-size: 10px; letter-spacing: .26em; color: rgba(255,255,255,.38); text-transform: uppercase; }
.dths-page .dths-stat-v { font-family: 'Anton', sans-serif; font-size: 36px; color: #fff; margin-top: 6px; line-height: 1; }
.dths-page .dths-stat-s { font-size: 12px; color: var(--dths-muted); margin-top: 4px; }

/* ===== COUNTDOWN ===== */
.dths-page .dths-drop-card { position: relative; overflow: hidden; padding: 60px 56px; }
.dths-page .dths-drop-grid { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; position: relative; z-index: 2; }
.dths-page .dths-drop-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 85% 0%, rgba(var(--dths-purple-bright-rgb),.32), transparent 50%); }
.dths-page .dths-drop-name { font-family: 'Anton', sans-serif; font-size: clamp(40px,6vw,80px); line-height: .9; color: #fff; margin-top: 18px; }
.dths-page .dths-drop-sub { color: var(--dths-muted); margin-top: 14px; max-width: 440px; line-height: 1.65; }
.dths-page .dths-cd-wrap { display: flex; flex-direction: column; align-items: flex-end; }
.dths-page .dths-cd-label { font-size: 10px; letter-spacing: .28em; color: rgba(255,255,255,.38); text-transform: uppercase; margin-bottom: 14px; }
.dths-page .dths-cd-units { display: flex; gap: 10px; }
.dths-page .dths-cu { text-align: center; padding: 14px 16px; min-width: 72px; background: rgba(255,255,255,.05); border: 1px solid var(--dths-line); border-radius: 16px; }
.dths-page .dths-cn { font-family: 'Anton', sans-serif; font-size: 42px; color: #fff; line-height: 1; }
.dths-page .dths-cl { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 4px; }

/* ===== SECTION HEADERS ===== */
.dths-page .dths-section-split { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 48px; }
.dths-page .dths-section-h2 { font-family: 'Anton', sans-serif; font-size: clamp(44px,7vw,88px); color: #fff; line-height: .9; text-transform: uppercase; margin-top: 12px; }
.dths-page .dths-section-desc { color: var(--dths-muted); max-width: 420px; line-height: 1.7; font-size: 15px; }
.dths-page .dths-section-desc a { color: #fff; }

/* ===== COLLECTION CARDS ===== */
.dths-page .dths-collections-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.dths-page .dths-coll-card { position: relative; border-radius: var(--dths-radius); overflow: hidden; aspect-ratio: 4/3; display: block; text-decoration: none !important; border: 1px solid var(--dths-line); }
.dths-page .dths-coll-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.dths-page .dths-coll-card:hover .dths-coll-img { transform: scale(1.06); }
.dths-page .dths-coll-placeholder { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(var(--dths-purple-rgb),.95), #16161c 54%, rgba(var(--dths-silver-rgb),.5)); }
.dths-page .dths-coll-placeholder-letter { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: 'Anton', sans-serif; font-size: 80px; color: rgba(255,255,255,.08); }
.dths-page .dths-coll-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,9,11,.9) 0%, rgba(9,9,11,.25) 55%, transparent 100%); }
.dths-page .dths-coll-arrow { position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid var(--dths-line); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; transition: background .22s, transform .22s; }
.dths-page .dths-coll-card:hover .dths-coll-arrow { background: rgba(var(--dths-purple-bright-rgb),.35); transform: scale(1.1); }
.dths-page .dths-coll-body { position: absolute; inset-x: 0; bottom: 0; padding: 32px; }
.dths-page .dths-coll-sup { font-size: 10px; letter-spacing: .28em; color: rgba(255,255,255,.55); text-transform: uppercase; margin-bottom: 10px; }
.dths-page .dths-live-inline { color: #6ee7b7; }
.dths-page .dths-coll-name { font-family: 'Anton', sans-serif; font-size: clamp(36px,5vw,60px); color: #fff; text-transform: uppercase; line-height: .92; }
.dths-page .dths-coll-tag { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 8px; }

/* ===== ECOSYSTEM GRID ===== */
.dths-page .dths-eco-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.dths-page .dths-eco-tile { position: relative; aspect-ratio: 1; border-radius: 20px; overflow: hidden; border: 1px solid var(--dths-line); background: linear-gradient(160deg, rgba(17,17,20,.9), rgba(9,9,11,.9)); transition: border-color .25s, transform .25s; text-decoration: none !important; display: block; }
.dths-page .dths-eco-tile:hover { border-color: rgba(var(--dths-purple-bright-rgb),.35); transform: translateY(-3px); }
.dths-page .dths-eco-tile-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .25; filter: grayscale(1); }
.dths-page .dths-eco-tile-inner { position: absolute; inset: 0; padding: 14px; display: flex; flex-direction: column; justify-content: space-between; }
.dths-page .dths-eco-tile-soon { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.dths-page .dths-eco-tile-name { font-family: 'Anton', sans-serif; font-size: 18px; color: #fff; text-transform: uppercase; line-height: 1; }

/* ===== WOOCOMMERCE PRODUCT LOOP (scoped) ===== */
.dths-page .woocommerce ul.products { display: grid !important; grid-template-columns: repeat(4,1fr) !important; gap: 18px !important; padding: 0 !important; margin: 0 !important; list-style: none !important; }
.dths-page .woocommerce ul.products li.product { border-radius: 22px !important; background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022)) !important; border: 1px solid var(--dths-line) !important; overflow: hidden !important; transition: transform .28s, box-shadow .28s, border-color .28s !important; }
.dths-page .woocommerce ul.products li.product:hover { transform: translateY(-5px) !important; box-shadow: 0 28px 60px rgba(var(--dths-purple-bright-rgb),.22) !important; border-color: rgba(var(--dths-purple-bright-rgb),.35) !important; }
.dths-page .woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: 'Anton', sans-serif !important; font-size: 20px !important; text-transform: uppercase !important; color: #fff !important; }
.dths-page .woocommerce ul.products li.product .price { color: var(--dths-silver) !important; font-weight: 800 !important; font-size: 18px !important; }
.dths-page .woocommerce ul.products li.product .button { width: 100% !important; margin-top: 10px !important; background: linear-gradient(135deg, var(--dths-purple-bright), var(--dths-purple-mid)) !important; color: #fff !important; border: 0 !important; border-radius: 10px !important; font-family: 'Outfit', sans-serif !important; font-size: 11px !important; font-weight: 800 !important; letter-spacing: .16em !important; text-transform: uppercase !important; }

/* ===== FILTER PILLS ===== */
.dths-page .dths-filter-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.dths-page .dths-pill { padding: 8px 18px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; cursor: pointer; border: 0; transition: all .18s; }
.dths-page .dths-pill-active { background: linear-gradient(135deg, var(--dths-purple-bright), var(--dths-purple-mid)); color: #fff; }
.dths-page .dths-pill-inactive { background: rgba(255,255,255,.05); border: 1px solid var(--dths-line); color: rgba(255,255,255,.6); }
.dths-page .dths-pill-inactive:hover { color: #fff; border-color: rgba(255,255,255,.25); }

/* ===== COLLECTION HERO ===== */
.dths-page .dths-coll-hero { position: relative; overflow: hidden; background: radial-gradient(circle at 50% 0%, rgba(var(--dths-purple-bright-rgb),.38), transparent 50%), var(--dths-black); padding: 72px 0 48px; }
.dths-page .dths-coll-hero-bg { position: absolute; inset: 0; }
.dths-page .dths-coll-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .25; }
.dths-page .dths-coll-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,9,11,.3), rgba(9,9,11,.8) 80%); }
.dths-page .dths-coll-hero-inner { position: relative; z-index: 2; }
.dths-page .dths-coll-hero-title { font-family: 'Anton', sans-serif; font-size: clamp(56px,10vw,120px); line-height: .88; color: #fff; text-transform: uppercase; margin-top: 18px; }
.dths-page .dths-coll-hero-desc { color: var(--dths-muted); margin-top: 16px; font-size: 16px; max-width: 500px; line-height: 1.65; }

/* ===== VALUE PROPS ===== */
.dths-page .dths-vp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.dths-page .dths-vp-card { padding: 36px 32px; }
.dths-page .dths-vp-icon { width: 52px; height: 52px; border-radius: 18px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(var(--dths-purple-bright-rgb),.22), rgba(var(--dths-purple-rgb),.22)); border: 1px solid rgba(var(--dths-purple-bright-rgb),.32); font-size: 22px; margin-bottom: 22px; }
.dths-page .dths-vp-title { font-family: 'Anton', sans-serif; font-size: 26px; color: #fff; text-transform: uppercase; margin-bottom: 10px; }
.dths-page .dths-vp-text { font-size: 14px; color: var(--dths-muted); line-height: 1.7; }

/* ===== PROGRAMS PAGE ===== */
.dths-page .dths-prog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.dths-page .dths-prog-card { border-radius: 20px; border: 1px solid var(--dths-line); background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022)); text-decoration: none !important; display: block; transition: transform .25s, border-color .25s, box-shadow .25s; padding: 24px; position: relative; cursor: pointer; }
.dths-page .dths-prog-card:hover { transform: translateY(-4px); border-color: rgba(var(--dths-purple-bright-rgb),.35); box-shadow: 0 20px 50px rgba(var(--dths-purple-bright-rgb),.18); color: inherit; }
.dths-page .dths-prog-live { border-color: rgba(16,185,129,.25) !important; }
.dths-page .dths-prog-status { position: absolute; top: 20px; right: 20px; font-size: 9px; letter-spacing: .2em; font-weight: 800; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; }
.dths-page .dths-status-live { background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.38); color: #6ee7b7; }
.dths-page .dths-status-soon { background: rgba(255,255,255,.06); border: 1px solid var(--dths-line); color: rgba(255,255,255,.5); }
.dths-page .dths-prog-name { font-family: 'Anton', sans-serif; font-size: 24px; color: #fff; text-transform: uppercase; margin-bottom: 8px; }
.dths-page .dths-prog-sub { font-size: 13px; color: var(--dths-muted); line-height: 1.55; }
.dths-page .dths-prog-arrow { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--dths-purple-bright); margin-top: 16px; transition: gap .18s; }
.dths-page .dths-prog-card:hover .dths-prog-arrow { gap: 10px; }

/* ===== LIVE BADGE ===== */
.dths-page .dths-live-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; letter-spacing: .2em; font-weight: 800; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.4); color: #6ee7b7; }
.dths-page .dths-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #10b981; animation: dths-pulse 2s infinite; }
@keyframes dths-pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ===== DROPS ===== */
.dths-page .dths-drops-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.dths-page .dths-drop-item { border-radius: 22px; border: 1px solid var(--dths-line); background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022)); position: relative; padding: 36px; transition: transform .25s, border-color .25s; }
.dths-page .dths-drop-item:hover { transform: translateY(-4px); border-color: rgba(var(--dths-purple-bright-rgb),.35); }
.dths-page .dths-drop-item-glow { position: absolute; top: 0; right: 0; width: 60%; height: 60%; background: radial-gradient(circle at 80% 10%, rgba(var(--dths-purple-bright-rgb),.22), transparent 60%); pointer-events: none; }
.dths-page .dths-drop-item-date { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.42); margin-bottom: 14px; }
.dths-page .dths-drop-item-name { font-family: 'Anton', sans-serif; font-size: clamp(32px,4vw,48px); color: #fff; text-transform: uppercase; line-height: .92; }
.dths-page .dths-drop-item-sub { font-size: 14px; color: var(--dths-muted); margin-top: 10px; line-height: 1.6; }

/* ===== FINAL CTA ===== */
.dths-page .dths-final-card { position: relative; border-radius: 32px; overflow: hidden; padding: 96px 64px; text-align: center; background: linear-gradient(180deg, rgba(17,17,17,.4), rgba(var(--dths-purple-rgb),.38), rgba(17,17,17,.5)); border: 1px solid var(--dths-line); }
.dths-page .dths-final-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 50% 0%, rgba(var(--dths-purple-bright-rgb),.48), transparent 62%); }
.dths-page .dths-final-body { position: relative; z-index: 2; }
.dths-page .dths-final-h2 { font-family: 'Anton', sans-serif; font-size: clamp(52px,9vw,128px); line-height: .86; color: #fff; text-transform: uppercase; margin-top: 16px; }
.dths-page .dths-final-sub { font-size: 16px; color: var(--dths-muted); max-width: 480px; margin: 20px auto 0; line-height: 1.7; }
.dths-page .dths-final-actions { margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== TOAST ===== */
.dths-toast { position: fixed; bottom: 28px; right: 28px; z-index: 9999; padding: 14px 22px; border-radius: 14px; background: linear-gradient(135deg, rgba(var(--dths-purple-bright-rgb),.92), rgba(var(--dths-purple-rgb),.92)); color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border: 1px solid rgba(var(--dths-purple-bright-rgb),.5); box-shadow: 0 16px 40px rgba(0,0,0,.4); backdrop-filter: blur(16px); opacity: 0; transform: translateY(12px); transition: opacity .3s, transform .3s; pointer-events: none; }
.dths-toast.visible { opacity: 1; transform: translateY(0); }

/* ===== FORM INPUTS ===== */
.dths-page .dths-input { width: 100%; background: rgba(255,255,255,.04); border: 1px solid var(--dths-line); border-radius: 12px; color: #fff; padding: 13px 16px; font-family: 'Outfit', sans-serif; font-size: 14px; transition: border .18s, background .18s; outline: none; }
.dths-page .dths-input:focus { border-color: rgba(var(--dths-purple-bright-rgb),.55); background: rgba(var(--dths-purple-bright-rgb),.06); }
.dths-page .dths-input::placeholder { color: rgba(255,255,255,.3); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .dths-page .woocommerce ul.products { grid-template-columns: repeat(3,1fr) !important; }
}
@media (max-width: 900px) {
  .dths-page .dths-stats-grid { grid-template-columns: repeat(2,1fr); }
  .dths-page .dths-drop-grid { grid-template-columns: 1fr; }
  .dths-page .dths-cd-wrap { align-items: flex-start; }
  .dths-page .dths-eco-grid { grid-template-columns: repeat(3,1fr); }
  .dths-page .dths-prog-grid { grid-template-columns: repeat(2,1fr); }
  .dths-page .dths-drop-card { padding: 36px 28px; }
}
@media (max-width: 767px) {
  .dths-page .dths-shell { padding: 0 16px; }
  .dths-page .dths-section { padding: 56px 0; }
  .dths-page .dths-hero { padding: 80px 0 100px; min-height: auto; }
  .dths-page .dths-hero-h1 { font-size: 48px; }
  .dths-page .dths-collections-grid { grid-template-columns: 1fr; }
  .dths-page .dths-vp-grid { grid-template-columns: 1fr; }
  .dths-page .dths-drops-grid { grid-template-columns: 1fr; }
  .dths-page .dths-final-card { padding: 56px 28px; }
  .dths-page .dths-prog-grid { grid-template-columns: 1fr; }
  .dths-page .dths-section-split { flex-direction: column; align-items: flex-start; }
  .dths-page .woocommerce ul.products { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 550px) {
  .dths-page .dths-eco-grid { grid-template-columns: repeat(2,1fr); }
  .dths-page .dths-cd-units { gap: 6px; }
  .dths-page .dths-cu { min-width: 58px; padding: 10px 8px; }
  .dths-page .dths-cn { font-size: 30px; }
}
@media (max-width: 400px) {
  .dths-page .dths-shell { padding: 0 14px; }
  .dths-page .dths-hero-h1 { font-size: 40px; }
}

/* ===== DUTCHTOWN SUB-NAV ===== */
.dths-page .dths-subnav {
  background: rgba(9,9,11,.96);
  border-bottom: 1px solid var(--dths-line);
  position: sticky;
  top: 0;
  z-index: 150;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.dths-page .dths-subnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 56px;
}
.dths-page .dths-subnav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  flex-shrink: 0;
}
.dths-page .dths-subnav-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(var(--dths-purple-rgb),.95), #16161c 54%, rgba(var(--dths-silver-rgb),.5));
  border: 1px solid rgba(var(--dths-purple-bright-rgb),.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 11px;
  color: #fff;
  flex-shrink: 0;
}
.dths-page .dths-subnav-title {
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.dths-page .dths-subnav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.dths-page .dths-subnav-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-decoration: none !important;
  padding: 6px 14px;
  border-radius: 8px;
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.dths-page .dths-subnav-link:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
}
.dths-page .dths-subnav-active {
  color: #fff !important;
  background: rgba(var(--dths-purple-bright-rgb),.18) !important;
  border: 1px solid rgba(var(--dths-purple-bright-rgb),.3);
}
.dths-page .dths-subnav-cart {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  text-decoration: none !important;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid var(--dths-line);
  transition: all .18s;
  white-space: nowrap;
  flex-shrink: 0;
}
.dths-page .dths-subnav-cart:hover {
  color: #fff;
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.05);
}

/* Mobile sub-nav */
@media (max-width: 767px) {
  .dths-page .dths-subnav-links {
    display: none;
  }
  .dths-page .dths-subnav-inner {
    justify-content: space-between;
  }
}

/* =========================================================
   OPTION B — STANDALONE SCHOOL PAGES
   Hide TSA header/footer, show branded Dutchtown chrome
========================================================= */

/* Hide TSA Flatsome header + footer on all Dutchtown pages */
.dths-page ~ #header,
body.dths-active #header,
body.dths-active .header-wrapper,
body.dths-active #masthead,
body.dths-active #top-bar,
body.dths-active .header-top,
body.dths-active .header-main,
body.dths-active .header-bottom,
body.dths-active #wide-nav,
body.dths-active #footer,
body.dths-active .footer-wrapper,
body.dths-active .absolute-footer,
body.dths-active #footer-widgets,
body.dths-active .footer-widgets { display: none !important; }

/* Remove any top margin/padding Flatsome adds for header height */
body.dths-active #wrapper,
body.dths-active #main,
body.dths-active .page-wrapper,
body.dths-active .content-area {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ===== DUTCHTOWN HEADER ===== */
.dths-header {
  position: sticky;
  top: 0;
  z-index: 500;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(9,9,11,.92);
  border-bottom: 1px solid var(--dths-line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background .3s ease, box-shadow .3s ease;
}
.dths-header.scrolled {
  background: rgba(9,9,11,.98);
  box-shadow: 0 4px 32px rgba(0,0,0,.4);
}
.dths-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

/* Logo */
.dths-header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  flex-shrink: 0;
}
.dths-header-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(var(--dths-purple-rgb),.95), #16161c 54%, rgba(var(--dths-silver-rgb),.48));
  border: 1px solid rgba(var(--dths-purple-bright-rgb),.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 12px;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.dths-header-school {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}
.dths-header-sub {
  display: block;
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  margin-top: 3px;
  line-height: 1;
}

/* Desktop nav */
.dths-header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.dths-header-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55) !important;
  text-decoration: none !important;
  padding: 7px 14px;
  border-radius: 8px;
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.dths-header-link:hover { color: #fff !important; background: rgba(255,255,255,.06); }
.dths-header-link.is-active {
  color: #fff !important;
  background: rgba(var(--dths-purple-bright-rgb),.16);
  border: 1px solid rgba(var(--dths-purple-bright-rgb),.28);
}

/* Header actions */
.dths-header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.dths-header-signin {
  padding: 8px 16px;
  border-radius: 10px;
  background: rgba(var(--dths-purple-bright-rgb),.2);
  border: 1px solid rgba(var(--dths-purple-bright-rgb),.35);
  color: #eadcff !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: background .18s;
  white-space: nowrap;
}
.dths-header-signin:hover { background: rgba(var(--dths-purple-bright-rgb),.35); }

.dths-header-account {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 10px;
  border: 1px solid var(--dths-line);
  color: rgba(255,255,255,.65) !important;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all .18s;
}
.dths-header-account:hover { color: #fff !important; background: rgba(255,255,255,.05); }
.dths-header-account-name { max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.dths-header-cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--dths-line);
  color: rgba(255,255,255,.75) !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all .18s;
  white-space: nowrap;
}
.dths-header-cart:hover { color: #fff !important; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.08); }
.dths-header-cart-label { font-size: 11px; letter-spacing: .16em; }
.dths-header-cart-count {
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.dths-header-cart-count.has-items {
  background: linear-gradient(135deg, var(--dths-purple-bright), var(--dths-purple-mid));
  color: #fff;
}

/* Hamburger */
.dths-header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--dths-line);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
}
.dths-header-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  transition: all .25s ease;
}
.dths-header-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.dths-header-hamburger.is-open span:nth-child(2) { opacity: 0; }
.dths-header-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== MOBILE NAV OVERLAY ===== */
.dths-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(9,9,11,.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.16,1,.3,1);
  overflow-y: auto;
}
.dths-mobile-nav.is-open { transform: translateX(0); }
.dths-mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 590;
  background: rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.dths-mobile-nav-backdrop.is-visible { opacity: 1; pointer-events: all; }

.dths-mobile-nav-inner { display: flex; flex-direction: column; height: 100%; padding: 0 24px 32px; }
.dths-mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--dths-line);
  margin: 0 -24px;
  padding: 0 24px;
}
.dths-mobile-nav-close {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--dths-line);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s;
}
.dths-mobile-nav-close:hover { background: rgba(255,255,255,.14); }

.dths-mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 0;
  flex: 1;
}
.dths-mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 14px;
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65) !important;
  text-decoration: none !important;
  transition: background .18s, color .18s;
  letter-spacing: .01em;
}
.dths-mobile-nav-link:hover,
.dths-mobile-nav-link.is-active {
  background: rgba(var(--dths-purple-bright-rgb),.14);
  color: #fff !important;
}
.dths-mobile-nav-link.is-active { border: 1px solid rgba(var(--dths-purple-bright-rgb),.3); }
.dths-mobile-nav-arrow { font-size: 16px; color: rgba(255,255,255,.3); }

.dths-mobile-nav-footer { flex-shrink: 0; padding-top: 16px; border-top: 1px solid var(--dths-line); }
.dths-mobile-nav-tsa {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
}
.dths-mobile-nav-tsa a {
  color: rgba(255,255,255,.35) !important;
  text-decoration: none !important;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  transition: color .18s;
}
.dths-mobile-nav-tsa a:hover { color: rgba(255,255,255,.65) !important; }

/* ===== DUTCHTOWN FOOTER ===== */
.dths-footer {
  background: #09090b;
  border-top: 1px solid var(--dths-line);
  margin-top: 80px;
}
.dths-footer-inner { padding: 72px 0 0; }

.dths-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.dths-footer-logo { display: flex; align-items: center; gap: 12px; text-decoration: none !important; margin-bottom: 18px; }
.dths-footer-desc { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.75; max-width: 280px; }
.dths-footer-brand-colors { display: flex; align-items: center; gap: 8px; margin-top: 18px; }
.dths-footer-swatch { display: inline-block; width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; }
.dths-footer-swatch-label { font-size: 10px; letter-spacing: .16em; color: rgba(255,255,255,.3); text-transform: uppercase; }

.dths-footer-col-heading {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}
.dths-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.dths-footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.55) !important;
  text-decoration: none !important;
  transition: color .18s;
}
.dths-footer-col a:hover { color: #fff !important; }

.dths-footer-divider { border: 0; border-top: 1px solid var(--dths-line); }

.dths-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0 32px;
}
.dths-footer-copy { font-size: 12px; color: rgba(255,255,255,.3); }
.dths-footer-powered {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
}
.dths-footer-tsa-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.55) !important;
  text-decoration: none !important;
  font-weight: 700;
  letter-spacing: .08em;
  transition: color .18s;
}
.dths-footer-tsa-link:hover { color: #fff !important; }
.dths-footer-legal { display: flex; gap: 20px; }
.dths-footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,.32) !important;
  text-decoration: none !important;
  transition: color .18s;
}
.dths-footer-legal a:hover { color: rgba(255,255,255,.7) !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .dths-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .dths-footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .dths-header-nav { display: none; }
  .dths-header-signin { display: none; }
  .dths-header-hamburger { display: flex; }
}

@media (max-width: 600px) {
  .dths-header-cart-label { display: none; }
  .dths-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .dths-footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .dths-footer-grid { grid-template-columns: 1fr; }
}

/* ===== SHARED PROGRAM / COLLECTION CARD (consistent size site-wide) ===== */
.tsa-prog-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:20px; }
.tsa-prog-card { display:flex; flex-direction:column; background:var(--dths-charcoal); border:1px solid var(--dths-line); border-radius:16px; overflow:hidden; text-decoration:none; transition:transform .15s ease, border-color .15s ease; }
.tsa-prog-card:hover { transform:translateY(-3px); border-color:rgba(var(--dths-purple-bright-rgb),.55); }
.tsa-prog-card__visual { position:relative; aspect-ratio:1/1; background:#0d0d10; display:flex; align-items:center; justify-content:center; padding:18px; box-sizing:border-box; }
.tsa-prog-card__visual img { max-width:100%; max-height:100%; object-fit:contain; }
.tsa-prog-card__noimg { font-family:'Anton',sans-serif; font-size:40px; color:rgba(var(--dths-purple-bright-rgb),.75); }
.tsa-prog-card__arrow { position:absolute; top:12px; right:12px; width:30px; height:30px; border-radius:50%; background:rgba(0,0,0,.5); color:#fff; display:flex; align-items:center; justify-content:center; font-size:15px; opacity:0; transition:opacity .15s; }
.tsa-prog-card:hover .tsa-prog-card__arrow { opacity:1; }
.tsa-prog-card__body { padding:13px 15px 15px; border-top:1px solid var(--dths-line); }
.tsa-prog-card__count { font-size:10px; letter-spacing:.16em; text-transform:uppercase; color:var(--dths-muted); }
.tsa-prog-card__name { font-family:'Anton',sans-serif; text-transform:uppercase; font-size:19px; line-height:1.05; color:#fff; margin-top:3px; letter-spacing:.01em; }
@media(max-width:520px){ .tsa-prog-grid{ grid-template-columns:repeat(2,1fr); gap:12px; } .tsa-prog-card__name{ font-size:16px; } }
