/* ============================================================
   Tom & Tina Design System
   ============================================================ */

:root {
  --cream-50: #fffdf9;
  --cream-100: #f8f6f3;
  --cream-200: #f1ebe4;
  --warm-100: #eadfd6;
  --warm-200: #ddcbb9;
  --gold-500: #c8a97e;
  --gold-600: #b88f5f;
  --coffee-700: #5b432d;
  --coffee-900: #2e2e2e;
  --muted: #75695f;
  --border: rgba(46, 46, 46, 0.1);
  --shadow-soft: 0 18px 45px rgba(79, 55, 35, 0.08);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-full: 999px;
  --container: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--coffee-900);
  background: var(--cream-50);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

/* ── Layout ── */
.tt-container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* ── Buttons ── */
.tt-btn {
  display: inline-block;
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-sm);
  padding: 13px 24px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
  text-decoration: none;
}

.tt-btn-primary {
  background: var(--gold-500);
  color: #fff;
  box-shadow: 0 12px 30px rgba(200, 169, 126, 0.25);
}
.tt-btn-primary:hover { background: var(--gold-600); transform: translateY(-2px); color: #fff; }

.tt-btn-outline {
  background: rgba(255,255,255,0.55);
  color: var(--gold-600);
}
.tt-btn-outline:hover { background: var(--gold-500); color: #fff; }

/* ── Section title ── */
.tt-section-title {
  text-align: center;
  margin: 0 0 34px;
  letter-spacing: 0.18em;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}
.tt-section-title::after {
  content: "🐾";
  display: block;
  color: var(--gold-500);
  letter-spacing: 0;
  font-size: 18px;
  margin-top: 8px;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.tt-topbar {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--cream-200);
  color: var(--coffee-700);
  font-size: 14px;
}

/* ============================================================
   HEADER
   ============================================================ */
.tt-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.tt-header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.tt-logo-img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid var(--gold-500);
  object-fit: cover;
  flex: 0 0 auto;
}

/* Brand */
.tt-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  text-decoration: none;
}

.tt-logo-mark {
  width: 58px;
  height: 58px;
  border: 2px solid var(--gold-500);
  border-radius: 50%;
  position: relative;
  background: var(--cream-50);
  overflow: hidden;
  flex: 0 0 auto;
}
.tt-logo-mark::before,
.tt-logo-mark::after {
  content: "";
  position: absolute;
  left: 17px;
  width: 19px;
  height: 19px;
  border: 2px solid var(--gold-500);
  border-radius: 50% 50% 45% 45%;
  background: var(--cream-50);
}
.tt-logo-mark::before { top: 10px; }
.tt-logo-mark::after  { bottom: 10px; }

.tt-logo-line {
  position: absolute;
  right: 15px;
  top: 5px;
  bottom: 5px;
  width: 3px;
  background: var(--gold-500);
  transform: rotate(4deg);
  border-radius: 4px;
}
.tt-logo-eye {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--coffee-900);
  border-radius: 50%;
  z-index: 2;
}
.tt-logo-eye.one { left: 25px; top: 18px; }
.tt-logo-eye.two { left: 25px; bottom: 18px; }

.tt-brand-text strong {
  display: block;
  font-size: 22px;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--coffee-900);
}
.tt-brand-text span {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  color: var(--gold-600);
  letter-spacing: 0.32em;
  font-weight: 700;
}

/* Nav */
.tt-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.tt-nav a { color: var(--coffee-900); }
.tt-nav a.active,
.tt-nav a:hover { color: var(--gold-600); }

/* Header actions */
.tt-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.tt-icon-btn {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
  font-size: 20px;
  color: var(--coffee-900);
  text-decoration: none;
}
.tt-icon-btn:hover { background: var(--cream-200); color: var(--coffee-900); }

.tt-badge {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-500);
  color: #fff;
  font-size: 11px;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.tt-mobile-menu-btn { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.tt-hero {
  background: linear-gradient(90deg, var(--cream-50) 0%, #f7eee5 100%);
  overflow: hidden;
}

.tt-hero-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) 1.15fr;
  align-items: stretch;
  min-height: 560px;
  gap: 0;
}

.tt-hero-copy {
  padding: 60px 40px 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tt-hero-copy h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.96;
  margin: 0 0 24px;
  font-weight: 400;
  color: #3c2b1f;
}
.tt-hero-copy p {
  max-width: 390px;
  font-size: 21px;
  margin: 0 0 28px;
  color: var(--muted);
}
.tt-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.tt-hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  color: var(--gold-600);
  font-weight: 700;
  font-size: 14px;
}
.tt-hero-mobile-scene {
  display: none;
  position: relative;
}
.tt-hero-mobile-card {
  position: absolute;
  overflow: hidden;
  background: rgba(255,255,255,.72);
  box-shadow: 0 26px 60px rgba(118, 87, 53, 0.14);
}
.tt-hero-mobile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tt-hero-photo {
  min-height: 560px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  /* Break out to screen right edge */
  margin-right: calc( ((100vw - var(--container)) / -2) - 0px );
}

.tt-hero-photo .tt-slider,
.tt-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Ensure Owl Carousel inner wrappers stretch to full height */
.tt-hero-photo .owl-stage-outer,
.tt-hero-photo .owl-stage,
.tt-hero-photo .owl-item,
.tt-hero-photo .item {
  height: 100%;
}
.tt-hero-photo .item img {
  border-radius: 0 !important;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.tt-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.tt-trust-item {
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid var(--border);
}
.tt-trust-item:last-child { border-right: 0; }

.tt-trust-icon { font-size: 34px; color: var(--gold-500); }
.tt-trust-item strong { display: block; font-size: 14px; }
.tt-trust-item span  { display: block; font-size: 12px; color: var(--muted); }

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.tt-products-section { padding: 70px 0; }

.tt-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tt-product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: 0.25s ease;
  position: relative;
}
.tt-product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }

.tt-product-media {
  aspect-ratio: 1 / 1.08;
  background: linear-gradient(135deg, #fbf5ee, #eaded2);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.tt-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tt-product-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: calc(100% - 64px);
}
.tt-product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--coffee-900);
  border: 1px solid rgba(201, 174, 140, 0.3);
  box-shadow: 0 10px 24px rgba(81, 59, 38, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tt-product-badge.is-best-seller {
  background: var(--gold-500);
  color: #fff;
  border-color: var(--gold-500);
}
.tt-product-badges.is-detail {
  position: static;
  margin-bottom: 14px;
  max-width: none;
}

.tt-heart-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--gold-600);
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 16px;
}
.tt-heart-btn.is-active {
  background: var(--gold-500);
  color: #fff;
}

.tt-wishlist-drawer {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 210;
  transform: translateY(100%);
  transition: transform .28s ease;
}
.tt-wishlist-drawer.is-open { transform: translateY(0); }
.tt-wishlist-drawer-inner {
  max-width: 520px;
  margin: 0 auto;
  background: #fffdf9;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -18px 48px rgba(43, 31, 20, 0.16);
  min-height: 240px;
  max-height: min(76vh, 720px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tt-wishlist-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 19, 12, 0.36);
  z-index: 209;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.tt-wishlist-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.tt-wishlist-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}
.tt-wishlist-head h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}
.tt-wishlist-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--coffee-900);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.tt-wishlist-body {
  padding: 10px 20px 20px;
  overflow: auto;
}
.tt-wishlist-empty {
  padding: 28px 8px 12px;
  text-align: center;
  color: var(--muted);
}
.tt-wishlist-empty .tt-btn { margin-top: 16px; }
.tt-wishlist-list { display: grid; gap: 12px; }
.tt-wishlist-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
}
.tt-wishlist-item-media {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: #f7efe7;
  aspect-ratio: 1;
}
.tt-wishlist-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tt-wishlist-item-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--coffee-900);
}
.tt-wishlist-item-price {
  color: var(--coffee-900);
  font-weight: 800;
}
.tt-wishlist-remove {
  border: 0;
  background: transparent;
  color: var(--gold-600);
  font-weight: 800;
  cursor: pointer;
}

.tt-product-info { padding: 14px; }
.tt-swatches { display: flex; gap: 6px; margin-bottom: 8px; }
.tt-swatch {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.12);
  display: inline-block;
}
.tt-product-name { margin: 0 0 5px; font-size: 15px; font-weight: 600; }
.tt-price { font-weight: 900; color: var(--coffee-900); }
.tt-quick-view {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 800;
  color: var(--coffee-700);
  letter-spacing: .05em;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tt-quick-view:hover { color: var(--gold-600); }

.tt-qv-modal[hidden] { display: none !important; }
.tt-qv-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.tt-qv-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(46, 33, 22, 0.45);
  backdrop-filter: blur(8px);
}
.tt-qv-dialog {
  position: relative;
  width: min(920px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  margin: 24px auto;
  background: linear-gradient(180deg, #fffdf9 0%, #fbf4ed 100%);
  border: 1px solid rgba(191, 159, 117, 0.22);
  border-radius: 32px;
  box-shadow: 0 30px 90px rgba(60, 40, 24, 0.22);
}
.tt-qv-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--coffee-900);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(60, 40, 24, 0.12);
}
.tt-qv-body { padding: 0; }
.tt-qv-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  min-height: 540px;
}
.tt-qv-media {
  display: block;
  background: linear-gradient(135deg, #efe2d5, #f8eee2);
  min-height: 100%;
}
.tt-qv-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.tt-qv-media-empty { min-height: 420px; }
.tt-qv-content {
  padding: 58px 52px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tt-qv-kicker {
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.tt-qv-title {
  margin: 14px 0 10px;
  font-family: var(--serif);
  font-size: 48px;
  line-height: .96;
  font-weight: 400;
  color: var(--coffee-900);
}
.tt-qv-subtitle {
  margin: 0 0 18px;
  color: var(--coffee-700);
  font-size: 16px;
}
.tt-qv-price-wrap { margin-bottom: 18px; }
.tt-qv-price-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.tt-qv-price {
  font-size: 32px;
  font-weight: 900;
  color: var(--coffee-900);
}
.tt-qv-description {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.8;
}
.tt-qv-meta + .tt-qv-meta { margin-top: 16px; }
.tt-qv-meta-label {
  display: block;
  margin-bottom: 10px;
  color: var(--coffee-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.tt-qv-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tt-qv-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(191, 159, 117, 0.28);
  color: var(--coffee-800);
  font-size: 13px;
  font-weight: 700;
}
.tt-qv-chip-colour {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
}
.tt-qv-actions { margin-top: 30px; }
.tt-qv-loading,
.tt-qv-feedback {
  min-height: 320px;
  padding: 64px 40px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--coffee-800);
}
.tt-qv-feedback p { margin: 0 0 18px; }

.tt-center { text-align: center; margin-top: 34px; }

/* ============================================================
   BRAND STORY
   ============================================================ */
.tt-story { padding: 20px 0 70px; }

.tt-story-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fbf4ed;
  box-shadow: var(--shadow-soft);
}

.tt-story-photo {
  min-height: 390px;
  background: linear-gradient(135deg, #eee0d3, #f8eee2);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.tt-story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tt-story-content {
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.tt-eyebrow {
  color: var(--gold-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.tt-story-content h2 {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1.05;
  font-weight: 400;
  margin: 16px 0 22px;
  color: var(--coffee-900);
}
.tt-story-content p { color: var(--muted); max-width: 460px; }

/* ============================================================
   CATEGORY SECTION
   ============================================================ */
.tt-category-section { padding: 20px 0 70px; }

.tt-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tt-category-card {
  min-height: 190px;
  border-radius: var(--radius-md);
  background-color: #ead5c3;
  background-size: cover;
  background-position: center;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tt-category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(60,35,15,.52) 0%, rgba(60,35,15,.12) 55%, transparent 100%);
  border-radius: inherit;
  pointer-events: none;
}
.tt-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(100,60,20,.18);
}
.tt-category-card > div {
  position: relative;
  z-index: 1;
}
.tt-category-card h3 {
  letter-spacing: .12em;
  font-size: 16px;
  margin: 0 0 12px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.tt-category-card .tt-btn-outline {
  border-color: rgba(255,255,255,.7);
  color: #fff;
  font-size: 12px;
  padding: 6px 16px;
}
.tt-category-card .tt-btn-outline:hover {
  background: rgba(255,255,255,.18);
  border-color: #fff;
}
/* Hide the fallback <img> tag when used as background */
.tt-category-card img.tt-cat-bg-img {
  display: none;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.tt-newsletter {
  background: var(--cream-200);
  padding: 50px 0;
}
.tt-newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.tt-newsletter h3 {
  font-family: var(--serif);
  font-size: 26px;
  margin: 0 0 8px;
  font-weight: 400;
}
.tt-newsletter p { color: var(--muted); margin: 0; }
.tt-newsletter-form form,
.tt-newsletter-form .mc4wp-form-fields,
.tt-newsletter-fallback {
  display: flex;
  gap: 12px;
  align-items: center;
}
.tt-newsletter-form p {
  margin: 0;
}
.tt-newsletter-form input[type="email"],
.tt-newsletter-fallback input[type="email"] {
  flex: 1;
  min-width: 0;
}
.tt-newsletter-form input[type="submit"],
.tt-newsletter-form button[type="submit"],
.tt-newsletter-fallback button[type="submit"] {
  border: 0;
  cursor: pointer;
}
.tt-newsletter-status,
.tt-newsletter-note {
  margin-top: 12px;
  font-size: 14px;
}
.tt-newsletter-status.is-success,
.tt-newsletter-status.is-warning {
  color: var(--coffee-900);
}
.tt-newsletter-status.is-error {
  color: #9f3a2a;
}
.tt-newsletter-form.is-page form {
  flex-direction: column;
  align-items: stretch;
}
.tt-input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 14px 18px;
  outline: none;
}
.tt-input:focus { border-color: var(--gold-500); }

/* ============================================================
   FOOTER
   ============================================================ */
.tt-site-footer {
  padding: 52px 0 20px;
  background: #fff;
  border-top: 1px solid var(--border);
}

.tt-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 36px;
}

.tt-footer-col h4 {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--coffee-900);
}
.tt-footer-col a,
.tt-footer-col p {
  display: block;
  color: var(--muted);
  margin: 8px 0;
  font-size: 14px;
}
.tt-footer-col a:hover { color: var(--gold-600); }

.tt-footer-brand p { color: var(--muted); font-size: 14px; margin: 12px 0 0; }

.tt-copyright {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  margin-top: 30px;
  padding-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

/* ============================================================
   MOBILE BOTTOM NAV
   ============================================================ */
.tt-mobile-bottom-nav { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .tt-container { width: min(calc(100% - 28px), var(--container)); }

  /* Header */
  .tt-topbar { font-size: 12px; }
  .tt-header-inner { height: 64px; }
  .tt-nav,
  .tt-desktop-only { display: none; }
  .tt-mobile-menu-btn { display: grid; }

  /* Logo size on mobile */
  .tt-logo-img  { width: 42px; height: 42px; }
  .tt-logo-mark { width: 42px; height: 42px; }

  /* Brand: tighter gap, no min-width, one-line text */
  .tt-brand { min-width: auto; gap: 8px; }
  .tt-brand-text strong {
    font-size: 13px;
    letter-spacing: 0.14em;
    white-space: nowrap;
  }
  .tt-brand-text span { display: none; }

  /* Search dropdown: fixed below header, centered in viewport */
  #tt-search-dropdown {
    position: fixed !important;
    top: 64px !important;   /* match tt-header-inner height */
    left: 14px !important;
    right: 14px !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    border-radius: 10px !important;
    z-index: 10000 !important;
  }

  /* Hero */
  .tt-hero {
    background: linear-gradient(180deg, #fffdf9 0%, #f8efe6 100%);
  }

  /* Switch to flex-column so we can reorder photo above copy */
  .tt-hero-grid {
    display: flex !important;
    flex-direction: column;
    min-height: auto;
    gap: 0;
  }

  /* ── Mobile slider: full-bleed above text ───────────────── */
  .tt-hero-photo {
    display: block !important;   /* show the slider on mobile */
    order: -1;                   /* move it visually above .tt-hero-copy */
    flex: none;
    height: 260px;
    min-height: 0;
    /* full-bleed: stretch past container's 14px padding on both sides */
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: 0;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
    position: relative;
    margin-bottom: 28px;
  }
  /* Owl Carousel inner wrappers must fill the 260px height */
  .tt-hero-photo .tt-slider { position: absolute; top: 0; left: 0; }
  .tt-hero-photo .owl-stage-outer,
  .tt-hero-photo .owl-stage,
  .tt-hero-photo .owl-item,
  .tt-hero-photo .item { height: 100%; }
  .tt-hero-photo .item img {
    border-radius: 0 !important;
    width: 100%; height: 100%; object-fit: cover;
  }
  /* Owl dots on mobile */
  .tt-hero-photo .owl-dots {
    position: absolute;
    bottom: 12px;
    left: 0; right: 0;
    text-align: center;
    z-index: 10;
  }
  .tt-hero-photo .owl-dot span {
    background: rgba(255,255,255,.55) !important;
  }
  .tt-hero-photo .owl-dot.active span {
    background: #fff !important;
  }

  /* ── Hide static mobile image cards (no longer needed) ───── */
  .tt-hero-mobile-scene { display: none !important; }

  /* ── Text copy below slider ─────────────────────────────── */
  .tt-hero-copy {
    position: relative;
    padding: 0 0 32px;
    min-height: auto;
    justify-content: flex-start;
    order: 0;
  }
  .tt-hero-copy h1 {
    margin-top: 0;
    margin-bottom: 12px;
    max-width: 290px;
    font-size: 50px;
    line-height: 0.95;
  }
  .tt-hero-copy p {
    max-width: 100%;
    font-size: 16px;
    margin-bottom: 22px;
  }
  .tt-hero-actions {
    display: grid;
    gap: 10px;
  }
  .tt-hero-actions .tt-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
  }
  .tt-hero-note {
    margin-top: 18px;
    font-size: 13px;
  }

  /* Trust */
  .tt-trust-item { padding: 16px 8px; flex-direction: column; text-align: center; gap: 6px; }
  .tt-trust-icon { font-size: 24px; }
  .tt-trust-item strong { font-size: 11px; }
  .tt-trust-item span { display: none; }

  .tt-qv-dialog {
    width: min(100vw - 20px, 920px);
    margin: 10px auto;
    border-radius: 24px;
  }
  .tt-qv-grid { grid-template-columns: 1fr; min-height: 0; }
  .tt-qv-media,
  .tt-qv-media-empty { min-height: 280px; }
  .tt-qv-content { padding: 30px 22px 26px; }
  .tt-qv-title { font-size: 36px; }
  .tt-qv-price { font-size: 28px; }

  /* Products */
  .tt-product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .tt-products-section { padding: 30px 0 38px; }
  .tt-section-title { margin-bottom: 22px; font-size: 18px; }

  /* Story */
  .tt-story { padding: 8px 0 42px; }
  .tt-story-card { grid-template-columns: 1fr; }
  .tt-story-content { padding: 30px; }
  .tt-story-content h2 { font-size: 34px; }
  .tt-story-photo { min-height: 280px; }

  /* Category */
  .tt-category-grid { grid-template-columns: 1fr; }

  /* Newsletter */
  .tt-newsletter-inner { grid-template-columns: 1fr; }
  .tt-newsletter-form form,
  .tt-newsletter-form .mc4wp-form-fields,
  .tt-newsletter-fallback { flex-direction: column; align-items: stretch; }

  /* Footer */
  .tt-footer-grid { grid-template-columns: 1fr 1fr; }
  .tt-footer-brand { grid-column: 1 / -1; }
  .tt-copyright { flex-direction: column; gap: 10px; }

  /* Mobile bottom nav */
  .tt-mobile-bottom-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    height: 66px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    z-index: 60;
  }
  .tt-mobile-bottom-nav a {
    display: grid;
    place-items: center;
    font-size: 11px;
    color: var(--muted);
    text-decoration: none;
    gap: 2px;
    position: relative;
  }
  .tt-mobile-bottom-nav a .tt-nav-icon { font-size: 20px; }
  .tt-mobile-bottom-nav a.active { color: var(--gold-600); font-weight: 800; }
  #tt-wishlist-count {
    position: absolute;
    top: 8px;
    right: calc(50% - 18px);
  }

  body { padding-bottom: 80px; }
}

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.tt-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 280px;
  background: var(--cream-50);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-soft);
}
.tt-mobile-drawer.is-open { transform: translateX(0); }

.tt-drawer-inner { padding: 24px; }

.tt-drawer-close {
  background: transparent;
  border: 0;
  font-size: 20px;
  cursor: pointer;
  color: var(--muted);
  margin-bottom: 24px;
  display: block;
}

.tt-drawer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tt-drawer-nav a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
  color: var(--coffee-900);
}
.tt-drawer-nav a:hover { color: var(--gold-600); }

.tt-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.tt-drawer-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.tt-hero-slider { position: relative; overflow: hidden; }

.tt-slider-wrap { position: relative; }

.tt-slider .tt-slide img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
}

.tt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(46,30,18,0.55) 0%, rgba(46,30,18,0.15) 60%, transparent 100%);
  display: flex;
  align-items: center;
}

.tt-hero-overlay .tt-hero-copy h1 { color: #fff; }
.tt-hero-overlay .tt-hero-copy p  { color: rgba(255,255,255,0.88); }
.tt-hero-overlay .tt-hero-note    { color: rgba(255,255,255,0.80); }

/* OWL overrides */
.tt-slider .owl-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); }
.tt-slider .owl-dot span { background: rgba(255,255,255,0.5) !important; }
.tt-slider .owl-dot.active span { background: var(--gold-500) !important; }
.tt-slider .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.25) !important;
  border-radius: 50% !important;
  width: 44px; height: 44px;
  font-size: 20px !important;
  color: #fff !important;
}
.tt-slider .owl-nav .owl-prev { left: 16px; }
.tt-slider .owl-nav .owl-next { right: 16px; }

/* Product placeholder */
.tt-product-placeholder {
  width: 72%;
  aspect-ratio: .82 / 1;
  border-radius: 44% 44% 20% 20%;
  background: linear-gradient(var(--warm-100) 45%, #fff8ef 45%);
}

@media (max-width: 900px) {
  .tt-slider .tt-slide img { height: 320px; }
  .tt-hero-overlay .tt-hero-copy h1 { font-size: 36px; }
  .tt-hero-overlay .tt-hero-copy p  { font-size: 15px; }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.tt-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
  padding-bottom: 12px;
}
.tt-breadcrumb a { color: var(--muted); }
.tt-breadcrumb a:hover { color: var(--gold-600); }
.tt-bc-sep { color: var(--muted); }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.tt-product-detail { padding: 18px 0 70px; }

.tt-detail-grid {
  display: grid;
  grid-template-columns: 110px 1fr 0.85fr;
  gap: 26px;
  align-items: start;
}

/* Thumbnail strip */
.tt-thumbs {
  display: grid;
  gap: 12px;
}
.tt-thumb {
  aspect-ratio: 1;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fbf4ed;
  display: grid;
  place-items: center;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.tt-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tt-thumb.active,
.tt-thumb:hover { border-color: var(--gold-500); }

/* Main image */
.tt-main-product-image {
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #fbf4ed, #ead8c7);
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.tt-main-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* Detail info */
.tt-detail-info h1 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  margin: 0 0 8px;
  color: var(--coffee-900);
}
.tt-product-subtitle {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 12px;
}
.tt-detail-price {
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 24px;
  color: var(--coffee-900);
}
.tt-option-label {
  font-size: 14px;
  font-weight: 800;
  margin: 20px 0 10px;
  color: var(--coffee-900);
}
.tt-option-label .tt-size-guide-link {
  float: right;
  color: var(--gold-600);
  font-weight: 600;
  font-size: 13px;
}
.tt-option-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Size buttons */
.tt-size-btn {
  min-width: 52px;
  height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  color: var(--coffee-900);
  transition: 0.2s ease;
}
.tt-size-btn:hover { border-color: var(--gold-600); color: var(--gold-600); }
.tt-size-btn.active { border-color: var(--gold-600); color: var(--gold-600); font-weight: 900; }

/* Colour buttons */
.tt-colour-btn {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: #fff;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  color: var(--coffee-900);
  transition: 0.2s ease;
}
.tt-colour-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(47,36,27,.08); }
.tt-colour-btn.active { box-shadow: 0 0 0 2px rgba(200,169,126,.28), 0 10px 26px rgba(47,36,27,.10); font-weight: 900; }
.tt-colour-btn-name { font-weight: 800; letter-spacing: .01em; }

/* Quantity control */
.tt-qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 4px;
}
.tt-qty button,
.tt-qty span {
  width: 44px;
  height: 40px;
  border: 0;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  cursor: pointer;
  font-weight: 700;
  color: var(--coffee-900);
}
.tt-qty button:hover { background: var(--cream-200); }
.tt-qty span { font-size: 15px; border-left: 1px solid var(--border); border-right: 1px solid var(--border); }

/* Detail buttons */
.tt-detail-buttons {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}
.tt-detail-buttons .tt-btn { text-align: center; }

/* Benefits */
.tt-benefits {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}

/* ── Product Tabs ── */
.tt-product-tabs { margin-top: 52px; padding-top: 36px; border-top: 1px solid var(--border); }
.tt-tab-nav {
  display: flex;
  gap: 36px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 26px;
  overflow-x: auto;
}
.tt-tab-btn {
  border: 0;
  background: transparent;
  padding: 0 0 14px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
}
.tt-tab-btn.active {
  color: var(--coffee-900);
  border-bottom: 2px solid var(--gold-500);
}
.tt-tab-panel { display: none; }
.tt-tab-panel.active { display: block; }
.tt-product-description, .tt-size-table-content { color: var(--muted); line-height: 1.7; }
.tt-size-table-content table { border-collapse: collapse; width: 100%; }
.tt-size-table-content th,
.tt-size-table-content td { padding: 10px 14px; border: 1px solid var(--border); font-size: 14px; }
.tt-size-table-content th { background: var(--cream-100); font-weight: 800; }

/* Related products */
.tt-related { margin-top: 60px; }

/* ============================================================
   PAGE HERO (used on shop archive + cart)
   ============================================================ */
.tt-page-hero {
  background: linear-gradient(90deg, #fbf5ee, #eaded2);
  padding: 0;
  overflow: hidden;
}
.tt-page-hero-inner {
  display: flex;
  min-height: 420px;
  align-items: stretch;
}
.tt-page-hero-text {
  flex: 0 0 42%;
  max-width: 42%;
  padding: 60px 48px 60px calc((100vw - var(--container)) / 2 + 0px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tt-page-hero-image {
  flex: 1;
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.tt-page-hero-image img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  /* Feather the left edge to blend with cream background */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 18%);
  mask-image: linear-gradient(to right, transparent 0%, black 18%);
}
.tt-page-hero-mobile-scene {
  display: none;
  position: relative;
}
.tt-page-hero-mobile-card {
  position: absolute;
  overflow: hidden;
  background: rgba(255,255,255,.72);
  box-shadow: 0 26px 60px rgba(118, 87, 53, 0.14);
}
.tt-page-hero-mobile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.tt-about-shell {
  padding: 18px 0 80px;
  background:
    radial-gradient(circle at top left, rgba(214,182,146,.14), transparent 28%),
    linear-gradient(180deg, #fffdfa 0%, #fbf5ee 100%);
}
.tt-about-page { display: grid; gap: 38px; }
.tt-about-hero-card,
.tt-about-story-block,
.tt-about-cta {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(206, 182, 151, 0.14);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(81, 59, 38, 0.08);
}
.tt-about-hero-card {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.45fr);
  min-height: 560px;
}
.tt-about-hero-copy {
  padding: 54px 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(90deg, rgba(255,253,250,.96) 0%, rgba(255,253,250,.82) 72%, rgba(255,253,250,0) 100%);
  position: relative;
  z-index: 2;
}
.tt-about-hero-media,
.tt-about-story-media,
.tt-about-cta-media {
  min-height: 100%;
  background: linear-gradient(135deg, #efe0d1, #f8eee2);
}
.tt-about-hero-media img,
.tt-about-story-media img,
.tt-about-cta-media img,
.tt-about-image-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tt-about-eyebrow {
  color: var(--gold-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.tt-about-hero-copy h1,
.tt-about-story-copy h2,
.tt-about-promise-head h2,
.tt-about-cta-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  color: var(--coffee-900);
}
.tt-about-hero-copy h1 { font-size: clamp(46px, 5vw, 70px); }
.tt-about-story-copy h2,
.tt-about-cta-copy h2 { font-size: clamp(34px, 4vw, 54px); }
.tt-about-copy,
.tt-about-copy p,
.tt-about-promise-card p,
.tt-about-cta-copy p {
  color: var(--coffee-700);
  font-size: 16px;
  line-height: 1.9;
}
.tt-about-copy { margin-top: 22px; }
.tt-about-copy > :first-child { margin-top: 0; }
.tt-about-copy > :last-child { margin-bottom: 0; }
.tt-about-hero-mark {
  margin-top: 28px;
  opacity: .2;
}
.tt-about-hero-mark img,
.tt-about-watermark img {
  width: min(170px, 56%);
  height: auto;
}
.tt-about-story-block {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
}
.tt-about-story-block.is-reverse {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}
.tt-about-story-copy {
  padding: 52px 58px;
  position: relative;
}
.tt-about-watermark {
  position: absolute;
  right: 42px;
  bottom: 28px;
  opacity: .14;
}
.tt-about-promise {
  padding: 46px 42px 18px;
  text-align: center;
}
.tt-about-promise-head { margin-bottom: 28px; }
.tt-about-promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.tt-about-promise-card {
  padding: 16px 10px 20px;
}
.tt-about-promise-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(206,182,151,.22);
  color: var(--gold-600);
  font-size: 34px;
  box-shadow: 0 12px 26px rgba(81, 59, 38, 0.06);
}
.tt-about-promise-icon img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
}
.tt-about-promise-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--coffee-900);
}
.tt-about-cta {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: 30px;
  padding: 22px 28px;
}
.tt-about-cta-media {
  min-height: 150px;
  border-radius: 22px;
  overflow: hidden;
}
.tt-about-cta-copy {
  padding-right: 24px;
}
.tt-about-cta-copy p {
  margin: 12px 0 22px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.tt-contact-shell {
  padding: 20px 0 80px;
  background:
    radial-gradient(circle at top left, rgba(214,182,146,.14), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #fbf4ed 100%);
}
.tt-contact-frame {
  background: #fffdf9;
  border-radius: 30px;
  box-shadow: 0 20px 80px rgba(77, 55, 35, 0.08);
  overflow: hidden;
  border: 1px solid rgba(201, 174, 140, 0.16);
}
.tt-contact-hero {
  position: relative;
  min-height: 520px;
  background: linear-gradient(135deg, #efe0d1, #f8eee2);
}
.tt-contact-hero img,
.tt-contact-hero-fallback {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.tt-contact-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 48px;
  background: radial-gradient(circle at 24px 0, transparent 24px, #fffdf9 25px) repeat-x;
  background-size: 96px 48px;
  background-position: center bottom;
}
.tt-contact-paw {
  width: 56px;
  height: 56px;
  margin: -12px auto 0;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  color: var(--gold-600);
  font-size: 28px;
  background: #fffdf9;
  border-radius: 50%;
}
.tt-contact-body {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: 0;
  padding: 20px 34px 40px;
}
.tt-contact-left,
.tt-contact-intro,
.tt-contact-details,
.tt-contact-form-panel {
  min-width: 0;
  padding: 24px 36px;
}
.tt-contact-left,
.tt-contact-form-panel {
  border-left: 1px solid rgba(201, 174, 140, 0.22);
}
.tt-contact-left {
  display: grid;
  grid-template-columns: minmax(240px, .9fr) minmax(260px, 1.1fr);
  align-items: stretch;
  padding: 0;
  border-left: 0;
}
.tt-contact-intro,
.tt-contact-details {
  padding: 24px 36px;
}
.tt-contact-details {
  border-left: 1px solid rgba(201, 174, 140, 0.22);
}
.tt-contact-intro h1,
.tt-contact-form-panel h3 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  line-height: .98;
  font-weight: 400;
  color: var(--coffee-900);
}
.tt-contact-form-panel h3 { font-size: clamp(26px, 3vw, 42px); }
.tt-contact-copy,
.tt-contact-copy p {
  color: var(--coffee-700);
  font-size: 16px;
  line-height: 1.9;
}
.tt-contact-copy > :first-child { margin-top: 0; }
.tt-contact-copy > :last-child { margin-bottom: 0; }
.tt-contact-heart {
  margin-top: 22px;
  font-size: 44px;
  color: var(--gold-500);
  line-height: 1;
}
.tt-contact-mark {
  margin-top: 34px;
  opacity: .24;
}
.tt-contact-mark img {
  width: min(170px, 60%);
  height: auto;
}
.tt-contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tt-contact-detail {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(201, 174, 140, 0.22);
}
.tt-contact-detail:last-child { border-bottom: 0; }
.tt-contact-icon {
  color: var(--gold-600);
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
}
.tt-contact-detail strong {
  display: block;
  margin-bottom: 8px;
  color: var(--coffee-900);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
}
.tt-contact-detail a,
.tt-contact-detail-text {
  color: var(--coffee-700);
  font-size: 15px;
  line-height: 1.85;
}
.tt-contact-form-wrap .wpcf7 { width: 100%; }
.tt-contact-form-wrap .wpcf7 form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.tt-contact-form-wrap .wpcf7 form > p {
  width: 100%;
  margin: 0;
}
.tt-contact-form-wrap .wpcf7 form > p:nth-of-type(1),
.tt-contact-form-wrap .wpcf7 form > p:nth-of-type(2) {
  width: calc(50% - 8px);
}
.tt-contact-form-wrap .wpcf7-form-control-wrap { display: block; }
.tt-contact-form-wrap input[type="text"],
.tt-contact-form-wrap input[type="email"],
.tt-contact-form-wrap input[type="tel"],
.tt-contact-form-wrap textarea {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid rgba(201, 174, 140, 0.42);
  border-radius: 14px;
  background: rgba(255,255,255,0.8);
  color: var(--coffee-900);
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
}
.tt-contact-form-wrap textarea {
  min-height: 180px;
  resize: vertical;
}
.tt-contact-form-wrap input::placeholder,
.tt-contact-form-wrap textarea::placeholder {
  color: #a38e7a;
}
.tt-contact-form-wrap input:focus,
.tt-contact-form-wrap textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(201, 174, 140, 0.12);
}
.tt-contact-form-wrap .wpcf7-submit {
  appearance: none;
  min-width: 266px;
  padding: 16px 28px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #d0ae83 0%, #c69c6d 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(198, 156, 109, 0.24);
}
.tt-contact-form-wrap .wpcf7-spinner { margin: 12px 0 0 10px; }
.tt-contact-form-wrap .wpcf7-response-output {
  width: 100%;
  margin: 8px 0 0 !important;
  border-radius: 12px;
  font-size: 14px;
}
.tt-contact-form-wrap .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 12px;
}

@media (max-width: 900px) {
  .tt-about-shell { padding: 14px 0 56px; }
  .tt-about-page { gap: 22px; }
  .tt-about-hero-card,
  .tt-about-story-block,
  .tt-about-story-block.is-reverse,
  .tt-about-cta {
    grid-template-columns: 1fr;
  }
  .tt-about-hero-card { min-height: 0; }
  .tt-about-hero-copy,
  .tt-about-story-copy {
    padding: 28px 22px;
  }
  .tt-about-promise {
    padding: 30px 18px 10px;
  }
  .tt-about-promise-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .tt-about-promise-card h3 { font-size: 22px; }
  .tt-about-cta {
    gap: 18px;
    padding: 18px;
  }
  .tt-about-cta-copy {
    padding-right: 0;
  }

  .tt-contact-shell { padding: 14px 0 56px; }
  .tt-contact-frame { border-radius: 24px; }
  .tt-contact-hero { min-height: 280px; }
  .tt-contact-hero::after {
    height: 28px;
    background-size: 56px 28px;
  }
  .tt-contact-body {
    grid-template-columns: 1fr;
    padding: 8px 12px 26px;
  }
  .tt-contact-left {
    grid-template-columns: 1fr;
    border-left: 0;
  }
  .tt-contact-intro,
  .tt-contact-details,
  .tt-contact-form-panel {
    padding: 22px 16px;
  }
  .tt-contact-details,
  .tt-contact-form-panel {
    border-left: 0;
    border-top: 1px solid rgba(201, 174, 140, 0.22);
  }
  .tt-contact-mark img { width: 110px; }
  .tt-contact-form-wrap .wpcf7 form > p:nth-of-type(1),
  .tt-contact-form-wrap .wpcf7 form > p:nth-of-type(2) {
    width: 100%;
  }
  .tt-contact-form-wrap .wpcf7-submit {
    width: 100%;
    min-width: 0;
  }
}

/* ============================================================
   SHOP ARCHIVE LAYOUT
   ============================================================ */
.tt-shop-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 48px;
  padding: 50px 0 70px;
}

/* Sidebar */
.tt-sidebar-title {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--coffee-900);
}
.tt-filter-block {
  border-bottom: 1px solid var(--border);
  padding: 0 0 22px;
  margin-bottom: 22px;
}
.tt-filter-list { display: grid; gap: 6px; }
.tt-filter-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: 0.2s;
}
.tt-filter-item:hover { background: var(--cream-100); color: var(--coffee-900); }
.tt-filter-item.active { background: var(--cream-200); color: var(--gold-600); font-weight: 800; }

/* Price inputs */
.tt-price-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tt-price-input-group label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.tt-price-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 10px;
  font-size: 14px;
  background: #fff;
}

/* Filter promo */
.tt-filter-promo {
  padding: 24px;
  text-align: center;
  background: #fbf4ed;
  border-radius: var(--radius-md);
}
.tt-filter-promo h3 { margin: 10px 0 6px; font-size: 16px; }
.tt-filter-promo p { color: var(--muted); font-size: 13px; margin: 0 0 14px; }

/* Shop toolbar */
.tt-mobile-filters { display: none; }
.tt-shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}
.tt-select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--coffee-900);
  cursor: pointer;
}

.tt-toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Live search input */
.tt-live-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 12px;
  height: 42px;
  gap: 6px;
  transition: border-color .2s;
}
.tt-live-search-wrap:focus-within {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(200,169,126,.15);
}
.tt-search-icon { font-size: 13px; color: var(--muted); flex-shrink: 0; }
.tt-live-search-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: var(--coffee-900);
  width: 180px;
  font-family: var(--sans);
}
.tt-live-search-input::placeholder { color: var(--muted); }
.tt-search-spinner {
  font-size: 16px;
  color: var(--gold-500);
  animation: tt-spin .7s linear infinite;
  flex-shrink: 0;
}
@keyframes tt-spin { to { transform: rotate(360deg); } }

/* Product grid fade while loading */
#tt-product-grid { transition: opacity .2s ease; }


.tt-pagination { margin-top: 36px; text-align: center; }
nav.tt-pagination ul.page-numbers,
.tt-pagination ul {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 auto !important;
}
nav.tt-pagination ul.page-numbers li,
.tt-pagination ul li {
  display: block !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.tt-pagination .page-numbers {
  display: inline-grid !important;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 14px;
  color: var(--coffee-900);
  text-decoration: none;
  transition: 0.2s;
  float: none !important;
  margin-left: 0 !important;
}
.tt-pagination .page-numbers:hover { border-color: var(--gold-500); color: var(--gold-600); }
.tt-pagination .page-numbers.current { background: var(--gold-500); color: #fff; border-color: var(--gold-500); }

.tt-no-products { grid-column: 1/-1; color: var(--muted); text-align: center; padding: 48px 0; }

/* ============================================================
   CART PAGE
   ============================================================ */
.tt-cart-page { padding-bottom: 70px; }
.tt-cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  padding: 48px 0;
}
.tt-cart-table-header,
.tt-cart-row {
  display: grid;
  grid-template-columns: 1fr 110px 150px 110px;
  gap: 18px;
  align-items: center;
}
.tt-cart-table-header {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
  color: var(--muted);
}
.tt-cart-row {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.tt-cart-product { display: flex; gap: 18px; align-items: center; }
.tt-cart-img {
  width: 110px;
  height: 110px;
  border-radius: 12px;
  background: #fbf4ed;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
}
.tt-cart-img img { width: 100%; height: 100%; object-fit: cover; }
.tt-cart-product h3 { font-size: 15px; color: var(--gold-600); margin: 0 0 4px; }
.tt-cart-product p { font-size: 13px; color: var(--muted); margin: 0 0 6px; }
.tt-remove-btn {
  border: 0;
  background: transparent;
  padding: 0;
  text-decoration: underline;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
}

/* Summary card */
.tt-summary-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  background: #fff;
  position: sticky;
  top: 110px;
}
.tt-summary-card h2 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0 0 20px;
  font-size: 28px;
}
.tt-summary-line {
  display: flex;
  justify-content: space-between;
  margin: 13px 0;
  color: var(--muted);
  font-size: 14px;
}
.tt-summary-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: 18px;
  font-size: 19px;
  font-weight: 900;
}
.tt-shipping-progress { height: 8px; background: var(--cream-200); border-radius: 999px; overflow: hidden; margin: 12px 0 20px; }
.tt-shipping-progress span { display: block; height: 100%; background: var(--gold-500); border-radius: 999px; }

/* ============================================================
   RESPONSIVE — Product detail + archive
   ============================================================ */
@media (max-width: 900px) {
  /* Detail */
  .tt-detail-grid { grid-template-columns: 1fr; }
  .tt-thumbs { grid-template-columns: repeat(5, 1fr); order: 2; }
  .tt-main-product-image { min-height: 360px; order: 1; }
  .tt-detail-info { order: 3; }
  .tt-detail-info h1 { font-size: 32px; }
  .tt-detail-buttons {
    position: sticky;
    bottom: 74px;
    z-index: 30;
    background: rgba(255,253,249,.92);
    backdrop-filter: blur(14px);
    padding: 10px;
    border-radius: 14px;
  }

  /* Page hero */
  .tt-page-hero {
    padding: 0;
    background: linear-gradient(180deg, #fffdf9 0%, #f8efe6 100%);
  }
  .tt-page-hero-inner {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  /* ── Mobile image: full-bleed block at top ──────────────── */
  .tt-page-hero-mobile-scene {
    display: block;
    position: relative;           /* no longer absolute */
    inset: auto;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    margin-bottom: 28px;          /* gap between image and text */
    pointer-events: none;
    flex: none;
  }
  /* Single full-width card */
  .tt-page-hero-mobile-card {
    position: absolute;
    inset: 0;
    background: var(--cream-100);
    box-shadow: none;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
  }
  .tt-page-hero-mobile-card img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }
  .tt-page-hero-mobile-card.is-right {
    top: 0; right: 0;
    width: 100%; height: 100%;
    border-radius: 0 0 20px 20px;
  }
  .tt-page-hero-mobile-card.is-left { display: none; }

  /* ── Text below the image ───────────────────────────────── */
  .tt-page-hero-text {
    position: relative;
    flex: none;
    max-width: none;
    padding: 0 14px 24px;   /* padding-top: 0 — image starts flush at top */
    min-height: auto;
    justify-content: flex-start;
  }
  .tt-page-hero-text h1 {
    position: relative;
    z-index: auto;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    max-width: none;
    font-size: 42px !important;
    line-height: 1.05;
  }
  .tt-page-hero-text > div[style*="display: flex"] {
    position: relative;
    z-index: auto;
    margin: 12px 0 !important;
  }
  .tt-page-hero-text p {
    position: relative;
    z-index: auto;
    max-width: 100% !important;
    font-size: 15px !important;
  }
  /* Remove the text background overlay hack — no longer needed */
  .tt-page-hero-text h1,
  .tt-page-hero-text > div[style*="display: flex"],
  .tt-page-hero-text p {
    background: none !important;
    width: auto !important;
  }
  /* Desktop banner image stays hidden on mobile */
  .tt-page-hero-image { display: none; }

  /* Shop */
  .tt-shop-layout { grid-template-columns: 1fr; gap: 24px; padding-top: 28px; }
  .tt-sidebar { display: none; }
  .tt-mobile-filters {
    display: block;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255,255,255,.88);
    overflow: hidden;
  }
  .tt-mobile-filters summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 18px;
    font-weight: 800;
    letter-spacing: .04em;
    color: var(--coffee-900);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .tt-mobile-filters summary::-webkit-details-marker { display: none; }
  .tt-mobile-filters summary::after {
    content: '+';
    font-size: 20px;
    line-height: 1;
    color: var(--gold-600);
  }
  .tt-mobile-filters[open] summary::after { content: '−'; }
  .tt-mobile-filters-body { padding: 0 16px 16px; }
  .tt-mobile-filters .tt-filter-block {
    margin: 0;
    padding: 14px 0 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .tt-shop-toolbar {
    gap: 12px;
    align-items: flex-start;
    flex-direction: column;
  }
  .tt-shop-toolbar > span {
    width: 100%;
    display: block;
  }
  .tt-toolbar-right {
    width: 100%;
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }
  .tt-toolbar-right form,
  .tt-live-search-wrap {
    flex: 1 1 100%;
    width: 100%;
  }
  .tt-select,
  .tt-live-search-input {
    width: 100%;
  }
  .tt-product-grid { grid-template-columns: 1fr; gap: 18px; }

  /* Cart */
  .tt-cart-layout { grid-template-columns: 1fr; gap: 26px; }
  .tt-cart-table-header { display: none; }
  .tt-cart-row { grid-template-columns: 1fr; gap: 10px; }
  .tt-cart-product { align-items: flex-start; }
  .tt-cart-img { width: 88px; height: 88px; }
  .tt-summary-card { position: static; }
}
