/*
Theme Name: GeneratePress Child – Pure THC UK
Template: generatepress
Version: 1.0.0
Description: Child theme for Pure THC UK educational site
*/

/* ============ DESIGN TOKENS ============ */
:root {
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --lime: #c8ff00;
  --lime-deep: #a8d600;
  --acid: #00ff85;
  --hot: #ff2d75;
  --hot-deep: #d61e5e;
  --cream: #fff8eb;
  --butter: #ffe88a;
  --orange: #ff6b1a;
  --purple: #6b3fa0;
  --sky: #4ec5ff;
  --line: rgba(10, 10, 10, 0.12);
}

/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Archivo", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============ STRIP ALL GP CONTAINERS ============ */
.site-content,
.site-content > .grid-container,
.content-area,
.site-main,
.entry,
.hentry,
.entry-content,
.inside-article,
.post-content,
.page-content {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  display: block !important;
}

/* GP grid container full bleed */
.grid-container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Hide GP page title on full-width pages */
.entry-header,
.page-hero { display: none !important; }

/* ============ TYPOGRAPHY ============ */
.display {
  font-family: "Archivo Black", "Archivo", sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.85;
  text-transform: uppercase;
}

.scrawl {
  font-family: "Caveat", cursive;
  font-weight: 700;
}

/* ============ HEADER ============ */
.site-header {
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow 0.2s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 0 var(--ink);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* ---- Logo ---- */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-badge {
  background: var(--ink);
  color: var(--lime);
  font-family: "Archivo Black", sans-serif;
  font-size: 1.1rem;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  transform: rotate(-2deg);
  display: inline-block;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.logo-name {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.logo-uk {
  background: var(--hot);
  color: var(--cream);
  font-family: "Archivo Black", sans-serif;
  font-size: 0.65rem;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  transform: rotate(2deg);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Mobile logo in overlay */
.mobile-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

/* ---- Primary Nav ---- */
.primary-nav { flex: 1; }

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.nav-menu > .menu-item > a {
  color: var(--ink);
  text-decoration: none;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-menu > .menu-item > a:hover,
.nav-menu > .menu-item:focus-within > a {
  background: var(--ink);
  color: var(--lime);
}

.nav-menu > .menu-item.current-menu-item > a,
.nav-menu > .menu-item.current-menu-parent > a {
  background: var(--lime);
  color: var(--ink);
}

.nav-arrow {
  font-size: 0.7rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.nav-menu > .menu-item:hover .nav-arrow,
.nav-menu > .menu-item:focus-within .nav-arrow {
  transform: rotate(180deg);
}

/* ============ MEGA MENU ============ */
.nav-menu .has-mega { position: static; }

.mega-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  /* padding-top bridges the gap so mouse doesn't lose hover crossing it */
  padding-top: 14px;
  transform: translateX(-50%) translateY(-6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* small delay on hide so accidental micro-movements don't close it */
  transition: opacity 0.18s ease, transform 0.18s ease,
              visibility 0s linear 0.18s;
  z-index: 400;
}

/* Anchor mega panel to header width */
.primary-nav { position: static; }
.site-header { position: sticky; top: 0; z-index: 200; }

/* Opened by JS — never by CSS hover alone */
.nav-menu .has-mega.mega-open > .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease,
              visibility 0s linear 0s;
}

/* ---- SHOP MEGA PANEL ---- */
.mega-shop {
  width: 860px;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 8px 8px 0 var(--ink);
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 1.25rem;
}

/* Top nib arrow — sits inside the padding-top bridge */
.mega-panel::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-bottom-color: var(--ink);
}

.mega-shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Category cards */
.mega-cat-card {
  background: var(--card-bg, var(--lime));
  color: var(--card-color, var(--ink));
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  padding: 1.1rem 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
  overflow: hidden;
}

.mega-cat-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 4px 4px 0 var(--ink);
}

.mega-cat-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.12);
  border-radius: 10px;
  padding: 6px;
}

.mega-cat-icon svg {
  width: 100%;
  height: 100%;
  color: var(--card-color, var(--ink));
}

.mega-cat-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mega-cat-name {
  font-family: "Archivo Black", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
}

.mega-cat-desc {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.7;
  line-height: 1.2;
}

.mega-cat-arrow {
  font-family: "Archivo Black", sans-serif;
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.15s, transform 0.15s;
}

.mega-cat-card:hover .mega-cat-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Shop promo column */
.mega-shop-promo {
  background: var(--ink);
  color: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.mega-promo-tag {
  background: var(--hot);
  color: var(--cream);
  font-family: "Archivo Black", sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.mega-promo-heading {
  font-family: "Archivo Black", sans-serif;
  font-size: 2rem;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.6rem;
}

.mega-promo-sub {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.7;
  line-height: 1.4;
  margin-bottom: 1.25rem;
  flex: 1;
}

.mega-promo-sub strong { color: var(--lime); opacity: 1; }

.mega-promo-btn {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  font-family: "Archivo Black", sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid var(--lime);
  transition: background 0.15s, color 0.15s;
  margin-bottom: 0.6rem;
  white-space: nowrap;
}

.mega-promo-btn:hover { background: var(--hot); border-color: var(--hot); color: var(--cream); }

.mega-promo-link {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cream);
  opacity: 0.5;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: opacity 0.15s;
  display: block;
}
.mega-promo-link:hover { opacity: 1; }

/* ---- SIMPLE PANELS (About, Trade) ---- */
.mega-simple {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 0.75rem;
  box-shadow: 8px 8px 0 var(--ink);
  min-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mega-trade { min-width: 380px; }

.mega-link-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s;
  position: relative;
}

.mega-link-row:hover { background: var(--butter); }

.mega-link-row--lg { padding: 1.1rem 0.9rem; }

.mega-link-icon {
  font-size: 1.4rem;
  width: 36px;
  text-align: center;
  flex-shrink: 0;
}

.mega-link-row div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mega-link-label {
  font-family: "Archivo Black", sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
}

.mega-link-desc {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.6;
  line-height: 1.3;
}

.mega-link-go {
  font-family: "Archivo Black", sans-serif;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.15s, transform 0.15s;
  flex-shrink: 0;
}

.mega-link-row:hover .mega-link-go {
  opacity: 1;
  transform: translateX(0);
}

.mega-link-badge {
  background: var(--lime);
  color: var(--ink);
  font-family: "Archivo Black", sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Divider between link rows */
.mega-link-row + .mega-link-row {
  border-top: 1.5px solid var(--line);
}

/* Overlay backdrop when mega is open */
.mega-backdrop {
  position: fixed;
  inset: 0;
  top: var(--header-h, 80px);
  background: rgba(10,10,10,0.35);
  backdrop-filter: blur(2px);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  pointer-events: none;
}
.mega-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ---- Header Actions ---- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.icon-btn {
  background: transparent;
  border: 2.5px solid var(--ink);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}

.icon-btn svg { width: 17px; height: 17px; }

.icon-btn:hover {
  background: var(--ink);
  color: var(--lime);
}

.icon-btn:hover svg { stroke: var(--lime); }

.cart-btn {
  background: var(--ink);
  color: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.cart-btn:hover {
  background: var(--hot);
  border-color: var(--hot);
  color: var(--cream);
}

.cart-badge {
  background: var(--hot);
  color: var(--cream);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* ---- CTA Button in nav ---- */
.nav-cta-btn {
  background: var(--lime);
  color: var(--ink);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--ink);
  transform: translate(-1.5px, -1.5px);
  transition: all 0.15s ease;
  white-space: nowrap;
}

.nav-cta-btn:hover {
  background: var(--hot);
  border-color: var(--hot);
  color: var(--cream);
  box-shadow: 0 0 0 var(--ink);
  transform: translate(0, 0);
}

/* ---- Inline search pill ---- */
.header-search-pill {
  position: relative;
  display: flex;
  align-items: center;
}

.search-pill-toggle {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.search-pill-toggle svg { flex-shrink: 0; }

.search-pill-toggle:hover,
.header-search-pill.open .search-pill-toggle {
  background: var(--ink);
  color: var(--lime);
}

.header-search-pill.open .search-pill-toggle svg {
  stroke: var(--lime);
}

/* Expanded search input */
.search-pill-input {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 0.35rem 0.35rem 0.35rem 1rem;
  width: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: width 0.25s ease, opacity 0.2s ease;
  box-shadow: 4px 4px 0 var(--ink);
  z-index: 100;
}

.header-search-pill.open .search-pill-input {
  width: 280px;
  opacity: 1;
  pointer-events: all;
}

.search-pill-input form {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
}

.search-pill-input input[type="search"] {
  border: none;
  background: transparent;
  font-family: "Archivo", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  outline: none;
  flex: 1;
  min-width: 0;
}

.search-pill-input input[type="search"]::placeholder { opacity: 0.5; }

.search-pill-input button[type="submit"] {
  background: var(--ink);
  color: var(--lime);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.search-pill-close {
  background: none;
  border: none;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--ink);
  opacity: 0.5;
  padding: 0.2rem 0.3rem;
  line-height: 1;
  flex-shrink: 0;
}

.search-pill-close:hover { opacity: 1; }

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: 2.5px solid var(--ink);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---- Mobile overlay ---- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 90vw);
  background: var(--cream);
  border-left: 3px solid var(--ink);
  padding: 2rem 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-overlay.open .mobile-nav-inner {
  transform: translateX(0);
}

.mobile-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--ink);
  color: var(--lime);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu .menu-item {
  position: relative;
}

.mobile-menu .menu-item > a {
  display: block;
  padding: 0.85rem 1rem;
  color: var(--ink);
  text-decoration: none;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  border-radius: 10px;
  transition: background 0.15s;
}

.mobile-menu .menu-item > a:hover,
.mobile-menu .menu-item.current-menu-item > a {
  background: var(--lime);
}

.sub-toggle {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--lime);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.sub-toggle.rotated { transform: translateY(-50%) rotate(180deg); }

.mobile-menu .sub-menu {
  list-style: none;
  padding: 0 0 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu .sub-menu.open { max-height: 600px; }

.mobile-menu .sub-menu .menu-item a {
  display: block;
  padding: 0.6rem 0.75rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 8px;
  opacity: 0.8;
  transition: opacity 0.15s, background 0.15s;
}

.mobile-menu .sub-menu .menu-item a:hover { opacity: 1; background: var(--butter); }

/* "All Products →" link at bottom of shop sub-menu */
.mobile-menu .sub-menu .menu-item-all a {
  color: var(--ink);
  font-family: "Archivo Black", sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  opacity: 1;
  margin-top: 0.35rem;
  border-top: 1.5px solid rgba(10,10,10,0.12);
  padding-top: 0.75rem;
}

.mobile-actions {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--ink);
}

/* Scrolled header shadow */
.site-header.scrolled { box-shadow: 0 3px 0 var(--ink); }

/* ============ TOP TICKER BAR ============ */
.topbar {
  background: var(--ink);
  color: var(--lime);
  padding: 0.65rem 1.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  overflow: hidden;
}

.topbar .marquee-line {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.topbar .marquee-line span::before {
  content: "★";
  margin-right: 1rem;
  color: var(--hot);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ NAVIGATION ============ */
.site-header,
nav.main-nav {
  background: var(--cream) !important;
  border-bottom: 3px solid var(--ink) !important;
}

.main-navigation ul li a {
  color: var(--ink) !important;
  font-family: "Archivo", sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  padding: 0.3rem 0.6rem !important;
  border-radius: 6px !important;
  transition: all 0.2s ease !important;
}

.main-navigation ul li a:hover {
  background: var(--ink) !important;
  color: var(--lime) !important;
}

.site-logo,
.site-title {
  font-family: "Archivo Black", sans-serif !important;
  font-size: 1.4rem !important;
  letter-spacing: -0.02em !important;
  text-transform: uppercase !important;
}

/* ============ HERO ============ */
.hero {
  background: var(--lime);
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
}

.hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(3.5rem, 9vw, 9rem);
  line-height: 0.82;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--ink);
  text-shadow: 6px 6px 0 var(--cream);
}

.hero h1 .stroke {
  -webkit-text-stroke: 3px var(--ink);
  color: transparent;
  text-shadow: none;
}

.hero h1 .punch {
  background: var(--hot);
  color: var(--cream);
  display: inline-block;
  padding: 0 0.3em;
  margin: 0.1em 0;
  transform: rotate(-2deg);
  text-shadow: none;
}

.hero-tagline {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  max-width: 480px;
  line-height: 1.5;
}

.hero-tagline .scrawl {
  font-size: 1.6rem;
  color: var(--hot-deep);
  display: inline-block;
  transform: rotate(-2deg);
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
}

.trust-item .check {
  background: var(--ink);
  color: var(--lime);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* ── Full-bleed background image ── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Gradient overlay — keeps left-side text readable over the photo */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(200,255,0,0.92) 0%,
    rgba(200,255,0,0.80) 40%,
    rgba(200,255,0,0.40) 65%,
    rgba(200,255,0,0.10) 100%
  );
}

/* Text content sits above the background */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
  height: 580px;
  overflow: hidden;
  z-index: 2;
}

.hero-product {
  position: absolute;
  width: 380px;
  height: 480px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-6deg);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) rotate(-6deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotate(-6deg) translateY(-15px); }
}

.confetti {
  position: absolute;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.4rem;
  background: var(--ink);
  color: var(--lime);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.confetti.pink { background: var(--hot); color: var(--cream); }
.confetti.cream { background: var(--cream); color: var(--ink); }
.confetti.acid { background: var(--acid); color: var(--ink); }

.confetti.c1 { top: 10%; right: 8%; transform: rotate(8deg); animation: bounce 4s ease-in-out infinite; }
.confetti.c2 { bottom: 18%; left: 5%; transform: rotate(-6deg); animation: bounce 5s ease-in-out infinite 1s; }
.confetti.c3 { top: 40%; right: -3%; transform: rotate(4deg); animation: bounce 4.5s ease-in-out infinite 0.5s; }
.confetti.c4 { bottom: 8%; right: 15%; transform: rotate(-3deg); animation: bounce 5.5s ease-in-out infinite 1.5s; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-squiggle {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
}

/* ============ BUTTONS ============ */
.btn-chunk {
  background: var(--ink);
  color: var(--lime);
  border: none;
  padding: 1.2rem 2rem;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 5px 5px 0 var(--ink);
  transform: translate(-2.5px, -2.5px);
  transition: all 0.15s ease;
}

.btn-chunk:hover {
  box-shadow: 0px 0px 0 var(--ink);
  transform: translate(0, 0);
  background: var(--hot);
  color: var(--cream);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2.5px solid var(--ink);
  padding: 1.05rem 1.8rem;
  font-family: "Archivo Black", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--lime);
}

/* ============ PRESS STRIP ============ */
.press-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 1.5rem 0;
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
}

.press-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  flex-wrap: wrap;
}

.press-label {
  font-family: "Archivo Black", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--lime);
  white-space: nowrap;
}

.press-logos {
  display: flex;
  gap: 3rem;
  flex: 1;
  align-items: center;
  flex-wrap: wrap;
}

.press-logo {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--cream);
  opacity: 0.85;
  font-style: italic;
  white-space: nowrap;
}

/* ============ SECTION SHARED STYLES ============ */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.section-title .scrawl {
  font-family: "Caveat", cursive;
  font-size: 0.7em;
  color: var(--hot);
  transform: rotate(-3deg);
  display: inline-block;
  margin-left: 0.3em;
}

.section-title .highlight {
  background: var(--lime);
  padding: 0 0.2em;
  display: inline-block;
  transform: rotate(-1deg);
}

.section-link {
  font-family: "Archivo Black", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 3px solid var(--ink);
  padding-bottom: 2px;
}

/* ============ CATEGORIES ============ */
.categories {
  padding: 5rem 2rem 3rem;
  max-width: 1440px;
  margin: 0 auto;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cat-card {
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 2rem 1.5rem 1.5rem;
  background: var(--cream);
  text-decoration: none;
  color: var(--ink);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cat-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 6px 6px 0 var(--ink);
}

.cat-card:nth-child(1) { background: #00ff85; color: var(--ink); }
.cat-card:nth-child(2) { background: var(--lime); color: var(--ink); }
.cat-card:nth-child(3) { background: var(--hot); color: var(--cream); }
.cat-card:nth-child(3) .cat-cta { background: var(--cream); color: var(--ink); }
.cat-card:nth-child(3) .cat-count { background: rgba(255,255,255,0.2); color: var(--cream); }
.cat-card:nth-child(4) { background: #ff9500; color: var(--ink); }
.cat-card:nth-child(5) { background: #ffe566; color: var(--ink); }
.cat-card:nth-child(6) { background: #4ec5ff; color: var(--ink); }

.cat-image {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.cat-image svg { width: 70%; height: 100%; }

.cat-card h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.cat-card p {
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 0.75rem;
  flex: 1;
  opacity: 0.8;
}

.cat-count {
  font-family: "Archivo Black", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(10,10,10,0.12);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.cat-cta {
  background: var(--ink);
  color: var(--lime);
  padding: 0.75rem 1.4rem;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  border-radius: 999px;
  display: inline-block;
  transition: background 0.15s;
}
.cat-card:hover .cat-cta { background: var(--hot); color: var(--cream); }

/* ============ BESTSELLERS / PRODUCTS ============ */
.bestsellers {
  padding: 5rem 2rem;
  max-width: 1440px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 1.5rem;
  position: relative;
  transition: all 0.2s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--ink);
}

.badge-bestseller {
  position: absolute;
  top: -10px;
  left: 1.5rem;
  background: var(--ink);
  color: var(--lime);
  padding: 0.4rem 0.8rem;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 2;
}

.badge-sale {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--hot);
  color: var(--cream);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.85rem;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
  z-index: 2;
}

.product-img-wrap {
  background: #ffffff;
  border-radius: 16px;
  aspect-ratio: 1 / 1;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--ink);
  position: relative;
}

/* Coloured accent dot in corner — keeps brand feel without clashing with photos */
.product-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 40px; height: 40px;
  background: var(--lime);
  border-top-left-radius: 12px;
  opacity: 0.35;
  pointer-events: none;
}
.product-card:nth-child(2) .product-img-wrap::after { background: var(--hot); }
.product-card:nth-child(3) .product-img-wrap::after { background: var(--sky, #4ec5ff); }
.product-card:nth-child(4) .product-img-wrap::after { background: var(--acid, #c8ff00); }

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  display: block;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-img-wrap svg { width: 70%; height: 90%; }

.product-stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.stars { color: var(--orange); letter-spacing: 0.1em; font-size: 0.9rem; }
.review-count { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }

.product-card h4 {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.1rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price-now {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.4rem;
  color: var(--ink);
}

.price-was {
  font-size: 1rem;
  color: var(--ink-soft);
  text-decoration: line-through;
  opacity: 0.6;
}

.product-cta {
  width: 100%;
  background: var(--ink);
  color: var(--lime);
  border: none;
  padding: 1rem;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.product-cta:hover {
  background: var(--hot);
  color: var(--cream);
}

/* ============ BIG BANNER ============ */
.big-banner {
  background: var(--hot);
  color: var(--cream);
  padding: 4rem 2rem;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
  position: relative;
}

.banner-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.banner-inner h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.banner-inner h2 .yellow {
  background: var(--lime);
  color: var(--ink);
  padding: 0 0.2em;
  display: inline-block;
  transform: rotate(-2deg);
}

.banner-inner p {
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 600;
  margin: 1.5rem 0 2rem;
  max-width: 500px;
}

/* ============ SOCIAL GRID ============ */
.social {
  padding: 5rem 2rem;
  max-width: 1440px;
  margin: 0 auto;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.social-card {
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  border: 3px solid var(--ink);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.social-card:hover { transform: scale(1.02) rotate(-1deg); }

.social-card .scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-card .scene svg { width: 100%; height: 100%; }

.social-card .play-icon {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--cream);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
}

.social-card .tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.social-card .product-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 4rem;
  background: var(--cream);
  color: var(--ink);
  padding: 0.5rem 0.7rem;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 2px solid var(--ink);
}

/* ============ TRUST BAND ============ */
.trust-band {
  background: var(--ink);
  color: var(--cream);
  padding: 3rem 2rem;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.trust-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}

.trust-cell {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-cell:nth-child(2) .trust-icon { background: var(--hot); color: var(--cream); }
.trust-cell:nth-child(3) .trust-icon { background: var(--butter); color: var(--ink); }
.trust-cell:nth-child(4) .trust-icon { background: var(--acid); color: var(--ink); }
.trust-icon svg { width: 28px; height: 28px; }

.trust-text h4 {
  font-family: "Archivo Black", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.trust-text p { font-size: 0.85rem; opacity: 0.7; }

/* ============ FAQ ============ */
.faq {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-title h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.faq-title .pop {
  background: var(--lime);
  padding: 0 0.2em;
  display: inline-block;
  transform: rotate(-2deg);
  border: 3px solid var(--ink);
  border-radius: 8px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 3px solid var(--ink);
  border-radius: 16px;
  background: var(--cream);
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item.open { background: var(--butter); }

.faq-q {
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  user-select: none;
}

.faq-q .plus {
  background: var(--ink);
  color: var(--lime);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.faq-item.open .plus { transform: rotate(45deg); background: var(--hot); color: var(--cream); }

.faq-a {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}

.faq-item.open .faq-a {
  padding: 0 1.5rem 1.5rem;
  max-height: 300px;
}

/* ============ NEWSLETTER ============ */
.newsletter {
  background: var(--lime);
  padding: 5rem 2rem;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
}

.newsletter-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.newsletter h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.newsletter h2 .pink {
  background: var(--hot);
  color: var(--cream);
  padding: 0 0.2em;
  display: inline-block;
  transform: rotate(-2deg);
}

.newsletter .sub {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.newsletter .scrawl {
  font-size: 2rem;
  color: var(--hot-deep);
  display: block;
  transform: rotate(-3deg);
  margin-bottom: 0.5rem;
}

.nl-form {
  display: flex;
  gap: 0.75rem;
  max-width: 540px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.nl-form input {
  flex: 1;
  min-width: 240px;
  padding: 1.2rem 1.4rem;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  outline: none;
}

.nl-form input::placeholder { color: var(--ink); opacity: 0.5; }

.nl-form button {
  padding: 1.2rem 2rem;
  background: var(--ink);
  color: var(--lime);
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-family: "Archivo Black", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
}

.nl-form button:hover { background: var(--hot); color: var(--cream); }

.nl-tiny {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.7;
}

.nl-blob {
  position: absolute;
  font-size: 4rem;
  opacity: 0.4;
}

/* ============ FOOTER ============ */
.site-footer,
footer.site-footer {
  background: var(--ink) !important;
  color: var(--cream) !important;
  padding: 4rem 2rem 2rem !important;
  border-top: none !important;
}

.footer-top {
  max-width: 1440px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: 3rem;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.footer-brand h3 .y {
  background: var(--lime);
  color: var(--ink);
  padding: 0 0.2em;
  display: inline-block;
  transform: rotate(-2deg);
}

.footer-brand p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 380px;
  margin-bottom: 1.5rem;
}

.socials {
  display: flex;
  gap: 0.6rem;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-icon:hover { background: var(--lime); transform: translateY(-2px); }
.social-icon svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-family: "Archivo Black", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }

.footer-col a {
  color: var(--cream);
  text-decoration: none;
  opacity: 0.8;
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-col a:hover { opacity: 1; color: var(--lime); }

.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 248, 235, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============ INNER PAGE SHARED STYLES ============ */
.inner-hero {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem 2rem 4rem;
  border-bottom: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
}

.inner-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.inner-hero h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--cream);
}

.inner-hero h1 .lime { color: var(--lime); }
.inner-hero h1 .hot { color: var(--hot); }

.inner-hero .sub {
  font-size: 1.2rem;
  font-weight: 600;
  opacity: 0.75;
  margin-top: 1rem;
  max-width: 600px;
  line-height: 1.5;
}

.inner-hero .breadcrumb {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: 1.5rem;
}

.inner-hero .breadcrumb a { color: var(--lime); text-decoration: none; }

.inner-content {
  padding: 5rem 2rem;
  background: var(--cream);
}

.inner-content-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Info card grid (used on Delivery, Returns, etc.) */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.info-card {
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 2rem;
  background: var(--cream);
  position: relative;
}

.info-card.accent-lime { background: var(--lime); }
.info-card.accent-hot { background: var(--hot); color: var(--cream); }
.info-card.accent-butter { background: var(--butter); }
.info-card.accent-sky { background: var(--sky); }
.info-card.accent-acid { background: var(--acid); }

.info-card h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.info-card p, .info-card li {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 500;
}

.info-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.info-card ul li::before { content: "→ "; font-weight: 900; }

/* Big stat / highlight box */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-box {
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.stat-box .num {
  font-family: "Archivo Black", sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
}

.stat-box .label {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 0.5rem;
  display: block;
}

/* Prose content */
.prose h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 2.5rem 0 1rem;
}

.prose p {
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 1rem;
  max-width: 720px;
}

.prose ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul li { font-size: 1rem; line-height: 1.7; font-weight: 500; margin-bottom: 0.5rem; }

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-family: "Archivo Black", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.3rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: var(--cream);
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--hot); }

.contact-form textarea { height: 160px; resize: vertical; }

.contact-sidebar .contact-block {
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.contact-sidebar .contact-block:nth-child(1) { background: var(--lime); }
.contact-sidebar .contact-block:nth-child(2) { background: var(--butter); }
.contact-sidebar .contact-block:nth-child(3) { background: var(--cream); }

.contact-block h4 {
  font-family: "Archivo Black", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.contact-block p { font-size: 0.95rem; font-weight: 600; line-height: 1.5; }
.contact-block a { color: var(--ink); }

/* Lab reports table */
.lab-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  border: 3px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
}

.lab-table th {
  background: var(--ink);
  color: var(--lime);
  font-family: "Archivo Black", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 1.2rem;
  text-align: left;
}

.lab-table td {
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-top: 2px solid var(--ink);
  vertical-align: middle;
}

.lab-table tr:nth-child(even) td { background: rgba(200,255,0,0.1); }

.lab-badge {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.lab-badge.pass { background: var(--acid); color: var(--ink); }
.lab-badge.pending { background: var(--butter); color: var(--ink); }

/* Careers */
.job-card {
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  transition: all 0.2s ease;
  background: var(--cream);
  flex-wrap: wrap;
}

.job-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--ink);
}

.job-card:nth-child(1) { background: var(--lime); }
.job-card:nth-child(2) { background: var(--sky); }
.job-card:nth-child(3) { background: var(--butter); }

.job-title {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.job-meta {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.job-tag {
  background: var(--ink);
  color: var(--lime);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
}

/* Team grid on Our Story */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.team-card {
  border: 3px solid var(--ink);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
}

.team-card .team-photo {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid var(--ink);
}

.team-card:nth-child(1) .team-photo { background: var(--hot); }
.team-card:nth-child(2) .team-photo { background: var(--lime); }
.team-card:nth-child(3) .team-photo { background: var(--sky); }

.team-card .team-info { padding: 1.5rem; }
.team-card .team-name {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.team-card .team-role {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.7;
  margin-top: 0.3rem;
}

/* Timeline (Our Story) */
.timeline { position: relative; padding-left: 2rem; margin: 2rem 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--ink);
}

.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.4rem;
  top: 0.4rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lime);
  border: 3px solid var(--ink);
}

.timeline-year {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--hot);
}

.timeline-item p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 0.3rem;
  max-width: 600px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 480px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .social-grid .social-card:nth-child(n+4) { display: none; }
  .banner-inner { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Hide desktop nav, show hamburger */
  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .nav-cta-btn { display: none; }
}

@media (max-width: 640px) {
  .hero-inner { padding: 2.5rem 1rem 4rem; }
  .hero-visual { height: 380px; }
  .hero-product { width: 280px; height: 360px; }
  .confetti { font-size: 0.9rem; padding: 0.3rem 0.6rem; }
  .categories, .social, .faq { padding: 3rem 1rem; }
  .bestsellers { padding: 2.5rem 0.75rem; overflow: hidden; }
  .cat-grid { grid-template-columns: 1fr; }
  /* Keep product-grid 2-col — overriding to 1fr here causes layout fights */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid .social-card:nth-child(n+3) { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .nl-form { flex-direction: column; }
  .nl-form input, .nl-form button { width: 100%; }
  .press-inner { flex-direction: column; gap: 1rem; }
  .press-logos { justify-content: center; gap: 1.5rem; }
}

/* ============================================================
   NEW IN SECTION
   ============================================================ */
.new-in {
  background: var(--ink);
  padding: 5rem 2rem;
}
.new-in .section-title { color: var(--cream); }
.new-in .section-link  { color: var(--lime); }

.new-in-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1440px;
  margin: 0 auto;
}

.new-in-card {
  text-decoration: none;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s;
}
.new-in-card:hover { transform: translateY(-4px); }

.new-in-img {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 3/4;
  border: 2px solid #222;
}
.new-in-img {
  background: #ffffff;
}
.new-in-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
}
.new-in-card:hover .new-in-img img { transform: scale(1.05); }
.new-in-img svg { width: 100%; height: 100%; }

.new-in-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--lime);
  color: var(--ink);
  font-family: "Archivo Black", sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
}

.new-in-info h4 {
  font-family: "Archivo Black", sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 0.25rem;
}

.new-in-price {
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--lime);
}

@media (max-width: 900px) {
  .new-in-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .new-in-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FIND YOUR FORMAT SECTION
   ============================================================ */
.formats {
  background: var(--cream);
  padding: 5rem 2rem;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1440px;
  margin: 0 auto;
}

.format-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 1.5rem;
  text-decoration: none;
  color: var(--cream);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.format-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--fmt-color, var(--lime));
  opacity: 0;
  transition: opacity 0.2s;
}
.format-card:hover { transform: translateY(-3px); box-shadow: 6px 6px 0 var(--fmt-color, var(--lime)); }
.format-card:hover::before { opacity: 0.08; }

.format-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--fmt-color, var(--lime));
  border-radius: 14px;
  border: 2px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  position: relative; z-index: 1;
}
.format-icon svg { width: 28px; height: 28px; }

.format-body { flex: 1; position: relative; z-index: 1; }
.format-body h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 0.3rem;
}
.format-meta {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.6;
  margin: 0 0 0.25rem;
}
.format-effect {
  font-size: 0.75rem;
  color: var(--fmt-color, var(--lime));
  font-weight: 700;
  margin: 0;
}

.format-arrow {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.2rem;
  opacity: 0.4;
  transition: opacity 0.2s, transform 0.2s;
  position: relative; z-index: 1;
}
.format-card:hover .format-arrow { opacity: 1; transform: translateX(4px); }

@media (max-width: 1024px) { .formats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .formats-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRODUCT CARD — clickable anchor fix
   ============================================================ */
a.product-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
a.product-card:hover { color: inherit; }
a.product-card span.product-cta {
  display: block;
  text-align: center;
  background: var(--ink);
  color: var(--lime);
  font-family: "Archivo Black", sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  margin-top: auto;
  border: 2.5px solid var(--ink);
  transition: background 0.15s, color 0.15s;
}
a.product-card:hover span.product-cta { background: var(--hot); color: var(--cream); }

/* ============================================================
   SINGLE PRODUCT PAGE (PDP)
   ============================================================ */
.thcuk-product-page {
  background: var(--cream);
  min-height: 100vh;
}

/* Breadcrumb */
.pdp-breadcrumb {
  background: var(--ink);
  border-bottom: 2px solid #1a1a1a;
  padding: 0.75rem 2rem;
}
.pdp-breadcrumb-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
}
.pdp-breadcrumb-inner a { color: rgba(248,235,255,0.5); text-decoration: none; }
.pdp-breadcrumb-inner a:hover { color: var(--lime); }
.pdp-breadcrumb-inner span:not(:last-child) { color: rgba(248,235,255,0.3); }
.pdp-breadcrumb-inner span:last-child { color: var(--cream); }

/* Main layout */
.pdp-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1440px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  align-items: start;
}

/* Gallery */
.pdp-gallery { position: sticky; top: calc(var(--header-h, 70px) + 1rem); }

.pdp-gallery-main {
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid var(--ink);
  background: #fff;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: zoom-in;
}
.pdp-gallery-main {
  background: #ffffff;
}
.pdp-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  display: block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  image-rendering: -webkit-optimize-contrast;
}
.pdp-gallery-main:hover img { transform: scale(1.08); }
.pdp-no-img { width: 100%; display: flex; align-items: center; justify-content: center; background: var(--hot); }
.pdp-no-img svg { width: 70%; height: auto; }

.pdp-zoom-hint {
  position: absolute;
  bottom: 0.75rem; right: 0.75rem;
  background: rgba(10,10,10,0.6);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.pdp-thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.pdp-thumb {
  width: 72px; height: 72px;
  border-radius: 12px;
  overflow: hidden;
  border: 2.5px solid transparent;
  padding: 0;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.15s;
}
.pdp-thumb.active { border-color: var(--ink); }
.pdp-thumb:hover  { border-color: var(--hot); }
.pdp-thumb img    { width: 100%; height: 100%; object-fit: cover; }

.pdp-trust-strip {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.pdp-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
  background: #f0ebe0;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}
.pdp-trust-item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Product info panel */
.pdp-info { display: flex; flex-direction: column; gap: 1.5rem; }

.pdp-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pdp-cat-badge {
  background: var(--ink);
  color: var(--lime);
  font-family: "Archivo Black", sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s;
}
.pdp-cat-badge:hover { background: var(--hot); color: var(--cream); }
.pdp-badge-sale { background: var(--hot); color: var(--cream); font-family: "Archivo Black", sans-serif; font-size: 0.68rem; text-transform: uppercase; padding: 0.3rem 0.75rem; border-radius: 999px; }
.pdp-badge-feat { background: var(--butter, #ffe566); color: var(--ink); font-family: "Archivo Black", sans-serif; font-size: 0.68rem; text-transform: uppercase; padding: 0.3rem 0.75rem; border-radius: 999px; }
.pdp-badge-hot  { background: var(--lime); color: var(--ink); font-family: "Archivo Black", sans-serif; font-size: 0.68rem; text-transform: uppercase; padding: 0.3rem 0.75rem; border-radius: 999px; }

.pdp-title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
}

.pdp-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.pdp-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 0.05em; }
.pdp-rating-count { opacity: 0.6; }
.pdp-rating-link { color: var(--hot); text-decoration: underline; font-size: 0.85rem; }

.pdp-price-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--ink);
  border-radius: 18px;
  border: 3px solid var(--ink);
}
.pdp-price { font-family: "Archivo Black", sans-serif; font-size: 2rem; color: var(--lime); }
.pdp-price .woocommerce-Price-amount { font-family: "Archivo Black", sans-serif; font-size: 2rem; color: var(--lime); }
.pdp-price del .woocommerce-Price-amount { font-size: 1.2rem; color: rgba(248,235,255,0.4); text-decoration: line-through; }
.pdp-save-badge {
  background: var(--hot);
  color: var(--cream);
  font-family: "Archivo Black", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.pdp-short-desc { font-size: 1rem; line-height: 1.6; font-weight: 500; opacity: 0.8; }
.pdp-short-desc p { margin: 0 0 0.75rem; }

.pdp-meta-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pdp-pill {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: #f0ebe0;
}
.pdp-pill-green { background: #d4f7dc; border-color: #2d7a3a; color: #1a5c27; }
.pdp-pill-amber { background: #fff3d4; border-color: #b07d00; color: #7a5500; }
.pdp-pill-red   { background: #ffe4e4; border-color: #c0392b; color: #7a1010; }

/* ATC form */
.pdp-atc-wrap .quantity { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.pdp-atc-wrap .qty-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2.5px solid var(--ink);
  background: transparent; font-size: 1.2rem;
  cursor: pointer; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.pdp-atc-wrap input[type="number"] {
  width: 60px; text-align: center;
  border: 2.5px solid var(--ink); border-radius: 999px;
  padding: 0.5rem; font-family: "Archivo Black", sans-serif;
  font-size: 1rem;
}
.pdp-atc-wrap .single_add_to_cart_button,
.pdp-atc-wrap button[type="submit"] {
  width: 100%;
  background: var(--ink); color: var(--lime);
  border: 3px solid var(--ink); border-radius: 999px;
  padding: 1.1rem 2rem;
  font-family: "Archivo Black", sans-serif;
  font-size: 1rem; text-transform: uppercase;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--ink);
  transform: translate(-3px, -3px);
  transition: all 0.15s;
  display: block;
}
.pdp-atc-wrap .single_add_to_cart_button:hover,
.pdp-atc-wrap button[type="submit"]:hover {
  background: var(--hot); color: var(--cream);
  box-shadow: 0 0 0; transform: translate(0,0);
}

/* Delivery box */
.pdp-delivery-box {
  background: #f0ebe0;
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pdp-delivery-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.85rem;
}
.pdp-delivery-row svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.pdp-delivery-row div { display: flex; flex-direction: column; gap: 0.15rem; }
.pdp-delivery-row strong { font-weight: 800; font-size: 0.9rem; }
.pdp-delivery-row span { opacity: 0.6; font-weight: 600; }

/* Social proof ticker */
.pdp-proof-ticker {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 600;
}
.pdp-proof-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime); flex-shrink: 0;
  animation: pdpPulse 1.6s ease-in-out infinite;
}
@keyframes pdpPulse {
  0%,100%{ box-shadow: 0 0 0 0 rgba(200,255,0,.5); }
  50%    { box-shadow: 0 0 0 5px rgba(200,255,0,0); }
}

/* Tabs */
.pdp-tabs-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}
.pdp-tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 3px solid var(--ink);
  margin-bottom: 2.5rem;
}
.pdp-tab-btn {
  background: none;
  border: none;
  border-bottom: 4px solid transparent;
  margin-bottom: -3px;
  padding: 0.85rem 1.5rem;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  color: var(--ink);
  opacity: 0.45;
  transition: opacity 0.15s, border-color 0.15s;
}
.pdp-tab-btn:hover { opacity: 0.7; }
.pdp-tab-btn.active { opacity: 1; border-bottom-color: var(--hot); }

.pdp-tab-panel { display: none; }
.pdp-tab-panel.active { display: block; }
.pdp-tab-content { max-width: 860px; line-height: 1.7; font-size: 1rem; font-weight: 500; }
.pdp-tab-content h4 { font-family: "Archivo Black", sans-serif; text-transform: uppercase; font-size: 1rem; margin: 1.5rem 0 0.5rem; }
.pdp-tab-content ul { margin-left: 1.5rem; }
.pdp-tab-content li { margin-bottom: 0.4rem; }

/* How to use steps */
.pdp-how-to-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.pdp-how-step {
  background: var(--ink);
  color: var(--cream);
  border-radius: 20px;
  padding: 1.75rem;
}
.pdp-step-num {
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: 2rem;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.pdp-how-step h4 { font-family: "Archivo Black", sans-serif; text-transform: uppercase; font-size: 1rem; margin: 0 0 0.5rem; color: var(--cream); }
.pdp-how-step p  { font-size: 0.9rem; opacity: 0.7; margin: 0; }
.pdp-how-disclaimer { font-size: 0.78rem; font-weight: 600; opacity: 0.5; margin-top: 1rem; }

/* Lab section */
.pdp-lab-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--ink);
  border-radius: 20px;
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.pdp-lab-header { display: flex; align-items: flex-start; gap: 1rem; color: var(--cream); }
.pdp-lab-header svg { width: 32px; height: 32px; flex-shrink: 0; color: var(--lime); margin-top: 2px; }
.pdp-lab-header h4 { font-family: "Archivo Black", sans-serif; text-transform: uppercase; font-size: 1rem; color: var(--cream); margin: 0 0 0.3rem; }
.pdp-lab-header p  { font-size: 0.85rem; opacity: 0.6; margin: 0; color: var(--cream); }
.pdp-lab-btn {
  background: var(--lime); color: var(--ink);
  text-decoration: none;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.85rem; text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s;
}
.pdp-lab-btn:hover { background: var(--hot); color: var(--cream); }

.pdp-lab-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pdp-lab-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.pdp-lab-val {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.pdp-lab-stat span:last-child { font-size: 0.78rem; font-weight: 600; opacity: 0.6; }

/* Related products section */
.pdp-related {
  background: #f0ebe0;
  padding: 5rem 2rem;
  border-top: 3px solid var(--ink);
}

/* PDP responsive */
@media (max-width: 1024px) {
  .pdp-main { grid-template-columns: 1fr; gap: 2rem; }
  .pdp-gallery { position: static; }
  .pdp-how-to-grid { grid-template-columns: 1fr; }
  .pdp-lab-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pdp-tab-btn { padding: 0.7rem 0.9rem; font-size: 0.75rem; }
  .pdp-title { font-size: 1.8rem; }
  .pdp-lab-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   SHOP PAGE – archive-product.php
═══════════════════════════════════════════════════════════════ */

/* ── Re-allow normal block display inside shop ── */
.woocommerce-page .site-content,
.woocommerce-page .site-content > .grid-container,
.woocommerce-page .content-area,
.woocommerce-page .site-main,
.woocommerce-page .entry,
.woocommerce-page .hentry,
.woocommerce-page .entry-content,
.woocommerce-page .inside-article {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
.woocommerce-page .entry-header { display: none !important; }

/* ── Outer wrapper: sidebar + main ── */
.shop-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-template-rows: auto 1fr;
  gap: 0;
  max-width: 1480px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
  align-items: start;
}

/* ── Mobile filter toggle (hidden on desktop) ── */
.shop-filter-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  position: relative;
  grid-column: 1 / -1;
  justify-self: start;
  margin-bottom: 1rem;
}
.shop-filter-badge {
  display: none;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ── Sidebar ── */
.shop-sidebar {
  grid-column: 1;
  grid-row: 1 / 3;
  position: sticky;
  top: 100px;
  padding-right: 2rem;
}
.shop-sidebar-inner {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 20px;
  overflow: hidden;
}
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.4rem;
  background: var(--ink);
  color: var(--cream);
  font-family: "Archivo Black", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sidebar-close {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

/* ── Filter sections ── */
.filter-section {
  padding: 1.2rem 1.4rem;
  border-bottom: 1.5px solid var(--line);
}
.filter-section:last-child { border-bottom: none; }
.filter-label {
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

/* Search */
.filter-search-wrap {
  position: relative;
}
.filter-search-wrap svg {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.4;
  pointer-events: none;
}
.filter-search {
  width: 100%;
  padding: 0.65rem 2.2rem 0.65rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: "Archivo", sans-serif;
  font-size: 0.85rem;
  background: var(--cream);
  outline: none;
  transition: border-color 0.15s;
}
.filter-search:focus { border-color: var(--ink); }

/* Category list */
.filter-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.filter-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.12s, color 0.12s;
}
.filter-cat-item:hover { background: var(--cream); }
.filter-cat-item.is-active {
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
}
.filter-cat-count {
  background: rgba(10,10,10,0.08);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  line-height: 1.4;
}
.filter-cat-item.is-active .filter-cat-count {
  background: rgba(10,10,10,0.15);
}

/* Price range slider */
.filter-price-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.filter-price-display .price-val {
  font-family: "Archivo Black", sans-serif;
  font-size: 1rem;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 0.3rem 0.6rem;
  min-width: 60px;
  text-align: center;
}
.filter-price-display .price-sep { opacity: 0.35; font-size: 0.85rem; }
.filter-range-track {
  position: relative;
  height: 4px;
  background: var(--line);
  border-radius: 99px;
  margin: 0.5rem 0 1.2rem;
}
.filter-range-fill {
  position: absolute;
  height: 100%;
  background: var(--lime);
  border-radius: 99px;
  pointer-events: none;
}
.filter-range {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 4px;
  background: transparent;
  outline: none;
  pointer-events: none;
  margin: 0;
}
.filter-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  pointer-events: all;
  transition: transform 0.1s;
}
.filter-range::-webkit-slider-thumb:hover { transform: scale(1.2); }
.filter-range::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid #fff;
  cursor: pointer;
  pointer-events: all;
}

/* Sort select inside sidebar */
.filter-sort-select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: "Archivo", sans-serif;
  font-size: 0.85rem;
  background: var(--cream);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.2rem;
}

/* Toggle / on-sale */
.filter-toggle-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}
.filter-checkbox { display: none; }
.filter-toggle-track {
  flex-shrink: 0;
  width: 40px;
  height: 22px;
  background: var(--line);
  border-radius: 999px;
  position: relative;
  transition: background 0.2s;
}
.filter-toggle-track::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.filter-checkbox:checked + .filter-toggle-track { background: var(--lime); }
.filter-checkbox:checked + .filter-toggle-track::after { transform: translateX(18px); }
.filter-toggle-label { font-size: 0.88rem; font-weight: 500; }

/* Apply / clear buttons */
.filter-apply-btn {
  display: block;
  width: calc(100% - 2.8rem);
  margin: 1.2rem 1.4rem 0.5rem;
  padding: 0.85rem;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 12px;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.15s;
}
.filter-apply-btn:hover { background: var(--hot); }
.filter-clear-link {
  display: block;
  text-align: center;
  padding: 0.6rem 1.4rem 1.2rem;
  font-size: 0.8rem;
  color: var(--ink);
  opacity: 0.5;
  text-decoration: underline;
}
.filter-clear-link:hover { opacity: 1; }

/* ── Main content area ── */
.shop-main {
  grid-column: 2;
  grid-row: 1 / 3;
  min-width: 0;
}

/* ── Shop header bar ── */
.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid var(--ink);
  flex-wrap: wrap;
}
.shop-header-left { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.shop-page-title {
  font-family: "Archivo Black", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
}
.woocommerce-result-count {
  font-size: 0.82rem;
  opacity: 0.5;
  margin: 0 !important;
}
.shop-header-right { display: flex; align-items: center; gap: 0.75rem; }

/* Desktop sort dropdown */
.shop-sort-select {
  padding: 0.6rem 2.2rem 0.6rem 0.9rem;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  font-family: "Archivo", sans-serif;
  font-size: 0.82rem;
  background: #fff;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.shop-sort-wrap { display: flex; align-items: center; }

/* View toggle buttons */
.shop-view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 34px; height: 34px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.12s, border-color 0.12s, background 0.12s;
}
.view-btn:hover  { opacity: 0.8; }
.view-btn.is-active { opacity: 1; border-color: var(--ink); background: var(--ink); color: var(--cream); }

/* ── Active filter pills ── */
.shop-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  min-height: 0;
}
.shop-active-filters:empty { display: none; }
.active-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem 0.3rem 0.9rem;
  border-radius: 999px;
}
.active-filter-pill a {
  color: var(--cream);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.12s;
  font-size: 0.7rem;
}
.active-filter-pill a:hover { opacity: 1; }
.sale-pill { background: var(--hot); }

/* ── Product Grid ── */
.shop-product-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
/* 2-col view */
.shop-product-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
/* 1-col / list view */
.shop-product-grid[data-cols="1"] { grid-template-columns: 1fr; }
.shop-product-grid[data-cols="1"] .shop-product-item { flex-direction: row; flex-wrap: wrap; }
.shop-product-grid[data-cols="1"] .shop-product-link { flex-direction: row; flex: 1; }
.shop-product-grid[data-cols="1"] .shop-product-img-wrap { flex: 0 0 180px; height: 180px; border-bottom: none; border-right: 2px solid var(--ink); }
.shop-product-grid[data-cols="1"] .shop-product-info { flex: 1; padding: 1.25rem 1.5rem; }
.shop-product-grid[data-cols="1"] .shop-product-actions { width: 100%; padding: 0 1.5rem 1.25rem; }

/* ── Product card ── */
.shop-product-item {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.shop-product-item:hover {
  transform: translateY(-4px);
  box-shadow: 6px 8px 0 var(--ink);
}
.shop-product-item.is-sale { border-color: var(--hot); }
.shop-product-item.is-sale:hover { box-shadow: 6px 8px 0 var(--hot); }

/* Link wraps image + info, grows to fill card */
.shop-product-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: var(--ink);
}

/* Card image */
.shop-product-img-wrap {
  position: relative;
  background: #f8f8f6;
  height: 230px;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}
.shop-product-item.is-sale .shop-product-img-wrap { border-bottom-color: var(--hot); }
.shop-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  display: block;
  transition: transform 0.35s ease;
  image-rendering: -webkit-optimize-contrast;
}
.shop-product-item:hover .shop-product-img { transform: scale(1.06); }

/* Hover overlay */
.shop-product-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.shop-product-item:hover .shop-product-hover-overlay { opacity: 1; }
.shop-quick-view-btn {
  background: var(--lime);
  color: var(--ink);
  font-family: "Archivo Black", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  pointer-events: none;
}

/* Badges */
.shop-badge {
  position: absolute;
  top: 10px;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  z-index: 2;
  line-height: 1.3;
}
.sale-badge { left: 10px; background: var(--hot); color: #fff; }
.feat-badge { right: 10px; background: var(--lime); color: var(--ink); }

/* Card info */
.shop-product-info {
  padding: 1rem 1.1rem 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}
.shop-product-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hot);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shop-product-name {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Stars */
.shop-product-stars {
  display: flex;
  align-items: center;
  gap: 1px;
  font-size: 0.78rem;
}
.shop-product-stars .star { color: #ddd; }
.shop-product-stars .star.filled { color: #f5a623; }
.shop-rating-count { font-size: 0.7rem; opacity: 0.45; margin-left: 3px; }

/* Price */
.shop-product-price {
  margin-top: auto;
  padding-top: 0.4rem;
}
.shop-product-price .woocommerce-Price-amount,
.shop-product-price ins .woocommerce-Price-amount {
  font-family: "Archivo Black", sans-serif;
  font-size: 1rem;
  color: var(--ink);
}
.shop-product-price del { opacity: 0.4; font-size: 0.8rem; margin-right: 4px; }
.shop-product-price del .woocommerce-Price-amount { font-size: 0.8rem; }
.shop-product-price ins { text-decoration: none; }

/* Add to Basket — sits at card bottom, outside the <a> link */
.shop-product-actions {
  padding: 0 1.1rem 1rem;
  margin-top: auto;
}
.shop-atc-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--ink);
  color: var(--cream) !important;
  text-decoration: none !important;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  border: 2px solid var(--ink);
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.shop-atc-btn:hover { background: var(--lime); color: var(--ink) !important; }
.shop-product-item.is-sale .shop-atc-btn { background: var(--hot); border-color: var(--hot); }
.shop-product-item.is-sale .shop-atc-btn:hover { background: var(--ink); border-color: var(--ink); }

/* ── Pagination ── */
.shop-pagination {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--ink);
}
.shop-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}
.shop-pagination .page-numbers li { display: inline-flex; }
.shop-pagination .page-numbers a,
.shop-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border: 2px solid var(--ink);
  border-radius: 10px;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.82rem;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  transition: background 0.15s, color 0.15s;
}
.shop-pagination .page-numbers a:hover { background: var(--ink); color: var(--cream); }
.shop-pagination .page-numbers .current { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.shop-pagination .page-numbers .prev,
.shop-pagination .page-numbers .next {
  font-family: "Archivo", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

/* ── Empty state ── */
.shop-empty {
  text-align: center;
  padding: 5rem 2rem;
}
.shop-empty-icon { font-size: 4rem; margin-bottom: 1rem; }
.shop-empty h3 { font-family: "Archivo Black", sans-serif; font-size: 1.5rem; margin-bottom: 0.5rem; }
.shop-empty p  { opacity: 0.6; margin-bottom: 2rem; }
.shop-empty-btn {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 999px;
}

/* ── Sidebar overlay (mobile) ── */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.55);
  z-index: 998;
}
.sidebar-overlay.is-active { display: block; }

/* ═══════════════════════════════════════════════════════════════
   SHOP RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .shop-product-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-wrap { grid-template-columns: 240px 1fr; padding: 1.5rem; }
}

@media (max-width: 860px) {
  /* Stack layout: no sidebar grid */
  .shop-wrap {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 0;
  }
  .shop-filter-toggle { display: inline-flex; }

  /* Sidebar slides in from left */
  .shop-sidebar {
    position: fixed;
    top: 0; left: 0;
    width: 300px;
    max-width: 90vw;
    height: 100vh;
    overflow-y: auto;
    z-index: 999;
    padding: 0;
    transform: translateX(-105%);
    transition: transform 0.3s ease;
    grid-column: 1;
    grid-row: auto;
  }
  .shop-sidebar.is-open { transform: translateX(0); }
  .shop-sidebar-inner { border-radius: 0; border: none; height: 100%; }
  .sidebar-close { display: block; }
  .filter-apply-btn { margin: 1.2rem 1.4rem 0.5rem; }

  /* Main fills full width */
  .shop-main { grid-column: 1; grid-row: auto; }
  .shop-product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .shop-page-title { font-size: 1.5rem; }
  .shop-view-toggle { display: none; }
}

@media (max-width: 480px) {
  .shop-wrap { padding: 0.75rem; }
  .shop-product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .shop-product-img-wrap { height: 180px; }
  .shop-product-name { font-size: 0.82rem; }
  .shop-header { margin-bottom: 1rem; }
  .shop-page-title { font-size: 1.25rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE
   Built mobile-first: 768px tablet, 480px phone, 375px small phone
═══════════════════════════════════════════════════════════════════ */

/* ── Global spacing reduction ───────────────────────────────── */
@media (max-width: 768px) {
  /* Reduce all big section padding */
  .categories, .new-in, .formats, .social,
  .faq, .banner, .trust-section, .newsletter-section,
  .pdp-tabs-section, .pdp-related { padding: 3rem 1.25rem; }
  /* bestsellers gets tighter horizontal padding so 2-col cards have room */
  .bestsellers { padding: 2.5rem 0.75rem; overflow: hidden; }

  /* Kill horizontal overflow traps */
  body, .site-wrapper, section { overflow-x: hidden; }

  /* Section titles */
  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  /* Reduce inner max-widths to use more screen */
  .section-inner,
  .categories-inner,
  .bestsellers-inner,
  .banner-inner,
  .trust-inner,
  .newsletter-inner,
  .footer-inner { padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* ── Header ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .header-inner { padding: 0.7rem 1rem; gap: 0.75rem; }
  .logo-name { font-size: 1.15rem; }
  .logo-badge { font-size: 0.95rem; padding: 0.28rem 0.5rem; }
  .topbar { font-size: 0.72rem; padding: 0.5rem 1rem; }
  /* Cart icon always visible on mobile */
  .header-actions { gap: 0.5rem; }
  .header-search-btn, .header-cart-btn { width: 36px; height: 36px; }
}

/* ── Hero ────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner {
    padding: 2.5rem 1.25rem 3.5rem;
    gap: 0;
    text-align: center;
  }
  .hero-kicker { font-size: 0.7rem; }
  .hero-headline {
    font-size: clamp(2.8rem, 13vw, 5rem);
    line-height: 0.88;
  }
  .hero-sub { font-size: 0.95rem; max-width: 100%; }
  .hero-cta-row {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-cta-row .btn-chunk,
  .hero-cta-row .btn-outline { width: 100%; justify-content: center; font-size: 0.9rem; }
  .hero-trust { justify-content: center; flex-wrap: wrap; gap: 0.5rem; }
  .hero-visual { height: 320px; }
  .hero-product { width: 220px; height: 280px; }
  /* Floating confetti tags — reduce/reposition */
  .confetti { font-size: 0.72rem; padding: 0.25rem 0.5rem; }
  .confetti:nth-child(1) { top: 8%; left: 5%; }
  .confetti:nth-child(2) { top: 8%; right: 5%; }
  .confetti:nth-child(3) { bottom: 12%; left: 5%; }
  .confetti:nth-child(4) { bottom: 12%; right: 5%; }
  .confetti:nth-child(5),
  .confetti:nth-child(6) { display: none; }
}

@media (max-width: 480px) {
  .hero-inner { padding: 2rem 1rem 3rem; }
  .hero-headline { font-size: clamp(2.4rem, 14vw, 4rem); }
  .hero-visual { height: 260px; }
  .hero-product { width: 190px; height: 240px; }
}

/* ── Category grid ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .cat-card { border-radius: 16px; padding: 0 0 1rem; }
  .cat-card-img { height: 130px; }
  .cat-card-name { font-size: 0.85rem; padding: 0 0.75rem; }
  .cat-count { font-size: 0.65rem; padding: 0.2rem 0.5rem; }
}
@media (max-width: 400px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .cat-card-img { height: 110px; }
}

/* ── Bestsellers / product grid ─────────────────────────────── */
@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  /* min-width:0 lets grid children shrink below content width */
  .product-grid > * { min-width: 0; }
  .product-card {
    border-radius: 14px;
    padding: 0.75rem; /* cut padding in half — was 1.5rem */
  }
  .product-img-wrap { height: 150px; margin-bottom: 0.6rem; }
  .product-card h4 { font-size: 0.78rem; line-height: 1.2; }
  .product-price .price-now { font-size: 1rem; }
  a.product-card span.product-cta { font-size: 0.72rem; padding: 0.55rem 0.75rem; }
  .badge-bestseller { font-size: 0.62rem; padding: 0.3rem 0.6rem; left: 0.75rem; }
  .badge-sale { width: 44px; height: 44px; font-size: 0.72rem; top: 0.75rem; right: 0.75rem; }
}
@media (max-width: 400px) {
  .product-img-wrap { height: 120px; }
  .product-card { padding: 0.6rem; }
  .product-card h4 { font-size: 0.72rem; }
  a.product-card span.product-cta { font-size: 0.68rem; padding: 0.45rem 0.5rem; }
}

/* ── New-In grid ─────────────────────────────────────────────── */
@media (max-width: 600px) {
  .new-in-row { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
  .new-in-info h4 { font-size: 0.82rem; }
  .new-in-price { font-size: 0.88rem; }
}

/* ── Find Your Format ────────────────────────────────────────── */
@media (max-width: 600px) {
  .format-card { padding: 1.1rem; gap: 0.9rem; }
  .format-icon { width: 42px; height: 42px; border-radius: 11px; }
  .format-icon svg { width: 22px; height: 22px; }
  .format-body h3 { font-size: 0.88rem; }
  .format-meta, .format-effect { font-size: 0.72rem; }
}

/* ── Big banner ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .banner-inner { grid-template-columns: 1fr; text-align: center; }
  .banner-text .display { font-size: clamp(2.5rem, 12vw, 5rem); }
  .banner-cta { justify-content: center; }
  .banner-visual { display: none; }
}

/* ── Trust strip ─────────────────────────────────────────────── */
@media (max-width: 600px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .trust-item { padding: 1.25rem 1rem; }
  .trust-icon { font-size: 1.6rem; }
  .trust-label { font-size: 0.72rem; }
}

/* ── FAQ ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .faq-item { padding: 1rem 1.1rem; }
  .faq-q { font-size: 0.9rem; }
  .faq-a { font-size: 0.85rem; }
}

/* ── Newsletter ──────────────────────────────────────────────── */
@media (max-width: 600px) {
  .nl-form { flex-direction: column; }
  .nl-form input { min-width: 0; width: 100%; }
  .nl-form button { width: 100%; justify-content: center; }
  .newsletter-section { padding: 3rem 1.25rem; }
}

/* ── Footer ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; padding: 3rem 1.25rem 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col h4 { font-size: 0.75rem; }
  .footer-col li { margin-bottom: 0.4rem; }
  .footer-col a { font-size: 0.85rem; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1.25rem; font-size: 0.75rem; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
}

/* ── Single product page (PDP) ───────────────────────────────── */
@media (max-width: 768px) {
  .pdp-wrap { padding: 1.25rem 1rem 0; }
  .pdp-main { gap: 1.5rem; }
  .pdp-title { font-size: 1.6rem; }
  .pdp-badges { flex-wrap: wrap; gap: 0.4rem; }
  .pdp-price-wrap { flex-wrap: wrap; gap: 0.5rem; }
  .pdp-price { font-size: 2rem; }
  .pdp-meta-pills { flex-wrap: wrap; gap: 0.4rem; }
  .pdp-delivery { padding: 1rem 1.1rem; }
  .pdp-atc-row { flex-direction: column; gap: 0.75rem; }
  .pdp-atc-row .btn-chunk { width: 100%; justify-content: center; }
  .pdp-wishlist-btn { width: 100%; }
  .pdp-tab-list { gap: 0.25rem; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 2px; }
  .pdp-tab-btn { padding: 0.6rem 0.8rem; font-size: 0.72rem; white-space: nowrap; flex-shrink: 0; }
  .pdp-how-to-grid { grid-template-columns: 1fr; }
  .pdp-lab-grid { grid-template-columns: repeat(2, 1fr); }
  .pdp-ticker { padding: 0.6rem 1rem; font-size: 0.8rem; }
  .pdp-related { padding: 3rem 1.25rem; }
}
@media (max-width: 480px) {
  .pdp-title { font-size: 1.35rem; }
  .pdp-gallery-main { height: 280px; }
  .pdp-thumbs { gap: 0.5rem; }
  .pdp-thumb { width: 52px; height: 52px; }
  .pdp-lab-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Social proof toast ──────────────────────────────────────── */
@media (max-width: 768px) {
  .sp-toast {
    bottom: 0.85rem;
    left: 0.85rem;
    right: 0.85rem;
    max-width: none;
    font-size: 0.82rem;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
  }
}

/* ── Popups on mobile ────────────────────────────────────────── */
@media (max-width: 640px) {
  /* Welcome popup — full screen on small phones */
  .popup-welcome-box {
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: none;
    top: 0; left: 0;
    transform: none;
    overflow-y: auto;
  }
  .popup-welcome-split { grid-template-columns: 1fr; }
  .popup-welcome-right { display: none; }
  .popup-welcome-left { padding: 2rem 1.5rem 3rem; }
  .popup-heading { font-size: 2rem; }
  .popup-form { flex-direction: column; }
  .popup-form input[type="email"] { min-width: 0; }

  /* Exit & scroll popups */
  .popup-exit-box,
  .popup-scroll-box {
    width: 100%;
    border-radius: 24px 24px 0 0;
    top: auto;
    bottom: 0;
    left: 0;
    transform: none;
  }
  .popup-exit-inner, .popup-scroll-inner { padding: 2rem 1.5rem 2.5rem; }

  /* Age gate */
  .age-gate-box { padding: 2.5rem 1.5rem; border-radius: 24px; }
  .age-gate-heading { font-size: 1.6rem; }
}

/* ── Sticky ATC bar on mobile ────────────────────────────────── */
@media (max-width: 640px) {
  .sticky-atc { padding: 0.65rem 1rem; }
  .sticky-atc-inner { gap: 0.75rem; }
  .sticky-atc-product strong { font-size: 0.78rem; }
  .sticky-atc-product span { display: none; } /* hide price on tiny screens */
  .sticky-atc-btn { font-size: 0.8rem !important; padding: 0.6rem 1.1rem !important; white-space: nowrap; }
}

/* ── Cart booster bar ────────────────────────────────────────── */
@media (max-width: 640px) {
  .cart-booster-inner { padding: 0.65rem 1rem; flex-wrap: wrap; }
  .cart-booster-inner span { font-size: 0.82rem; }
}

/* ── WooCommerce cart/checkout ───────────────────────────────── */
@media (max-width: 768px) {
  .woocommerce-cart .woocommerce,
  .woocommerce-checkout .woocommerce { padding: 1.5rem 1rem; }
  .woocommerce table.shop_table { font-size: 0.85rem; }
  .woocommerce table.shop_table .product-thumbnail { display: none; }
  .woocommerce-page .cart-collaterals { margin-top: 1.5rem; }
}

/* ── Touch-friendly tap targets ──────────────────────────────── */
@media (max-width: 768px) {
  /* All buttons and links should be at least 44px tall */
  .btn-chunk, .btn-outline,
  .filter-cat-item,
  .mobile-menu .menu-item > a,
  .shop-atc-btn { min-height: 44px; }

  /* Remove hover effects that don't work on touch */
  .mega-cat-card:hover { transform: none; box-shadow: none; }
  .shop-product-item:hover { transform: none; box-shadow: none; }
  .format-card:hover { transform: none; box-shadow: none; }
}

/* ── Utility: hide on mobile ─────────────────────────────────── */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}
@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
}

/* ════════════════════════════════════════════════════════════
   HEADER — compact mobile (iPhone SE 375px and up)
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Hide text labels, show icons only */
  .cart-label { display: none; }
  .search-pill-label { display: none; }
  /* Make search toggle icon-only */
  .search-pill-toggle { padding: 0.45rem 0.6rem; gap: 0; }
  /* Tighten cart btn */
  .cart-btn { padding: 0.45rem 0.6rem; gap: 0; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0.6rem 0.85rem; gap: 0.5rem; }
  .logo-badge { font-size: 0.88rem; padding: 0.25rem 0.45rem; }
  .logo-name  { font-size: 1rem; }
  .header-actions { gap: 0.35rem; }
  .icon-btn, .cart-btn, .search-pill-toggle {
    width: 36px; height: 36px;
    padding: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .hamburger { width: 36px; height: 36px; }
}

/* ════════════════════════════════════════════════════════════
   SHOP PRODUCT CARDS — mobile fixes
════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Smaller image area */
  .shop-product-img-wrap { height: 160px; }

  /* Name: 2 lines max, smaller font */
  .shop-product-name {
    font-size: 0.8rem;
    -webkit-line-clamp: 2;
    line-height: 1.25;
  }

  /* Category label */
  .shop-product-cat { font-size: 0.65rem; }

  /* Price */
  .shop-product-price .woocommerce-Price-amount,
  .shop-product-price ins .woocommerce-Price-amount { font-size: 0.92rem; }

  /* ATC button — compact */
  .shop-atc-btn {
    font-size: 0.72rem;
    padding: 0.6rem 0.5rem;
    letter-spacing: 0.03em;
  }
  .shop-atc-btn svg { display: none; } /* hide basket icon to save space */

  /* Card info padding */
  .shop-product-info { padding: 0.7rem 0.75rem 0.4rem; gap: 0.25rem; }
  .shop-product-actions { padding: 0 0.75rem 0.75rem; }
}

@media (max-width: 400px) {
  .shop-product-img-wrap { height: 140px; }
  .shop-product-name { font-size: 0.75rem; }
  .shop-atc-btn { font-size: 0.68rem; padding: 0.55rem 0.4rem; }
  .shop-product-info { padding: 0.6rem 0.6rem 0.3rem; }
  .shop-product-actions { padding: 0 0.6rem 0.6rem; }
}

/* ════════════════════════════════════════════════════════════
   MOBILE — comprehensive optimisation for 320–480px phones
   (iPhone SE, iPhone 14/15, Samsung S series)
════════════════════════════════════════════════════════════ */

/* Hide homepage product-card accent dot on all mobile — too distracting on small screens */
@media (max-width: 768px) {
  .product-img-wrap::after { display: none; }
}

/* ── Typography scale-down on small screens ── */
@media (max-width: 480px) {
  html { font-size: 15px; }

  h1, .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; }
  h2 { font-size: clamp(1.3rem, 6vw, 1.8rem) !important; }
  h3 { font-size: clamp(1rem, 5vw, 1.4rem) !important; }

  /* Hero section */
  .hero-heading { font-size: clamp(2rem, 11vw, 3rem) !important; }
  .hero-sub { font-size: 0.9rem !important; }
  .hero-actions { flex-direction: column; gap: 0.65rem; }
  .hero-actions .btn-chunk,
  .hero-actions .btn-outline { width: 100%; justify-content: center; text-align: center; }

  /* Trust bar */
  .trust-bar { gap: 0.6rem; padding: 0.6rem 0.75rem; overflow-x: auto; flex-wrap: nowrap; }
  .trust-item { font-size: 0.72rem; flex-shrink: 0; }

  /* Section padding */
  .section-pad { padding: 2.5rem 0.75rem; }
}

/* ── Shop page — tighter on 430px and below ── */
@media (max-width: 430px) {
  /* 2-col grid with minimal gap */
  .shop-product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.6rem; }
  .shop-wrap { padding: 0.5rem 0.6rem; gap: 0.6rem; }

  /* Shop header */
  .shop-page-title { font-size: 1.1rem; }
  .shop-header { gap: 0.5rem; margin-bottom: 0.75rem; }
  .shop-view-toggle { display: none; } /* hide 3/2/1 toggle — 2-col always on mobile */
  .shop-sort-select { font-size: 0.78rem; padding: 0.4rem 0.5rem; }

  /* Card image */
  .shop-product-img-wrap { height: 130px; }

  /* Card text */
  .shop-product-name {
    font-size: 0.73rem;
    -webkit-line-clamp: 2;
    line-height: 1.2;
    min-height: 1.75rem; /* keep cards same height */
  }
  .shop-product-cat { display: none; } /* remove category label on tiny cards */
  .shop-product-price .woocommerce-Price-amount,
  .shop-product-price ins .woocommerce-Price-amount { font-size: 0.85rem; }

  /* ATC button */
  .shop-atc-btn {
    font-size: 0.68rem;
    padding: 0.5rem 0.35rem;
    letter-spacing: 0;
    border-radius: 8px;
  }

  /* Active filter pills */
  .active-filter-pill { font-size: 0.7rem; padding: 0.25rem 0.5rem; }

  /* Filter toggle button */
  .shop-filter-toggle { font-size: 0.82rem; padding: 0.55rem 1rem; margin-bottom: 0.5rem; }

  /* Pagination */
  .shop-pagination ul { gap: 0.3rem; }
  .shop-pagination .page-numbers { min-width: 34px; height: 34px; font-size: 0.82rem; }
}

/* ── Topbar ticker ── */
@media (max-width: 480px) {
  .topbar { padding: 0.35rem 0; }
  .marquee-line span { font-size: 0.72rem; padding: 0 1.2rem; }
}

/* ── Mobile nav overlay — full screen tidy ── */
@media (max-width: 480px) {
  .mobile-overlay { padding: 0; }
  .mobile-nav-inner { padding: 1.25rem 1rem 2rem; }
  .mobile-close { top: 1rem; right: 1rem; }
  .mobile-logo { gap: 0.3rem; }
  .mobile-menu li a { font-size: 1rem; padding: 0.7rem 0; }
  .mobile-actions { margin-top: 1.5rem; }
  .mobile-actions .btn-chunk { font-size: 0.9rem; padding: 0.85rem 1.25rem; }
}

/* ── Sticky ATC bar — above mobile safe area ── */
@media (max-width: 480px) {
  .sticky-atc { padding: 0.6rem 0.85rem; padding-bottom: calc(0.6rem + env(safe-area-inset-bottom)); }
  .sticky-atc-product strong { font-size: 0.78rem; }
  .sticky-price { font-size: 0.75rem; }
  .sticky-atc-btn { font-size: 0.8rem !important; padding: 0.6rem 1rem !important; }
}

/* ── Social proof toast — smaller on phone ── */
@media (max-width: 480px) {
  .sp-toast { bottom: 1rem; left: 0.75rem; max-width: 260px; font-size: 0.8rem; padding: 0.7rem 0.9rem; }
  .sp-toast-icon { font-size: 1rem; }
}

/* ── Age gate ── */
@media (max-width: 480px) {
  .age-gate-box { padding: 2rem 1.25rem; border-radius: 20px; }
  .age-gate-heading { font-size: 1.5rem; }
  .age-gate p { font-size: 0.88rem; margin-bottom: 1.25rem; }
  .age-gate-buttons .btn-chunk,
  .age-gate-buttons .btn-outline { font-size: 0.88rem; padding: 0.8rem 1.25rem; width: 100%; text-align: center; }
}

/* ── General touch targets — minimum 44×44px ── */
@media (max-width: 768px) {
  .icon-btn, .cart-btn, .hamburger,
  .search-pill-toggle, .search-pill-close {
    min-width: 44px; min-height: 44px;
  }
  .filter-cat-item { min-height: 40px; display: flex; align-items: center; }
  .shop-atc-btn { min-height: 40px; }
}

/* ── Prevent horizontal scroll ── */
@media (max-width: 768px) {
  .site-content, .shop-wrap, .shop-main { max-width: 100%; overflow-x: hidden; }
  img, video { max-width: 100%; }
}

/* ════════════════════════════════════════════════════════════
   CITY LANDING PAGES — London / Manchester / Birmingham /
   Leeds / Bristol. One template, five pages, unique copy each.
════════════════════════════════════════════════════════════ */

.city-page { background: var(--cream); }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.city-breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem 0.5rem;
  font-size: 0.82rem;
  color: var(--ink-soft, #555);
  display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap;
}
.city-breadcrumb a { color: inherit; text-decoration: none; opacity: 0.7; }
.city-breadcrumb a:hover { opacity: 1; color: var(--ink); }
.city-breadcrumb span[aria-current] { font-weight: 600; color: var(--ink); }

/* ── Hero ───────────────────────────────────────────────────── */
.city-hero {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.city-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 320px; height: 320px;
  background: var(--lime);
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}
.city-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.city-hero-tag {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}
.city-hero-h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.city-hero-sub {
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: 0.85;
  margin: 0 0 1.75rem;
  max-width: 640px;
}
.city-hero-cta {
  display: flex; gap: 0.85rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.city-hero-cta .btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2.5px solid var(--cream);
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.88rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.city-hero-cta .btn-outline:hover { background: var(--cream); color: var(--ink); }
.city-hero-points {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.92rem;
  opacity: 0.9;
}

/* ── Intro lead paragraph ──────────────────────────────────── */
.city-intro {
  padding: 3.5rem 2rem 2rem;
}
.city-intro-inner {
  max-width: 880px;
  margin: 0 auto;
}
.city-intro-lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
}

/* ── Generic city section bits ─────────────────────────────── */
.city-section-title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.city-section-sub {
  font-size: 1rem;
  color: var(--ink-soft, #555);
  margin: 0 0 1.75rem;
  max-width: 640px;
}

/* ── Delivery ───────────────────────────────────────────────── */
.city-delivery { padding: 3rem 2rem; background: var(--butter, #fff1c4); }
.city-delivery-inner { max-width: 1180px; margin: 0 auto; }

.city-delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2.5rem;
}
.city-delivery-card {
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  padding: 1.25rem 1.1rem;
  box-shadow: 4px 4px 0 var(--ink);
}
.city-delivery-icon { font-size: 1.6rem; display: block; margin-bottom: 0.35rem; }
.city-delivery-card h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.4rem;
}
.city-delivery-card p { font-size: 0.95rem; font-weight: 600; margin: 0 0 0.3rem; line-height: 1.3; }
.city-delivery-card small { font-size: 0.78rem; opacity: 0.65; line-height: 1.35; display: block; }

/* Postcodes */
.city-postcodes {
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  padding: 1.5rem;
}
.city-postcodes-title {
  font-family: "Archivo Black", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.city-postcode-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1.5px dashed rgba(10,10,10,0.12);
}
.city-postcode-row:last-child { border-bottom: none; }
.city-postcode-label {
  font-family: "Archivo Black", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.7;
}
.city-postcode-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.city-postcode-chip {
  background: var(--ink);
  color: var(--lime);
  padding: 0.28rem 0.65rem;
  border-radius: 6px;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

/* ── Products ───────────────────────────────────────────────── */
.city-products { padding: 4rem 2rem; }
.city-products-inner { max-width: 1280px; margin: 0 auto; }
.city-product-grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.city-product-grid > * { min-width: 0; }
.city-product-item {
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.15s;
}
.city-product-item:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.city-product-link { display: block; text-decoration: none; color: inherit; }
.city-product-img-wrap {
  background: #fff;
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 2.5px solid var(--ink);
  padding: 1rem;
}
.city-product-img-wrap img { width: 100%; height: 100%; object-fit: contain; }
.city-product-info { padding: 1rem 1.1rem 1.25rem; }
.city-product-name {
  font-family: "Archivo Black", sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.city-product-price { font-size: 1rem; font-weight: 700; }
.city-products-cta { text-align: center; margin-top: 2rem; }

/* ── Culture / context ─────────────────────────────────────── */
.city-culture { padding: 3.5rem 2rem; background: var(--ink); color: var(--cream); }
.city-culture-inner { max-width: 880px; margin: 0 auto; }
.city-culture .city-section-title { color: var(--lime); }
.city-culture-body { font-size: 1.05rem; line-height: 1.7; opacity: 0.9; margin: 0; }

/* ── Neighbourhoods ─────────────────────────────────────────── */
.city-neighbourhoods { padding: 3.5rem 2rem; }
.city-neighbourhoods-inner { max-width: 1080px; margin: 0 auto; }
.city-hood-grid {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.city-hood-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--butter, #fff1c4);
  border: 2px solid var(--ink);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
}
.city-hood-chip svg { color: var(--hot); }

/* ── Why-local ──────────────────────────────────────────────── */
.city-why { padding: 3rem 2rem; background: var(--lime); }
.city-why-inner {
  max-width: 880px; margin: 0 auto;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 22px;
  padding: 2rem 2rem 2.2rem;
  box-shadow: 6px 6px 0 var(--ink);
}
.city-why p { font-size: 1.02rem; line-height: 1.65; margin: 0; }

/* ── Reviews ────────────────────────────────────────────────── */
.city-reviews { padding: 3.5rem 2rem; background: var(--cream); }
.city-reviews-inner { max-width: 1180px; margin: 0 auto; }
.city-review-grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.city-review-grid > * { min-width: 0; }
.city-review-card {
  background: var(--butter, #fff1c4);
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  padding: 1.5rem 1.4rem;
  box-shadow: 4px 4px 0 var(--ink);
}
.city-review-stars { color: var(--hot); font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 0.65rem; }
.city-review-text { font-size: 0.98rem; line-height: 1.55; margin: 0 0 1rem; font-style: italic; }
.city-review-meta { display: flex; flex-direction: column; gap: 0.1rem; font-size: 0.85rem; }
.city-review-meta strong { font-family: "Archivo Black", sans-serif; text-transform: uppercase; letter-spacing: 0.02em; font-size: 0.78rem; }
.city-review-meta span { opacity: 0.6; font-size: 0.78rem; }

/* ── FAQ ────────────────────────────────────────────────────── */
.city-faq { padding: 3.5rem 2rem; }
.city-faq-inner { max-width: 880px; margin: 0 auto; }
.city-faq-list { list-style: none; margin: 0; padding: 0; }
.city-faq-item {
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.city-faq-item details summary {
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.city-faq-item details summary::-webkit-details-marker { display: none; }
.city-faq-item details summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 700;
  transition: transform 0.2s;
  margin-left: 0.75rem;
  flex-shrink: 0;
}
.city-faq-item details[open] summary::after { transform: rotate(45deg); }
.city-faq-item details[open] summary { background: var(--lime); }
.city-faq-item details p {
  padding: 0 1.4rem 1.3rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── Related cities ─────────────────────────────────────────── */
.city-related { padding: 3.5rem 2rem; background: var(--butter, #fff1c4); }
.city-related-inner { max-width: 1080px; margin: 0 auto; }
.city-related-grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.city-related-grid > * { min-width: 0; }
.city-related-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.15s;
}
.city-related-card:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.city-related-pin { font-size: 1.2rem; }
.city-related-name {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  flex: 1;
  font-size: 0.95rem;
}
.city-related-time { font-size: 0.75rem; opacity: 0.65; }
.city-related-arrow { font-size: 1.2rem; }

/* ── Final CTA ──────────────────────────────────────────────── */
.city-final-cta {
  padding: 4rem 2rem 5rem;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}
.city-final-cta-inner { max-width: 720px; margin: 0 auto; }
.city-final-cta h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}
.city-final-cta p { font-size: 1rem; opacity: 0.85; margin: 0 0 1.75rem; }
.btn-chunk.btn-chunk-lg { font-size: 1rem; padding: 1rem 1.75rem; }

/* ════════════════════════════════════════════════════════════
   CITY PAGES — RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .city-delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .city-product-grid  { grid-template-columns: repeat(3, 1fr); }
  .city-review-grid   { grid-template-columns: repeat(2, 1fr); }
  .city-related-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .city-hero { padding: 3rem 1.25rem 3.5rem; }
  .city-hero-h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .city-hero-sub { font-size: 0.98rem; }
  .city-hero-points { font-size: 0.85rem; gap: 0.4rem 1rem; }

  .city-intro,
  .city-delivery,
  .city-products,
  .city-culture,
  .city-neighbourhoods,
  .city-why,
  .city-reviews,
  .city-faq,
  .city-related,
  .city-final-cta { padding-left: 1rem; padding-right: 1rem; }

  .city-product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .city-review-grid  { grid-template-columns: 1fr; }
  .city-related-grid { grid-template-columns: 1fr; }
  .city-delivery-grid { gap: 0.7rem; }
  .city-postcode-row { grid-template-columns: 1fr; gap: 0.4rem; padding: 0.75rem 0; }
  .city-product-name { font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .city-delivery-grid { grid-template-columns: 1fr; }
  .city-hero-cta { flex-direction: column; align-items: stretch; }
  .city-hero-cta .btn-chunk,
  .city-hero-cta .btn-outline { width: 100%; justify-content: center; text-align: center; }
  .city-why-inner { padding: 1.5rem 1.25rem; border-radius: 18px; }
  .city-faq-item details summary { font-size: 0.85rem; padding: 1rem 1.1rem; }
  .city-faq-item details p { padding: 0 1.1rem 1.1rem; font-size: 0.9rem; }
}

/* ════════════════════════════════════════════════════════════
   CITY UNIQUE BLOCKS — one type per city, never repeated
   - London: zone delivery table
   - Manchester: satellites grid
   - Birmingham: wider-coverage list
   - Leeds: university tips
   - Bristol: craft picks grid
════════════════════════════════════════════════════════════ */

.city-unique { padding: 3.5rem 2rem; }
.city-unique-inner { max-width: 1080px; margin: 0 auto; }

/* Background variants give each city visual divergence */
.city-unique--zone_table       { background: var(--cream); }
.city-unique--satellites_grid  { background: var(--butter, #fff1c4); }
.city-unique--wider_coverage   { background: var(--cream); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.city-unique--university_guide { background: var(--lime); }
.city-unique--craft_selection  { background: var(--ink); color: var(--cream); }
.city-unique--craft_selection .city-section-title { color: var(--lime); }
.city-unique--craft_selection .city-section-sub   { color: rgba(255,248,235,0.75); }

/* ── LONDON: zone table ─────────────────────────────────────── */
.city-zone-table {
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--ink);
  margin-top: 1.5rem;
}
.city-zone-row {
  display: grid;
  grid-template-columns: 130px 1fr 160px;
  gap: 1rem;
  padding: 0.95rem 1.25rem;
  align-items: center;
  border-bottom: 1.5px solid rgba(10,10,10,0.08);
}
.city-zone-row:last-child { border-bottom: none; }
.city-zone-head {
  background: var(--ink);
  color: var(--lime);
  font-family: "Archivo Black", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.city-zone-label {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  font-size: 0.92rem;
}
.city-zone-pcs { font-size: 0.88rem; line-height: 1.35; opacity: 0.85; }
.city-zone-win {
  background: var(--lime);
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.78rem;
  text-align: center;
}
.city-zone-footer {
  margin: 1.25rem 0 0;
  font-size: 0.88rem;
  opacity: 0.7;
  font-style: italic;
}

/* ── MANCHESTER: satellites grid ────────────────────────────── */
.city-sat-grid {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.city-sat-grid > * { min-width: 0; }
.city-sat-card {
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: 3px 3px 0 var(--ink);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.city-sat-pin { font-size: 1.2rem; flex-shrink: 0; }
.city-sat-card strong {
  display: block;
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.15rem;
}
.city-sat-pc {
  display: inline-block;
  background: var(--ink);
  color: var(--lime);
  padding: 0.15rem 0.5rem;
  border-radius: 5px;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.7rem;
  margin-bottom: 0.4rem;
}
.city-sat-note {
  display: block;
  font-size: 0.78rem;
  opacity: 0.7;
  line-height: 1.35;
}

/* ── BIRMINGHAM: wider coverage list ────────────────────────── */
.city-cov-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.city-cov-row {
  background: var(--butter, #fff1c4);
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.city-cov-main { display: flex; align-items: center; gap: 0.75rem; }
.city-cov-main strong {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.city-cov-pc {
  background: var(--ink);
  color: var(--lime);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.75rem;
}
.city-cov-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.85rem;
}
.city-cov-pop {
  font-family: "Archivo Black", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--hot);
  color: var(--cream);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
.city-cov-note { opacity: 0.7; }

/* ── LEEDS: university delivery tips ────────────────────────── */
.city-tips-list {
  list-style: none;
  counter-reset: tip;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.city-tip-item {
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  padding: 1.1rem 1.25rem 1.1rem 4.25rem;
  position: relative;
  box-shadow: 4px 4px 0 var(--ink);
  counter-increment: tip;
}
.city-tip-item::before {
  content: counter(tip);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.95rem;
}
.city-tip-icon {
  font-size: 1.1rem;
  margin-right: 0.4rem;
}
.city-tip-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  display: inline;
}

/* ── BRISTOL: craft picks grid ──────────────────────────────── */
.city-craft-grid {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.city-craft-grid > * { min-width: 0; }
.city-craft-card {
  background: rgba(255,248,235,0.06);
  border: 2px solid var(--lime);
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  position: relative;
  transition: transform 0.15s;
}
.city-craft-card:hover { transform: translateY(-3px); }
.city-craft-tag {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
}
.city-craft-title {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 0.6rem;
  line-height: 1.2;
  color: var(--cream);
}
.city-craft-body {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  opacity: 0.85;
}

/* ════════════════════════════════════════════════════════════
   UNIQUE BLOCKS — RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .city-sat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .city-unique { padding: 2.5rem 1rem; }
  .city-zone-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 1rem 1.1rem;
  }
  .city-zone-head { display: none; }
  .city-zone-win { justify-self: start; }
  .city-sat-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .city-cov-row { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .city-cov-meta { width: 100%; justify-content: flex-start; flex-wrap: wrap; }
  .city-tip-item { padding: 1rem 1rem 1rem 3.75rem; }
  .city-tip-item::before { width: 30px; height: 30px; font-size: 0.85rem; left: 0.85rem; }
  .city-craft-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .city-sat-grid { grid-template-columns: 1fr; }
}
