/* ======================================================
   TOKYO CENTRAL — Modern Redesign
   Japanese aesthetic: warm, clean, subtle traditional motifs
   ====================================================== */

/* ── Design Tokens ── */
:root {
  /* Palette — Japanese earth tones */
  --green:        #2E7D32;
  --green-dark:   #1B5E20;
  --green-light:  #4CAF50;
  --cream:        #F5F0DC;
  --cream-light:  #FAF8F0;
  --cream-dark:   #EDE8D0;
  --gold:         #F5A623;
  --gold-dark:    #D4901A;
  --charcoal:     #2C2C2C;
  --ink:          #1A1A1A;
  --stone:        #6B6B6B;
  --mist:         #A8A8A0;
  --silk:         #F9F7F1;
  --white:        #FFFFFF;
  --red-accent:   #C62828;

  /* Typography */
  --font-body:    'Satoshi', 'DM Sans', system-ui, sans-serif;
  --font-display: 'Noto Serif JP', Georgia, serif;
  --font-ui:      'DM Sans', 'Satoshi', system-ui, sans-serif;

  /* Spacing (4px base) */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Radius */
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Shadows — warm-toned */
  --shadow-sm:  0 1px 3px rgba(42, 40, 30, 0.06), 0 1px 2px rgba(42, 40, 30, 0.04);
  --shadow-md:  0 4px 12px rgba(42, 40, 30, 0.08), 0 2px 4px rgba(42, 40, 30, 0.04);
  --shadow-lg:  0 12px 32px rgba(42, 40, 30, 0.10), 0 4px 8px rgba(42, 40, 30, 0.04);
  --shadow-xl:  0 20px 48px rgba(42, 40, 30, 0.14), 0 8px 16px rgba(42, 40, 30, 0.06);

  /* Transitions */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.4, 0, 1, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --content-narrow: 640px;
  --content-default: 1080px;
  --content-wide:   1240px;
  --nav-height:     72px;
}

/* ── Skip Link (WCAG 2.4.1) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: 999;
  padding: var(--space-3) var(--space-6);
  background: var(--green);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  text-decoration: none;
  transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ── Screen reader only ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Override Hydrogen scaffold defaults that conflict with TC styles */
body > main { margin: 0; }
a { text-decoration: none; }
a:hover { text-decoration: none; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── Global Focus Styles (WCAG 2.4.7 / 2.4.11 / 2.4.12) ── */
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-interactive);
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

input {
  font: inherit;
  border: none;
  background: none;
}

/* ── Utility ── */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-8); }
}

/* External link indicator — small arrow appended to anchors opening a new tab.
   Add .no-external-icon when the link is wrapping an image/card and the
   icon would clutter the layout. */
a[target="_blank"]:not(.no-external-icon)::after {
  content: '\2197'; /* ↗ */
  display: inline-block;
  margin-left: 0.25em;
  font-size: 0.85em;
  vertical-align: 0.05em;
  opacity: 0.65;
}

.section-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(27, 94, 32, 0.10);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: var(--space-3);
}

.section-subtitle {
  font-size: 16px;
  color: var(--stone);
  max-width: 520px;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header .section-subtitle {
  margin-inline: auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  transition: background var(--transition-interactive),
              color var(--transition-interactive),
              box-shadow var(--transition-interactive),
              transform var(--transition-interactive);
  white-space: nowrap;
}

.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}


/* ══════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 240, 0.85);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(42, 40, 30, 0.06);
  transition: background 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out);
}

.nav.scrolled {
  background: rgba(250, 248, 240, 0.96);
  box-shadow: var(--shadow-sm);
}

/* Spacer: push content below the fixed nav (mirrors header.liquid 64px spacer div) */
#main-content { padding-top: var(--nav-height); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Matches the page content width — the Option-3 search bar fills the
     middle of this for the balanced look from the mockup. */
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: 0 var(--space-5);
  height: var(--nav-height);
}

.nav-logo img {
  height: 28px;
  width: auto;
  transition: opacity var(--transition-interactive);
}

.nav-logo:hover img { opacity: 0.7; }

.nav-links {
  display: none;
  gap: var(--space-1);
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    align-items: center;
  }
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--charcoal);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: color var(--transition-interactive),
              background var(--transition-interactive);
  position: relative;
}

/* Animated underline: grows on hover, stays on the current page */
.nav-link::after {
  content: '';
  position: absolute;
  left: var(--space-3);
  right: var(--space-3);
  bottom: 1px;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  color: var(--green);
  background: rgba(46, 125, 50, 0.06);
}
.nav-link:hover::after { transform: scaleX(1); }

/* Current page */
.nav-link-active,
.nav-link[aria-current='page'] {
  color: var(--green);
  font-weight: 600;
}
.nav-link-active::after,
.nav-link[aria-current='page']::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-search-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--charcoal);
  transition: color var(--transition-interactive),
              background var(--transition-interactive);
}

.nav-search-btn:hover {
  color: var(--green);
  background: rgba(46, 125, 50, 0.06);
}

/* Hamburger */
.nav-mobile-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-interactive);
}

@media (min-width: 1024px) {
  .nav-mobile-btn { display: none; }
}

.nav-mobile-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out),
              opacity 0.3s var(--ease-out);
}

.nav-mobile-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-btn.open span:nth-child(2) { opacity: 0; }
.nav-mobile-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  height: calc(100vh - var(--nav-height));
  height: calc(100dvh - var(--nav-height));
  z-index: 99;
  background: var(--cream-light);
  padding: var(--space-6) var(--space-5);
  gap: var(--space-1);
  overflow-y: auto;
  animation: slideDown 0.3s var(--ease-out);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-links.mobile-open .nav-link {
  display: flex;
  align-items: center;
  min-height: 52px;
  font-size: 17px;
  padding: var(--space-3) var(--space-4);
  border-radius: 0;
  border-bottom: 1px solid rgba(42, 40, 30, 0.07);
}
/* Drawer rows use a left bar + tint instead of the desktop underline */
.nav-links.mobile-open .nav-link::after { display: none; }
.nav-links.mobile-open .nav-link:hover {
  background: rgba(46, 125, 50, 0.05);
}
.nav-links.mobile-open .nav-link-active,
.nav-links.mobile-open .nav-link[aria-current='page'] {
  background: rgba(46, 125, 50, 0.08);
  box-shadow: inset 3px 0 0 var(--green);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* Comfortable ADA touch targets for the header icon buttons */
.nav-search-btn,
.nav-mobile-btn {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* The desktop nav row makes the hamburger redundant — re-assert the hide
   (the touch-target rule above otherwise overrides the earlier media query) */
@media (min-width: 1024px) {
  .nav-mobile-btn { display: none; }
}


/* ── Search Overlay ── */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 18, 12, 0.55);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--nav-height) + 24px) var(--space-4) var(--space-8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out);
  overflow-y: auto;
}

.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.search-close {
  position: fixed;
  top: var(--space-4);
  right: var(--space-4);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  transition: background 0.18s var(--ease-out),
              transform 0.18s var(--ease-out);
}

.search-close:hover {
  background: rgba(255, 255, 255, 0.20);
  transform: scale(1.06);
}
.search-close:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
  background: rgba(255, 255, 255, 0.20);
}

/* Unified panel: input + results in one rounded card */
.search-inner {
  width: 100%;
  max-width: 560px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18),
              0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transform: translateY(-12px);
  opacity: 0;
  transition: transform 0.28s var(--ease-out),
              opacity 0.22s var(--ease-out);
}

.search-overlay.open .search-inner {
  transform: translateY(0);
  opacity: 1;
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(42, 40, 30, 0.08);
}

.search-input-icon {
  position: absolute;
  left: var(--space-5);
  color: var(--mist);
  pointer-events: none;
  transition: color 0.18s var(--ease-out);
}

.search-input-wrap:focus-within .search-input-icon { color: var(--green); }

.search-input {
  width: 100%;
  padding: var(--space-4) var(--space-5) var(--space-4) calc(var(--space-5) + 28px);
  font-size: 16px;
  font-family: var(--font-ui);
  background: transparent;
  border: none;
  color: var(--ink);
}

.search-input::placeholder { color: var(--mist); }
.search-input:focus,
.search-input:focus-visible { outline: none; }

.search-hint {
  margin: var(--space-4) auto 0;
  max-width: 640px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  letter-spacing: 0.02em;
}

.search-hint kbd {
  display: inline-block;
  padding: 2px 6px;
  margin: 0 3px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  line-height: 1;
}

/* ── Predictive search results inside the overlay ── */
.search-results {
  background: var(--white);
  max-height: 60vh;
  overflow-y: auto;
}

.search-results:empty { display: none; }

.search-results-empty {
  padding: var(--space-6);
  color: var(--stone);
  font-size: 14px;
  margin: 0;
  text-align: center;
}
.search-results-empty p { margin: 0; }
.search-results-empty-sub {
  margin-top: var(--space-2) !important;
  color: var(--mist);
  font-size: 13px;
}

.search-results-intro {
  padding: var(--space-4) var(--space-5) var(--space-5);
  text-align: left;
}
.search-results-intro-label {
  margin: 0 0 var(--space-3) 0;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  color: var(--mist);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.search-results-intro-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.search-suggest {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--green-dark, #1B5E20);
  font-weight: 600;
  padding: 6px 12px;
  background: rgba(46, 125, 50, 0.08);
  border: 1px solid rgba(46, 125, 50, 0.18);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.15s var(--ease-out),
              border-color 0.15s var(--ease-out);
}
.search-suggest:hover {
  background: rgba(46, 125, 50, 0.14);
  border-color: rgba(46, 125, 50, 0.32);
}
.search-suggest:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.search-results .predictive-search-result {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid rgba(42, 40, 30, 0.06);
}

.search-results .predictive-search-result:last-child { border-bottom: none; }

.search-results .predictive-search-result h5 {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mist);
  margin: 0 0 var(--space-2);
  padding: 0 var(--space-2);
}

.search-results .predictive-search-result ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-results .predictive-search-result-item a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-2);
  border-radius: var(--radius-md);
  color: var(--ink);
  text-decoration: none;
  transition: background var(--transition-interactive);
}

.search-results .predictive-search-result-item a:hover,
.search-results .predictive-search-result-item a:focus-visible {
  background: rgba(46, 125, 50, 0.08);
  outline: none;
}

.search-result-meta {
  color: var(--mist);
  font-size: 12px;
  font-weight: 400;
}

.search-results .predictive-search-result-item img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--cream-dark);
}

.search-results .predictive-search-result-item span {
  font-size: 14px;
  line-height: 1.4;
}

.search-results-viewall {
  width: 100%;
  padding: var(--space-4);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  background: var(--cream-light);
  border-top: 1px solid rgba(42, 40, 30, 0.08);
  cursor: pointer;
  text-align: center;
  transition: background var(--transition-interactive);
}

.search-results-viewall:hover { background: var(--cream); }
.search-results-viewall:focus-visible { outline: 2px solid var(--green); outline-offset: -2px; }


/* ══════════════════════════════════════════════════
   HERO SLIDER — from working Liquid theme
   ══════════════════════════════════════════════════ */
.tc-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FAF8F0 0%, #F5F0DC 40%, #EDE8D0 100%);
  padding: 32px 0 0;
}

.tc-hero-track-wrapper {
  overflow: hidden;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}
.tc-hero-track-wrapper:active { cursor: grabbing; }

.tc-hero-track {
  display: flex;
  gap: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.tc-hero-track.dragging { transition: none; }

.tc-hero-slide {
  flex: 0 0 auto;
  /* Mobile: slide is full-width (so no adjacent banner peeks when centered);
     the image inside is inset 20px to match the container width of the
     sections below. Tablet/desktop widths are set in the media queries. */
  width: 100vw;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(42,40,30,0.08), 0 2px 4px rgba(42,40,30,0.04);
  transition: box-shadow 0.3s cubic-bezier(0.16,1,0.3,1),
              transform 0.3s cubic-bezier(0.16,1,0.3,1);
  display: block;
  text-decoration: none;
}
.tc-hero-slide:hover {
  box-shadow: 0 12px 32px rgba(42,40,30,0.10), 0 4px 8px rgba(42,40,30,0.04);
  transform: scale(1.015);
}
.tc-hero-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 1162 / 656;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Arrows */
.tc-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 9999px;
  color: #2C2C2C;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 180ms cubic-bezier(0.16,1,0.3,1),
              color 180ms cubic-bezier(0.16,1,0.3,1),
              transform 180ms cubic-bezier(0.16,1,0.3,1);
}
.tc-hero-arrow svg { width: 18px; height: 18px; }
.tc-hero-prev { left: 12px; }
.tc-hero-next { right: 12px; }

.tc-hero-arrow:hover {
  background: rgba(255,255,255,0.95);
  color: #1B5E20;
  transform: translateY(-50%) scale(1.08);
}
.tc-hero-arrow:active { transform: translateY(-50%) scale(0.95); }
.tc-hero-arrow:focus-visible { outline: 3px solid #2E7D32; outline-offset: 2px; }

/* Pause/Play button */
.tc-hero-pause {
  position: absolute;
  bottom: 56px;
  right: 16px;
  z-index: 10;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 9999px;
  color: #2C2C2C;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  transition: background 180ms ease;
}
.tc-hero-pause:hover { background: rgba(255,255,255,0.95); color: #1B5E20; }
.tc-hero-pause:focus-visible { outline: 3px solid #2E7D32; outline-offset: 2px; }

/* Dots */
.tc-hero-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-top: 24px;
  padding-bottom: 4px;
}
.tc-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #B8B8B0;
  border: none;
  cursor: pointer;
  padding: 0;
  box-sizing: content-box;
  transition: background 0.3s cubic-bezier(0.16,1,0.3,1),
              width 0.3s cubic-bezier(0.16,1,0.3,1),
              transform 0.2s cubic-bezier(0.16,1,0.3,1);
}
.tc-hero-dot.active {
  background: #2E7D32;
  width: 28px;
  border-radius: 4px;
}
.tc-hero-dot:hover:not(.active) {
  background: #6B6B6B;
  transform: scale(1.15);
}
.tc-hero-dot:focus-visible { outline: 3px solid #2E7D32; outline-offset: 4px; }

/* Progress bar */
.tc-hero-progress {
  width: 80px;
  height: 2px;
  background: rgba(0,0,0,0.08);
  border-radius: 2px;
  margin: 12px auto 32px;
  overflow: hidden;
  position: relative;
}
.tc-hero-progress::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 0%;
  background: #2E7D32;
  border-radius: 2px;
  opacity: 0.75;
}
.tc-hero-progress.tc-animating::after {
  animation: tcHeroProgress 8s linear forwards;
}
@keyframes tcHeroProgress {
  from { width: 0%; }
  to { width: 100%; }
}

/* Phone + tablet: one banner at a time, full-width slide with the image inset
   to the page container width (rounded, no peek). Desktop (>=1024) keeps the
   multi-card carousel below. */
@media (max-width: 1023px) {
  .tc-hero-slide { width: 100vw; border-radius: 0; box-shadow: none; padding-inline: var(--space-5); }
  .tc-hero-slide:hover { transform: none; box-shadow: none; }
  .tc-hero-slide img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }
  .tc-hero-track { gap: 0; padding: 0; }
}

/* Responsive */
@media (min-width: 640px) {
  .tc-hero { padding: 40px 0 0; }
}
@media (min-width: 768px) {
  .tc-hero-arrow { width: 40px; height: 40px; }
  .tc-hero-arrow svg { width: 20px; height: 20px; }
  .tc-hero-prev { left: 20px; }
  .tc-hero-next { right: 20px; }
}
@media (min-width: 1024px) {
  .tc-hero-slide { width: 600px; }
  .tc-hero-track { gap: 24px; padding: 0 calc((100vw - 1240px) / 2 + 32px); }
}


/* ══════════════════════════════════════════════════
   ONLINE ARRIVALS
   ══════════════════════════════════════════════════ */
.arrivals {
  padding: var(--space-16) 0;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream-light) 30%, var(--cream-light) 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle Japanese pattern — asanoha (hemp leaf) inspired */
.arrivals::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(60deg, transparent, transparent 28px, rgba(46, 125, 50, 0.025) 28px, rgba(46, 125, 50, 0.025) 29px),
    repeating-linear-gradient(-60deg, transparent, transparent 28px, rgba(46, 125, 50, 0.025) 28px, rgba(46, 125, 50, 0.025) 29px);
  pointer-events: none;
}

/* Grid layout with image */
.arrivals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 768px) {
  .arrivals-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

.arrivals-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.arrivals-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.arrivals-with-image .arrivals-inner {
  text-align: left;
  max-width: none;
  margin-inline: 0;
}

.arrivals-with-image .arrivals-actions {
  justify-content: flex-start;
}

@media (max-width: 767px) {
  /* Show the arrivals photo at its natural proportion (no 4:3 crop) */
  .arrivals-image {
    aspect-ratio: auto;
    max-height: none;
  }
  .arrivals-image img {
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
  }
  .arrivals-with-image .arrivals-inner {
    text-align: center;
  }
  /* Arrivals — centered, full-width stacked buttons so they never collide */
  .arrivals-with-image .arrivals-actions {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
  }
  .arrivals-with-image .arrivals-actions .btn {
    width: 100%;
    justify-content: center;
  }
  /* About — image on top (like arrivals), shown at its natural proportion
     (no 4:3 crop so the whole storefront is visible), centered content,
     quote card, full-width CTA */
  .about-image {
    order: -1;
    margin-bottom: var(--space-8);
  }
  .about-image img {
    aspect-ratio: auto;
    object-fit: contain;
  }
  .about-content {
    text-align: center;
  }
  .about-quote {
    border-left: 0;
    padding: var(--space-4) var(--space-5);
    background: rgba(46, 125, 50, 0.07);
    border-radius: var(--radius-lg);
    text-align: center;
    margin: var(--space-6) 0;
  }
  .about-content > .btn {
    display: flex;
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
    justify-content: center;
  }
}

.arrivals-inner {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

.arrivals-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(27, 94, 32, 0.10);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.arrivals-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: var(--space-4);
}

.arrivals-text {
  font-size: 17px;
  color: var(--charcoal);
  margin-bottom: var(--space-2);
}

.arrivals-sub {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.65;
  margin-bottom: var(--space-8);
}

.arrivals-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}


/* ══════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════ */
.about {
  padding: var(--space-20) 0;
  background: var(--cream-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
  }
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.about-content .section-badge { margin-bottom: var(--space-3); }

.about-lead {
  font-size: 18px;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: var(--space-4);
  line-height: 1.5;
}

.about-body {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}

.about-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  color: var(--green-dark);
  margin: var(--space-6) 0;
  padding-left: var(--space-5);
  border-left: 3px solid var(--gold);
}

.about-cta-text {
  margin-bottom: var(--space-6);
}


/* ══════════════════════════════════════════════════
   PROMOTIONS
   ══════════════════════════════════════════════════ */
.promos {
  padding: var(--space-20) 0;
  background: var(--silk);
}

.promos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .promos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .promos-grid { grid-template-columns: repeat(4, 1fr); }
}

.promo-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-interactive),
              transform var(--transition-interactive);
}

.promo-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.promo-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}

.promo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.promo-card:hover .promo-img img { transform: scale(1.05); }

.promo-img-pattern {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.promo-pattern-inner {
  color: var(--green);
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.promo-body {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.promo-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-2);
}

.promo-desc {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-3);
}

.promo-link {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  transition: color var(--transition-interactive);
}

.promo-card:hover .promo-link { color: var(--green-dark); }


/* ══════════════════════════════════════════════════
   NEWS & BLOG
   ══════════════════════════════════════════════════ */
.news {
  padding: var(--space-20) 0;
  background: var(--cream-light);
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── News carousel: 3 cards visible on desktop, 2 on tablet, swipe/arrow scroll ── */
.news-grid.news-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.news-grid.news-carousel::-webkit-scrollbar { display: none; }
.news-grid.news-carousel > .news-card {
  flex: 0 0 calc(50% - var(--space-6) / 2);
  scroll-snap-align: start;
}
@media (min-width: 1024px) {
  .news-grid.news-carousel > .news-card {
    flex-basis: calc((100% - 2 * var(--space-6)) / 3);
  }
}
@media (max-width: 767px) {
  .news-grid.news-carousel > .news-card {
    flex-basis: 86%;
  }
}

.news-carousel-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: var(--space-4, 16px);
}
.news-carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 1.5px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  color: #2E7D32;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.news-carousel-arrow:hover {
  background: #2E7D32;
  border-color: #2E7D32;
  color: #fff;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-interactive),
              transform var(--transition-interactive);
}

.news-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.news-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.news-card:hover .news-img img { transform: scale(1.04); }

.news-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
  color: var(--mist);
}

.news-body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--mist);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2);
}

.news-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: var(--space-3);
}

.news-excerpt {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--space-4);
}

.news-link {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}

.news-card:hover .news-link { color: var(--green-dark); }

.news-more {
  text-align: center;
  margin-top: var(--space-10);
}


/* ══════════════════════════════════════════════════
   LOCATIONS
   ══════════════════════════════════════════════════ */
.locations {
  padding: var(--space-20) 0;
  background: var(--cream);
  position: relative;
}

.locations-body {
  text-align: center;
  font-size: 15px;
  color: var(--stone);
  max-width: 680px;
  margin: 0 auto var(--space-10);
  line-height: 1.7;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  max-width: 800px;
  margin: 0 auto var(--space-10);
}

@media (min-width: 640px) {
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 960px) {
  .locations-grid { grid-template-columns: repeat(4, 1fr); }
}

.loc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-5) var(--space-3);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-interactive),
              transform var(--transition-interactive);
  text-align: center;
  position: relative;
}

.loc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.loc-icon {
  color: var(--green);
}

.loc-name {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}

.loc-card-new {
  border: 1.5px solid var(--green);
}

.loc-badge {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--red-accent);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.loc-distance {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  color: var(--green-dark);
  background: rgba(27, 94, 32, 0.10);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-top: 2px;
  letter-spacing: 0.02em;
}

/* ── Locations finder (geolocation control) ── */
.locations-finder {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-6);
  min-height: 44px;
  align-items: center;
}

.locations-finder-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.locations-finder-status,
.locations-finder-error {
  margin: 0;
  font-size: 13px;
  color: var(--stone);
}

.locations-finder-error {
  color: var(--mist);
}

.locations-finder-reset {
  margin-left: var(--space-2);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 8px;
  border-radius: var(--radius-md);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.locations-finder-reset:hover { background: rgba(27, 94, 32, 0.06); }
.locations-finder-reset:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  text-decoration: none;
}

/* Location grid visibility is now controlled by React state (slicing the
   array), so no CSS hiding rule is needed here. */

.locations-toggle {
  text-align: center;
  margin-top: var(--space-6);
  margin-bottom: var(--space-10);
}

.locations-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.locations-toggle-icon {
  transition: transform 0.3s var(--ease-out);
}

.locations-expanded ~ .locations-toggle .locations-toggle-icon {
  transform: rotate(180deg);
}

.locations-cta {
  text-align: center;
}

.locations-cta p {
  font-size: 15px;
  color: var(--stone);
  margin-bottom: var(--space-5);
  max-width: 540px;
  margin-inline: auto;
}

.locations-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}


/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: var(--space-8); }
}

.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: var(--space-4);
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-5);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  transition: background 0.18s var(--ease-out),
              transform 0.18s var(--ease-out);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

.footer-social a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.footer-heading {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-4);
  position: relative;
  padding-bottom: var(--space-3);
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--green-light, #4CAF50);
  border-radius: 2px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  padding: var(--space-1) 0;
  transition: color var(--transition-interactive);
}

.footer-link:hover,
.footer-link:focus-visible { color: var(--white); }

.footer-newsletter-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.footer-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  background: var(--white);
  color: var(--green-dark);
  border: 1px solid var(--white);
  border-radius: var(--radius-full);
  transition: background 0.18s var(--ease-out),
              transform 0.18s var(--ease-out),
              box-shadow 0.18s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  width: 100%;
}

.footer-card-btn:hover {
  background: var(--cream-light);
  color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-card-btn:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.footer-card-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── Footer accordion (mobile collapse, desktop expanded) ── */
.footer-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.footer-accordion-toggle {
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  position: relative;
  width: 100%;
}

.footer-accordion-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

@media (max-width: 767px) {
  .footer-accordion {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    padding-bottom: var(--space-3);
  }
  .footer-accordion-toggle {
    padding-right: var(--space-7);
  }
  /* Chevron uses ::before so the heading's ::after accent line can coexist. */
  .footer-accordion-toggle::before {
    content: '';
    position: absolute;
    right: 4px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-75%) rotate(45deg);
    transition: transform 0.2s var(--ease-out);
  }
  .footer-accordion.is-open .footer-accordion-toggle::before {
    transform: translateY(-25%) rotate(-135deg);
  }
  /* Hide content unless explicitly opened */
  .footer-accordion:not(.is-open) .footer-accordion-content {
    display: none;
  }
}

@media (min-width: 768px) {
  /* Desktop: toggle is a static heading, content is always visible. */
  .footer-accordion-toggle {
    pointer-events: none;
    cursor: default;
  }
  .footer-accordion-toggle::before { display: none; }
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-newsletter-row {
  display: flex;
  gap: var(--space-2);
}

.footer-newsletter-row > .footer-newsletter-input { flex: 1; min-width: 0; }

/* Personalize toggle (compact link styled as button) */
.footer-newsletter-toggle {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 4px 0;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  text-align: left;
  letter-spacing: 0.01em;
  transition: color 0.18s var(--ease-out);
}

.footer-newsletter-toggle:hover,
.footer-newsletter-toggle:focus-visible {
  color: var(--white);
  outline: none;
}

/* Collapsible extra fields (name + store) */
.footer-newsletter-extra {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s var(--ease-out),
              margin 0.28s var(--ease-out),
              opacity 0.2s var(--ease-out);
  opacity: 0;
}

.footer-newsletter-extra > * {
  overflow: hidden;
  min-height: 0;
}

.footer-newsletter-extra.is-expanded {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: var(--space-1);
}

/* When collapsed, the inner column must collapse to zero height */
.footer-newsletter-extra:not(.is-expanded) > * {
  visibility: hidden;
}

.footer-newsletter-extra-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 12px 14px;
}

.footer-newsletter-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--white);
  cursor: pointer;
  flex-shrink: 0;
}

.footer-newsletter-consent label { cursor: pointer; }

.footer-newsletter-consent a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
}

.footer-newsletter-input,
.footer-newsletter-select {
  width: 100%;
  padding: var(--space-3) var(--space-3);
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: var(--radius-md, 6px);
  transition: border-color var(--transition-interactive),
              background var(--transition-interactive);
}

.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.70);
}

.footer-newsletter-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='white' stroke-width='1.5'><path d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.footer-newsletter-select option {
  color: #111;
}

.footer-newsletter-input:focus,
.footer-newsletter-select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.14);
}

.footer-newsletter-status {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: var(--space-1);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-8);
  padding-top: var(--space-7);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap; /* the Do Not Sell link is long — wrap on narrow screens */
  row-gap: 6px;
  gap: var(--space-4);
}
@media (max-width: 640px) {
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-legal { justify-content: center; }
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  transition: color var(--transition-interactive);
}

.footer-legal a:hover,
.footer-legal a:focus-visible { color: var(--white); }

/* "Cookie preferences" — reopens the consent dialog; styled like the links */
.footer-legal-prefs {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: color var(--transition-interactive);
}
.footer-legal-prefs:hover,
.footer-legal-prefs:focus-visible { color: var(--white); }

.footer-attribution {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-interactive);
}

.footer-attribution:hover { color: rgba(255, 255, 255, 0.8); }


/* ══════════════════════════════════════════════════
   NEWSLETTER + SMART SAVER POPUP
   ══════════════════════════════════════════════════ */
.subscribe-popup {
  position: fixed;
  bottom: var(--space-5);
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 90;
  width: min(780px, calc(100vw - 32px));
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s var(--ease-out),
              opacity 0.4s var(--ease-out),
              visibility 0.4s;
  overflow: hidden;
}

.subscribe-popup.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

/* When minimized, hide the main popup body */
.subscribe-popup.minimized {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  visibility: hidden;
}

/* Close button */
.popup-close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--stone);
  z-index: 5;
  transition: background var(--transition-interactive),
              color var(--transition-interactive);
}

.popup-close:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--charcoal);
}

/* Inner layout — side by side */
.popup-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
}

/* Left side: Smart Saver Card */
.popup-card-side {
  flex: 1;
  padding: var(--space-8) var(--space-6);
  background: linear-gradient(145deg, rgba(46, 125, 50, 0.06) 0%, rgba(46, 125, 50, 0.02) 100%);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.popup-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.popup-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.popup-card-desc {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.55;
}

.popup-card-btn {
  align-self: flex-start;
  margin-top: var(--space-1);
}

/* Vertical divider */
.popup-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
  position: relative;
  flex-shrink: 0;
}

.popup-divider-text {
  position: absolute;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  color: var(--mist);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--white);
  padding: var(--space-2) 0;
}

/* Right side: Newsletter */
.popup-newsletter-side {
  flex: 1;
  padding: var(--space-8) var(--space-6);
  padding-right: var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-newsletter-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-1);
  line-height: 1.2;
}

.popup-newsletter-desc {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.55;
  margin-bottom: var(--space-4);
}

.popup-form-row {
  display: flex;
  gap: var(--space-2);
}

.popup-input {
  flex: 1;
  padding: var(--space-2) var(--space-4);
  font-size: 14px;
  background: var(--cream-light);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-full);
  color: var(--ink);
  transition: border-color var(--transition-interactive),
              box-shadow var(--transition-interactive);
  min-width: 0;
}

.popup-input::placeholder { color: var(--mist); }

.popup-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}

.popup-submit {
  flex-shrink: 0;
}

.popup-form-note {
  font-size: 11px;
  color: var(--mist);
  margin-top: var(--space-2);
  padding-left: var(--space-4);
}

/* Success state */
.popup-form-success {
  display: none;
  align-items: center;
  gap: var(--space-2);
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
}

.popup-form.submitted { display: none; }
.popup-form.submitted ~ .popup-form-success { display: flex; }

/* Minimized pill button */
.popup-pill {
  position: fixed;
  bottom: var(--space-5);
  right: var(--space-5);
  display: none;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  z-index: 89;
  transition: background var(--transition-interactive),
              transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
  transform: translateY(120px);
  opacity: 0;
}

.popup-pill.show {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  animation: pillSlideUp 0.4s var(--ease-out) forwards;
}

@keyframes pillSlideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.popup-pill:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.popup-pill:active {
  transform: translateY(0) scale(0.97);
}

/* Mobile responsive — stack vertically */
@media (max-width: 640px) {
  .subscribe-popup {
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateX(0) translateY(120%);
    width: 100%;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    max-height: 85vh;
    overflow-y: auto;
  }

  .subscribe-popup.show {
    transform: translateX(0) translateY(0);
  }

  .subscribe-popup.minimized {
    transform: translateX(0) translateY(120%);
  }

  .popup-inner {
    flex-direction: column;
  }

  .popup-card-side {
    padding: var(--space-6) var(--space-5);
    padding-top: var(--space-8);
  }

  .popup-divider {
    width: auto;
    height: 1px;
    flex-direction: row;
  }

  .popup-divider-text {
    position: relative;
    padding: 0 var(--space-3);
  }

  .popup-newsletter-side {
    padding: var(--space-5);
    padding-right: var(--space-5);
  }

  .popup-form-row {
    flex-direction: column;
  }

  .popup-form-note {
    padding-left: 0;
    text-align: center;
  }

  .popup-pill {
    right: var(--space-4);
    bottom: var(--space-4);
  }
}


/* ══════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ══════════════════════════════════════════════════ */
.reveal {
  opacity: 1; /* Visible by default (no-JS fallback) */
}

.reveal.hidden {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out),
              transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ══════════════════════════════════════════════════
   RESPONSIVE REFINEMENTS
   ══════════════════════════════════════════════════ */

/* Small mobile tweaks */
@media (max-width: 480px) {
  .tc-hero-arrow { width: 28px; height: 28px; }
  .tc-hero-arrow svg { width: 14px; height: 14px; }

  .arrivals { padding: var(--space-12) 0; }
  .about { padding: var(--space-12) 0; }
  .promos { padding: var(--space-12) 0; }
  .news { padding: var(--space-12) 0; }
  .locations { padding: var(--space-12) 0; }

  .section-header { margin-bottom: var(--space-8); }
  .footer-grid { gap: var(--space-8); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Tablet refinements */
@media (min-width: 768px) and (max-width: 1023px) {
  .promos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal.hidden {
    opacity: 1;
    transform: none;
  }
  .tc-hero-slide { transition-duration: 0.01ms !important; }
}

/* ══════════════════════════════════════════════════════════════
   Header v2 — "Option I" (Walmart-style): wide search bar +
   labeled icons on desktop; store strip + search pill on mobile.
   ══════════════════════════════════════════════════════════════ */

/* Header is taller now (2 desktop rows / 3 mobile rows). The spacer,
   drawer and sticky offsets all read --nav-height. */
:root { --nav-height: 167px; }
@media (min-width: 1024px) { :root { --nav-height: 117px; } }

.nav-inner { height: 64px; }
@media (min-width: 1024px) { .nav-inner { height: 72px; } }

/* show/hide helpers */
.nav-desktop-only { display: none !important; }
@media (min-width: 1024px) {
  .nav-desktop-only { display: inline-flex !important; }
  div.nav-searchbar.nav-desktop-only { display: block !important; }
  .nav-mobile-only { display: none !important; }
}

/* ── Desktop wide search bar (inline input + dropdown) ──
   Width/placement come solely from the header grid in tc-cart.css; this
   base rule only owns positioning context for the dropdown. */
.nav-searchbar {
  position: relative;
}
.nav-searchbar-form {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  /* reset.css sets a global `form { max-width: 400px }` at ≥768px — override
     it so the search pill fills its container instead of capping at 400px. */
  width: 100%;
  max-width: none;
  height: 44px;
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: 999px;
  padding: 0 4px 0 18px;
  margin: 0;
  transition: box-shadow var(--transition-interactive);
}
.nav-searchbar-form:focus-within { box-shadow: 0 2px 10px rgba(46, 125, 50, 0.2); }
.nav-searchbar-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-ui);
  font-size: 13.5px;
  color: var(--charcoal);
}
.nav-searchbar-input::placeholder { color: #6B6B6B; }
.nav-searchbar-input::-webkit-search-cancel-button { -webkit-appearance: none; }
.nav-searchbar-go {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  margin: 0;
  cursor: pointer;
  border: none;
}
.nav-searchbar-go:hover { background: var(--green-dark); }

.nav-searchdrop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(42, 40, 30, 0.16);
  padding: 6px;
  z-index: 120;
  max-height: 420px;
  overflow-y: auto;
}
.nav-searchdrop-empty {
  padding: 14px 12px;
  font-size: 13.5px;
  color: var(--stone);
  margin: 0;
}
.nav-searchdrop-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 9px;
  text-decoration: none;
  color: var(--charcoal);
}
.nav-searchdrop-row.is-active { background: rgba(46, 125, 50, 0.08); }
.nav-searchdrop-label {
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-searchdrop-row small {
  margin-left: auto;
  font-size: 11.5px;
  color: var(--stone);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-searchdrop-all {
  display: block;
  width: 100%;
  text-align: left;
  padding: 11px 12px;
  margin-top: 4px;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: transparent;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
}
.nav-searchdrop-all:hover { background: rgba(46, 125, 50, 0.06); }

/* ── Labeled icon buttons (desktop shows the word under the icon) ── */
.nav-labeled {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 44px;
  min-height: 44px;
  padding: 4px 9px;
  border-radius: var(--radius-sm);
  color: var(--charcoal);
  position: relative;
  transition: background var(--transition-interactive);
}
.nav-labeled:hover { background: rgba(46, 125, 50, 0.08); }
.nav-iconlabel {
  display: none;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  max-width: 88px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 1024px) { .nav-iconlabel { display: block; } }

/* ── Desktop nav row 2 ── */
@media (min-width: 1024px) {
  .nav-links {
    justify-content: center;
    gap: 2px;
    padding: 2px 16px 8px;
  }
  .nav-links .nav-link {
    font-size: 13px;
    padding: var(--space-2) 10px;
    white-space: nowrap;
  }
}

/* ── Mobile bar: store strip + search pill ── */
.nav-mobilebar {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 0 14px 12px;
}
.nav-storestrip {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  min-height: 36px;
  background: rgba(46, 125, 50, 0.09);
  border: 1px solid rgba(46, 125, 50, 0.18);
  border-radius: 10px;
  padding: 7px 12px;
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--green-dark);
  text-align: left;
}
.nav-storestrip svg { flex-shrink: 0; }
.nav-storestrip small {
  margin-left: auto;
  font-weight: 500;
  font-size: 11px;
  color: var(--stone);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 45%;
}
.nav-searchpill {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  height: 44px;
  background: var(--white);
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  padding: 0 16px;
  font-family: var(--font-ui);
  font-size: 13.5px;
  color: #8a8a8a;
  text-align: left;
}
.nav-searchpill svg { color: var(--green); flex-shrink: 0; }

.nav-labeled,
.nav-labeled:hover { text-decoration: none; }

/* ── Search dropdown: workflow states (recent/popular/no-match) ── */
.nav-searchdrop-grp {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9a958a;
  padding: 10px 12px 5px;
  margin: 0;
}
.nav-searchdrop-ic {
  width: 22px;
  display: flex;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.nav-searchdrop-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px 12px 10px;
}
.nav-searchdrop-chips a {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  background: #F4F0E3;
  border-radius: 999px;
  padding: 7px 14px;
  text-decoration: none;
}
.nav-searchdrop-chips a:hover { background: rgba(46, 125, 50, 0.1); color: var(--green-dark); }
.nav-searchdrop-nores { padding: 18px 14px 6px; text-align: center; }
.nav-searchdrop-nores-big { font-size: 15px; font-weight: 600; color: var(--charcoal); margin: 0 0 3px; }
.nav-searchdrop-nores-sub { font-size: 13px; color: var(--mist); margin: 0 0 14px; }
.nav-searchdrop-all { display: flex; align-items: center; gap: 8px; }

/* ── First-visit newsletter popup (homepage) ─────────────────────────
   Non-blocking corner card. Kept off <aside> (global drawer CSS) and the
   form gets an explicit max-width to escape reset.css's form{max-width:400px}. */
.tc-nl-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(20, 24, 20, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: tc-nl-overlay-in 0.3s ease;
}
@keyframes tc-nl-overlay-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.tc-nl-popup {
  position: relative;
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: 42% 1fr;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: tc-nl-popup-in 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.tc-nl-popup-media {
  background-size: cover;
  background-position: center;
  min-height: 100%;
}
.tc-nl-popup-body {
  padding: 32px 30px 24px;
  min-width: 0;
}
@keyframes tc-nl-popup-in {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .tc-nl-popup-overlay, .tc-nl-popup { animation: none; }
}
@media (max-width: 767px) {
  .tc-nl-popup { grid-template-columns: 1fr; }
  .tc-nl-popup-media { min-height: 0; height: 130px; }
  .tc-nl-popup-body { padding: 22px 20px 18px; }
}
.tc-nl-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
  color: var(--charcoal, #222);
  cursor: pointer;
  border-radius: 9999px;
}
.tc-nl-popup-close:hover { background: #fff; }
.tc-nl-popup-title {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 24px;
  margin: 0 0 8px;
  color: var(--charcoal, #1a1a1a);
}
.tc-nl-popup-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--mist, #666);
  margin: 0 0 16px;
}
.tc-nl-popup-form { max-width: none; }
.tc-nl-popup-row {
  display: flex;
  gap: 10px;
}
.tc-nl-popup-input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 12px 14px;
  border: 1.5px solid rgba(0, 0, 0, 0.14);
  border-radius: 10px;
  font-size: 14px;
  background: var(--cream-light, #faf7ef);
}
.tc-nl-popup-input:focus {
  outline: 2px solid #2e7d32;
  outline-offset: 1px;
}
.tc-nl-popup-submit {
  flex: 0 0 auto;
  padding: 12px 22px;
  border: none;
  border-radius: 9999px;
  background: #2e7d32;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.tc-nl-popup-submit:hover { background: #256428; }
.tc-nl-popup-submit:disabled { opacity: 0.6; cursor: default; }
.tc-nl-popup-consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 12px;
}
.tc-nl-popup-consent input {
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: #2e7d32;
}
.tc-nl-popup-consent label {
  font-size: 12px;
  line-height: 1.45;
  color: var(--mist, #666);
}
.tc-nl-popup-consent a {
  color: #2e7d32;
  text-decoration: underline;
}
.tc-nl-popup-note {
  font-size: 12px;
  color: var(--mist, #999);
  margin: 10px 0 0;
}
.tc-nl-popup-error {
  font-size: 13px;
  color: #b3261e;
  margin: 10px 0 0;
}
.tc-nl-popup-badge {
  display: inline-block;
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 9999px;
  margin-bottom: 12px;
}
.tc-nl-popup-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 18px 8px 14px;
}
.tc-nl-popup-success-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 9999px;
  background: rgba(46, 125, 50, 0.12);
  color: #2e7d32;
  margin-bottom: 6px;
}
.tc-nl-popup-success-title {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 22px;
  color: var(--charcoal, #1a1a1a);
}
.tc-nl-popup-success-sub {
  font-size: 14px;
  color: var(--mist, #666);
}

/* Honeypot field (bots fill it, humans never see it) — shared by all forms. */
.tc-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
