/* ============================================================
   Token Touch Co. — www.ttco.ca
   Design source: Token Touch Redesign.dc.html
   ============================================================ */

:root {
  --bg: #FFF8F5;
  --ink: #2D2D2D;
  --ink-soft: #6E5A5E;
  --ink-muted: #8A7377;
  --ink-faint: #9C8388;
  /* Brand palette from the Token Touch Co. logo */
  --rose: #9E2459;        /* berry — primary */
  --rose-dark: #7C1C46;
  --sage: #87A18B;
  --sage-ink: #5F7A64;
  --sage-wash: #E9F0EA;
  --gold: #E7AB55;
  --pink: #F8C8DC;
  --lavender: #E6D5F3;
  --mint: #C8E6D0;
  --mint-ink: #3E6B4C;
  --wash-pink: #FDF1F4;
  --wash-rose: #F6E7EC;
  --border: #F0E6E8;
  --border-pink: #E8D3D8;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Jost', sans-serif;
  --shadow-rose: 0 8px 24px rgba(158, 36, 89, 0.22);
  --shadow-card: 0 14px 34px rgba(158, 36, 89, 0.13);
  --shadow-panel: 0 14px 40px rgba(158, 36, 89, 0.06);
  --page-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

[hidden] { display: none !important; }

a { color: var(--rose); text-decoration: none; }
a:hover { color: var(--rose-dark); }

button { font-family: var(--font-body); cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: var(--font-body); font-size: inherit; color: var(--ink); }
::placeholder { color: #B9A6AA; }
input:focus, textarea:focus, select:focus { outline: 2px solid var(--pink); outline-offset: 1px; }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; color: var(--ink); }
h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.25rem; }

.page-width { max-width: var(--page-width); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.section-pad { padding-top: 4rem; padding-bottom: 4rem; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes pop { from { transform: scale(0.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ---------- Buttons & chips ---------- */
.pill-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 999px; padding: 0.9rem 2rem; min-height: 48px;
  font-size: 1rem; font-weight: 500; line-height: 1.3; text-align: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.pill-btn--primary { background: var(--rose); color: #fff; box-shadow: var(--shadow-rose); }
.pill-btn--primary:hover { background: var(--rose-dark); color: #fff; }
.pill-btn--ghost { background: rgba(255,255,255,0.7); color: var(--ink); border: 1.5px solid var(--border-pink); }
.pill-btn--ghost:hover { border-color: var(--rose); color: var(--rose); }
.pill-btn--outline { background: none; color: var(--rose); border: 1.5px solid var(--rose); }
.pill-btn--outline:hover { background: var(--rose); color: #fff; }
.pill-btn--quiet { background: none; color: var(--rose); border: 1.5px solid var(--border-pink); min-height: 44px; padding: 0.65rem 1.15rem; font-size: 0.875rem; }
.pill-btn--quiet:hover { background: var(--rose); color: #fff; border-color: var(--rose); }
.pill-btn--small { min-height: 44px; padding: 0.7rem 1.4rem; font-size: 0.9rem; }
.pill-btn:disabled { background: var(--border-pink); box-shadow: none; cursor: not-allowed; color: #fff; }

.chip {
  border-radius: 999px; padding: 0.65rem 1.25rem; min-height: 44px;
  font-size: 0.9rem; font-weight: 500; background: #fff; color: var(--ink);
  border: 1.5px solid var(--border-pink); transition: all 0.2s;
  display: inline-flex; align-items: center; justify-content: center;
}
.chip:hover { border-color: var(--rose); color: var(--rose); }
.chip.is-selected { background: var(--rose); color: #fff; border-color: var(--rose); }
.chip-row { display: flex; gap: 0.625rem; flex-wrap: wrap; }

.eyebrow { letter-spacing: 0.2em; font-size: 0.78rem; font-weight: 600; color: var(--rose); text-transform: uppercase; }
.link-arrow { font-size: 0.94rem; font-weight: 500; }

/* ---------- Announcement + header ---------- */
.announcement-bar {
  background: var(--rose); color: var(--bg); text-align: center;
  padding: 9px 16px; font-size: 0.84rem; letter-spacing: 0.06em;
}

.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 248, 245, 0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; gap: 20px; padding-top: 10px; padding-bottom: 10px; }
.header__logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header__logo img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); }
.header__logo img.header__logo-mark { width: auto; height: 64px; border-radius: 0; border: none; object-fit: contain; }
.header__logo-text { font-family: var(--font-heading); font-weight: 600; font-size: 1.03rem; color: var(--ink); letter-spacing: 0.04em; }
.header__nav { display: none; flex: 1; gap: 4px; flex-wrap: wrap; }
.header__nav a { padding: 10px 12px; min-height: 44px; font-size: 0.94rem; color: var(--ink); display: inline-flex; align-items: center; border-bottom: 2px solid transparent; }
.header__nav a:hover { color: var(--rose); }
.header__nav a.is-active { color: var(--rose); font-weight: 600; border-bottom-color: var(--rose); }
.header__icons { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.header__icon-btn {
  position: relative; width: 44px; height: 44px; display: flex; align-items: center;
  justify-content: center; color: var(--ink); border-radius: 50%;
}
.header__icon-btn:hover { background: var(--wash-pink); color: var(--ink); }
.header__icon-count {
  position: absolute; top: 2px; right: 0; background: var(--rose); color: #fff;
  font-size: 0.69rem; font-weight: 700; min-width: 18px; height: 18px;
  border-radius: 999px; display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.header__menu-toggle { display: flex; }

@media (min-width: 990px) {
  .header__nav { display: flex; }
  .header__menu-toggle { display: none; }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; top: 0; left: 0; width: min(360px, 92vw); height: 100vh; height: 100dvh;
  background: var(--bg); z-index: 1200; transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow-y: auto; padding: 1.5rem; box-shadow: 16px 0 48px rgba(45,45,45,0.12);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 1rem; border-bottom: 1px solid var(--border); margin-bottom: 0.75rem; }
.mobile-menu__nav { display: flex; flex-direction: column; }
.mobile-menu__nav a { padding: 0.8rem 0; font-size: 1rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--border); }
.mobile-menu__nav a:hover { color: var(--rose); }

/* ---------- Search overlay ---------- */
.search-overlay {
  position: fixed; inset: 0; z-index: 1300; background: rgba(45,45,45,0.35);
  backdrop-filter: blur(3px); display: none;
}
.search-overlay.is-open { display: block; }
.search-overlay__panel {
  max-width: 640px; margin: 64px auto 0; background: var(--bg); border-radius: 20px;
  overflow: hidden; box-shadow: 0 30px 80px rgba(45,45,45,0.25);
}
@media (max-width: 699px) { .search-overlay__panel { margin: 20px 12px 0; } }
.search-overlay__bar { display: flex; align-items: center; gap: 12px; padding: 18px 22px; border-bottom: 1px solid var(--border); }
.search-overlay__input { flex: 1; border: none; background: none; font-size: 1.06rem; }
.search-overlay__input:focus { outline: none; }
.search-overlay__close { font-size: 1.125rem; color: var(--ink-muted); width: 32px; height: 32px; }
.search-overlay__results { max-height: 420px; overflow-y: auto; padding: 10px 0; }
.search-overlay__label { padding: 10px 22px 6px; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.search-overlay__chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 8px 22px 16px; }
.search-overlay__chips .chip { min-height: 38px; padding: 8px 16px; font-size: 0.85rem; }
.search-result { width: 100%; text-align: left; display: flex; align-items: center; gap: 14px; padding: 12px 22px; color: var(--ink); }
.search-result:hover { background: var(--wash-pink); color: var(--ink); }
.search-result__thumb { width: 44px; height: 52px; border-radius: 10px; flex-shrink: 0; overflow: hidden; }
.search-result__thumb img { width: 100%; height: 100%; object-fit: cover; }
.search-result__text { flex: 1; display: flex; flex-direction: column; }
.search-result__name { font-weight: 500; font-size: 0.94rem; }
.search-result__type { font-size: 0.8rem; color: var(--ink-muted); }
.search-result__price { color: var(--rose); font-weight: 500; font-size: 0.9rem; }
.search-overlay__empty { padding: 32px 22px; text-align: center; color: var(--ink-muted); }

/* ---------- Cart drawer ---------- */
.drawer-scrim { position: fixed; inset: 0; background: rgba(45,45,45,0.4); z-index: 1100; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 94vw);
  background: var(--bg); z-index: 1150; box-shadow: -16px 0 48px rgba(45,45,45,0.18);
  transform: translateX(105%); transition: transform 0.32s cubic-bezier(0.22,0.61,0.36,1);
  display: flex; flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.cart-drawer__head h3 { font-size: 1.19rem; }
.cart-drawer__shipbar { padding: 14px 24px 10px; background: #fff; border-bottom: 1px solid var(--border); }
.cart-drawer__shipbar p { margin-bottom: 8px; font-size: 0.81rem; color: var(--ink-soft); }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 8px 24px; }
.cart-drawer__foot { padding: 20px 24px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; background: #fff; }
.cart-drawer__subtotal { display: flex; justify-content: space-between; font-family: var(--font-heading); font-weight: 600; font-size: 1.06rem; }
.cart-drawer__note { font-size: 0.78rem; color: var(--ink-faint); }

.cart-line { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cart-line__thumb { width: 68px; height: 80px; border-radius: 12px; flex-shrink: 0; overflow: hidden; }
.cart-line__thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cart-line__name { font-weight: 500; font-size: 0.94rem; line-height: 1.35; color: var(--ink); }
.cart-line__variant { font-size: 0.81rem; color: var(--ink-muted); }
.cart-line__qty { display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.cart-line__qty button { width: 30px; height: 30px; border: 1px solid var(--border-pink); border-radius: 8px; color: var(--rose); font-size: 1rem; display: flex; align-items: center; justify-content: center; }
.cart-line__qty span { min-width: 26px; text-align: center; font-size: 0.875rem; font-weight: 500; }
.cart-line__right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.cart-line__price { font-weight: 500; font-size: 0.94rem; color: var(--rose); }
.cart-line__remove { font-size: 0.78rem; color: var(--ink-faint); text-decoration: underline; padding: 6px 0; }

.tt-progress { height: 10px; border-radius: 999px; background: var(--border); overflow: hidden; }
.tt-progress--slim { height: 8px; }
.tt-progress__fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--gold), var(--rose)); transition: width 0.4s; width: 0; }

/* ---------- Product cards ---------- */
.pcard { display: flex; flex-direction: column; gap: 12px; }
.pcard__media-wrap { position: relative; }
.pcard__media { position: relative; display: block; border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 5; transition: box-shadow 0.25s; }
.pcard__media:hover { box-shadow: var(--shadow-card); }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; }
.pcard__badge { position: absolute; top: 10px; left: 10px; background: var(--ink); color: #fff; font-size: 0.69rem; padding: 4px 10px; border-radius: 999px; letter-spacing: 0.05em; z-index: 2; }
.pcard__info { display: flex; flex-direction: column; gap: 2px; }
.pcard__title { color: var(--ink); font-weight: 500; font-size: 1rem; }
.pcard__title:hover { color: var(--rose); }
.pcard__meta { font-size: 0.78rem; color: var(--ink-faint); }
.pcard__price { color: var(--rose); font-weight: 500; font-size: 0.94rem; }
.pcard__quick-add { align-self: flex-start; }
.pcard-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 22px; }

.wish-btn {
  position: absolute; top: 10px; right: 10px; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,248,245,0.92); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(45,45,45,0.1); z-index: 2;
}
.wish-btn svg { width: 18px; height: 18px; fill: none; stroke: var(--rose); stroke-width: 1.7; transition: fill 0.15s; }
.wish-btn.is-active svg { fill: var(--rose); }
.wish-btn--large { width: 42px; height: 42px; top: 14px; right: 14px; }
.wish-btn--large svg { width: 21px; height: 21px; }

.wash { background: var(--wash-rose); }

/* ---------- Section scaffolding ---------- */
.section-head-center { text-align: center; display: flex; flex-direction: column; gap: 8px; margin-bottom: 36px; }
.section-head-center p { color: var(--ink-muted); font-size: 1.03rem; }
.section-row-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.section-row-head p { color: var(--ink-muted); }

/* ---------- Hero ---------- */
.hero-split { background: linear-gradient(160deg, #FDF1F4 0%, #FFF8F5 55%, #F2F8F3 100%); }
.hero-split__inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 48px; align-items: center; padding-top: 72px; padding-bottom: 72px; }
.hero-split__copy { display: flex; flex-direction: column; gap: 20px; animation: fadeUp 0.6s ease both; }
.hero-split__copy h1 { font-size: clamp(34px, 4.5vw, 52px); line-height: 1.12; }
.hero-split__sub { font-size: 1.125rem; color: var(--ink-soft); max-width: 46ch; }
.hero-split__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-split__proof { margin-top: 6px; font-size: 0.875rem; color: var(--ink-faint); }
.hero-split__media { position: relative; animation: fadeUp 0.6s 0.12s ease both; }
.hero-split__media > img { width: 100%; border-radius: 28px; box-shadow: 0 24px 60px rgba(183,110,121,0.18); }
.hero-split__badge {
  position: absolute; bottom: -18px; left: 24px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 16px; padding: 12px 18px; box-shadow: 0 10px 30px rgba(45,45,45,0.1);
  display: flex; align-items: center; gap: 10px; font-size: 0.875rem; font-weight: 500;
}
.hero-split__badge::before { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--mint); flex-shrink: 0; }

/* ---------- Offerings ---------- */
.offer-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.offer-card {
  flex: 1; min-width: 180px; max-width: 230px; background: #fff; border: 1px solid var(--border);
  border-radius: 18px; padding: 24px 18px; text-align: center; display: flex; flex-direction: column;
  gap: 8px; align-items: center; color: var(--ink); transition: box-shadow 0.25s, transform 0.25s;
}
.offer-card:hover { box-shadow: 0 10px 28px rgba(183,110,121,0.12); transform: translateY(-2px); color: var(--ink); }
.offer-card__glyph {
  width: 52px; height: 52px; border-radius: 50%; background: var(--wash-rose);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 600; font-size: 1.19rem; color: #7C5A60;
}
.offer-card__title { font-family: var(--font-heading); font-weight: 600; font-size: 0.97rem; }
.offer-card__desc { font-size: 0.84rem; color: var(--ink-muted); line-height: 1.45; }

/* ---------- Package cards ---------- */
.package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.package-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden; color: var(--ink); transition: box-shadow 0.25s, transform 0.25s;
}
.package-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); color: var(--ink); }
.package-card__wash { height: 110px; position: relative; }
.package-card__wash::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.55), transparent 60%); }
.package-card__body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.package-card__title { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; line-height: 1.3; }
.package-card__tagline { font-size: 0.84rem; color: var(--ink-muted); line-height: 1.45; flex: 1; }
.package-card__cta { font-size: 0.84rem; font-weight: 500; color: var(--rose); }

/* ---------- Builder banner ---------- */
.builder-banner { background: linear-gradient(120deg, #F6E7EC, #EFE3F5); }
.builder-banner__inner { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; padding-top: 56px; padding-bottom: 56px; }
.builder-banner__copy { display: flex; flex-direction: column; gap: 8px; max-width: 560px; }
.builder-banner__copy h2 { font-size: 1.75rem; }
.builder-banner__copy p { color: var(--ink-soft); font-size: 1.03rem; }

/* ---------- Feature splits ---------- */
.feature-split { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; align-items: center; }
.feature-split__media { border-radius: 24px; overflow: hidden; aspect-ratio: 16 / 11; }
.feature-split__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-split__copy { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.feature-split__copy h2 { font-size: 1.75rem; }
.feature-split__copy p { color: var(--ink-soft); }

/* ---------- Way cards ---------- */
.way-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.way-card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 26px;
  display: flex; flex-direction: column; gap: 10px; color: var(--ink);
  transition: box-shadow 0.25s, transform 0.25s;
}
.way-card:hover { box-shadow: 0 12px 30px rgba(183,110,121,0.13); transform: translateY(-3px); color: var(--ink); }
.way-card__glyph { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.375rem; }
.way-card__title { font-family: var(--font-heading); font-weight: 600; font-size: 1.03rem; }
.way-card__desc { font-size: 0.84rem; color: var(--ink-muted); line-height: 1.45; flex: 1; }
.way-card__cta { font-size: 0.84rem; font-weight: 500; color: var(--rose); }

/* ---------- Guide cards ---------- */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.guide-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden; color: var(--ink); transition: box-shadow 0.25s, transform 0.25s;
}
.guide-card:hover { box-shadow: 0 12px 30px rgba(183,110,121,0.13); transform: translateY(-3px); color: var(--ink); }
.guide-card__media { aspect-ratio: 16 / 9; }
.guide-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.guide-card__tag { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-ink); font-weight: 600; }
.guide-card__title { font-family: var(--font-heading); font-weight: 600; font-size: 1.06rem; line-height: 1.3; }
.guide-card__excerpt { font-size: 0.84rem; color: var(--ink-muted); line-height: 1.5; }
.guide-card__meta { font-size: 0.78rem; color: var(--ink-faint); }

/* ---------- Testimonials ---------- */
.band-pink { background: var(--wash-pink); }
.tcard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.tcard { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 26px; display: flex; flex-direction: column; gap: 12px; }
.tcard__stars { color: var(--gold); letter-spacing: 3px; font-size: 0.94rem; }
.tcard__quote { font-size: 0.97rem; line-height: 1.55; color: #4A3B3E; flex: 1; }
.tcard__author { font-size: 0.875rem; color: var(--ink-muted); }
.tcard__author strong { color: var(--ink); font-weight: 600; }

/* ---------- Newsletter + footer ---------- */
.newsletter-cta { background: linear-gradient(120deg, #F8C8DC22, #E6D5F344, #C8E6D022); border-top: 1px solid var(--border); }
.newsletter-cta__inner { max-width: 640px; margin: 0 auto; padding: 56px 24px; text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.newsletter-cta__inner h2 { font-size: 1.625rem; }
.newsletter-cta__inner p { color: var(--ink-muted); }
.newsletter-cta__form { display: flex; gap: 10px; width: 100%; max-width: 440px; flex-wrap: wrap; justify-content: center; }
.newsletter-cta__form .tt-input--pill { flex: 1; min-width: 220px; }
.newsletter-cta__done { color: var(--mint-ink); font-size: 0.94rem; }

.footer { background: var(--ink); color: #EFE3E6; }
.footer__inner { padding-top: 56px; padding-bottom: 32px; display: flex; flex-direction: column; gap: 40px; }
.footer__top { display: flex; gap: 48px; flex-wrap: wrap; justify-content: space-between; }
.footer__brand { display: flex; flex-direction: column; gap: 12px; max-width: 300px; }
.footer__brand-name { font-family: var(--font-heading); font-weight: 600; font-size: 1.125rem; color: #fff; }
.footer__brand-desc { font-size: 0.875rem; color: #B9A6AA; line-height: 1.6; }
.footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.footer__col a { color: #EFE3E6; font-size: 0.9rem; }
.footer__col a:hover { color: #fff; }
.footer__legal { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; font-size: 0.81rem; color: var(--ink-faint); }

/* ---------- Panels, forms, misc ---------- */
.tt-panel { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 36px; box-shadow: var(--shadow-panel); }
@media (max-width: 749px) { .tt-panel { padding: 24px; } }
.tt-panel--center { text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.success-check { width: 64px; height: 64px; border-radius: 50%; background: var(--mint); display: flex; align-items: center; justify-content: center; font-size: 1.625rem; color: var(--mint-ink); animation: pop 0.4s ease both; }

.tt-input, .tt-textarea, .tt-select {
  border: 1.5px solid var(--border-pink); border-radius: 12px; padding: 13px 16px;
  font-size: 0.9rem; background: #FFFCFA; width: 100%;
}
.tt-input--pill { border-radius: 999px; padding: 13px 20px; background: #fff; }
.tt-textarea { min-height: 120px; resize: vertical; }
.tt-field-label { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.04em; display: block; margin-bottom: 8px; }
.tt-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 599px) { .tt-form-grid { grid-template-columns: 1fr; } }

.tt-toggle {
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 12px 14px; border: 1.5px solid var(--border-pink); border-radius: 12px; background: #fff;
  transition: border-color 0.2s, background 0.2s; width: 100%; text-align: left;
}
.tt-toggle.is-on { border-color: var(--rose); background: var(--wash-pink); }
.tt-toggle__labels { display: flex; flex-direction: column; }
.tt-toggle__title { font-size: 0.9rem; font-weight: 500; }
.tt-toggle__sub { font-size: 0.81rem; color: var(--ink-muted); }
.tt-toggle__track { width: 44px; height: 26px; border-radius: 999px; background: var(--border-pink); position: relative; flex-shrink: 0; transition: background 0.2s; }
.tt-toggle.is-on .tt-toggle__track { background: var(--rose); }
.tt-toggle__knob { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: left 0.2s; }
.tt-toggle.is-on .tt-toggle__knob { left: 21px; }

.summary-box { display: flex; flex-direction: column; gap: 12px; background: var(--wash-pink); border-radius: 16px; padding: 20px; }
.summary-box__row { display: flex; justify-content: space-between; gap: 16px; }
.summary-box__row > span:first-child { color: var(--ink-muted); font-size: 0.875rem; }
.summary-box__row > span:last-child { font-weight: 500; font-size: 0.9rem; text-align: right; max-width: 60%; }

.step-dots { display: flex; gap: 8px; justify-content: center; margin-bottom: 36px; }
.step-dots span { width: 34px; height: 6px; border-radius: 999px; background: var(--border-pink); transition: background 0.25s; }
.step-dots span.is-done { background: var(--rose); }
.wizard-step { display: none; }
.wizard-step.is-active { display: block; }
.wizard-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 32px; }
.wizard-back { font-size: 0.94rem; font-weight: 500; color: var(--ink-muted); padding: 10px 6px; min-height: 44px; }
.wizard-back:hover { color: var(--rose); }
.wizard-back[disabled] { visibility: hidden; }
.tt-range { width: 100%; accent-color: var(--rose); }

.tt-calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.tt-calendar__weekday { text-align: center; font-size: 0.69rem; color: var(--ink-faint); font-weight: 600; padding-bottom: 2px; }
.tt-calendar__day { aspect-ratio: 1; border-radius: 10px; border: 1.5px solid transparent; background: var(--wash-pink); font-size: 0.85rem; transition: all 0.15s; }
.tt-calendar__day:hover:not(:disabled) { border-color: var(--rose); }
.tt-calendar__day.is-selected { background: var(--rose); color: #fff; font-weight: 600; }
.tt-calendar__day:disabled { background: none; color: #D8C7CB; cursor: default; }
.tt-calendar__day--empty { visibility: hidden; }
.tt-cal-nav { width: 32px; height: 32px; border: 1px solid var(--border-pink); border-radius: 8px; color: var(--rose); font-size: 1rem; display: inline-flex; align-items: center; justify-content: center; }

.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.faq-item__q { width: 100%; text-align: left; padding: 20px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 1rem; font-weight: 500; min-height: 44px; }
.faq-item__icon { color: var(--rose); font-size: 1.25rem; transition: transform 0.2s; flex-shrink: 0; }
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__a { display: none; padding: 0 22px 22px; color: var(--ink-soft); font-size: 0.94rem; }
.faq-item.is-open .faq-item__a { display: block; }

.plan-card {
  text-align: left; background: #fff; border: 2px solid var(--border); border-radius: 20px;
  padding: 26px; display: flex; flex-direction: column; gap: 8px; position: relative;
  transition: border-color 0.2s, background 0.2s; color: var(--ink); width: 100%;
}
.plan-card:hover { border-color: var(--border-pink); color: var(--ink); }
.plan-card.is-selected { border-color: var(--rose); background: var(--wash-pink); }
.plan-card__badge { position: absolute; top: 16px; right: 16px; background: var(--mint); color: var(--mint-ink); font-size: 0.69rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.plan-card__name { font-family: var(--font-heading); font-weight: 600; font-size: 1.125rem; }
.plan-card__note { font-size: 0.94rem; color: var(--ink-muted); }
.plan-card__price { font-family: var(--font-heading); font-weight: 600; font-size: 1.625rem; color: var(--rose); margin-top: 4px; }
.plan-card__per { font-size: 0.875rem; color: var(--ink-faint); font-weight: 400; }

.trust-row { display: flex; flex-wrap: wrap; gap: 14px; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-row__item { display: flex; align-items: center; gap: 8px; font-size: 0.81rem; color: var(--ink-soft); }
.trust-row__icon { width: 26px; height: 26px; border-radius: 50%; background: var(--sage-wash); display: flex; align-items: center; justify-content: center; color: var(--sage-ink); font-size: 0.81rem; flex-shrink: 0; }

.notify-box { background: var(--wash-pink); border: 1px solid var(--border); border-radius: 18px; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.notify-box__row { display: flex; gap: 10px; flex-wrap: wrap; }
.notify-box__row .tt-input { flex: 1; min-width: 180px; }
.notify-box__done { color: var(--mint-ink); font-size: 0.9rem; }

.empty-state { text-align: center; padding: 64px 0; display: flex; flex-direction: column; gap: 16px; align-items: center; }
.empty-state__icon { width: 64px; height: 64px; border-radius: 50%; background: var(--wash-pink); display: flex; align-items: center; justify-content: center; color: var(--rose); }
.empty-state p { color: var(--ink-muted); }

.gift-options { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 24px; display: flex; flex-direction: column; gap: 18px; }

/* ---------- Product page ---------- */
.product-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 48px; margin-top: 24px; }
.product-main-img { position: relative; border-radius: 22px; aspect-ratio: 1; overflow: hidden; }
.product-info { display: flex; flex-direction: column; gap: 18px; }
.product-info h1 { font-size: 2rem; line-height: 1.2; }
.product-price { font-size: 1.375rem; font-weight: 500; color: var(--rose); }
.product-rating { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--ink-muted); }
.product-rating .stars { color: var(--gold); letter-spacing: 2px; }
.qty-picker { display: inline-flex; align-items: center; border: 1.5px solid var(--border-pink); border-radius: 999px; overflow: hidden; }
.qty-picker button { width: 44px; height: 44px; font-size: 1.125rem; color: var(--rose); }
.qty-picker span { min-width: 36px; text-align: center; font-weight: 500; }
.buy-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.buy-row .pill-btn--primary { flex: 1; min-width: 200px; }
.tab-row { display: flex; gap: 24px; border-bottom: 1px solid var(--border); }
.tab-row button { padding: 6px 0 10px; font-size: 0.94rem; font-weight: 600; color: var(--ink-faint); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tab-row button.is-active { color: var(--ink); border-bottom-color: var(--rose); }
.tab-body { color: var(--ink-soft); font-size: 0.94rem; padding-top: 14px; }
.cross-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }

/* ---------- Checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; align-items: start; }
.checkout-summary { position: sticky; top: 90px; }
.mode-tab { flex: 1; min-width: 140px; border-radius: 12px; padding: 12px; min-height: 44px; font-size: 0.875rem; font-weight: 500; background: #fff; border: 1.5px solid var(--border-pink); }
.mode-tab.is-selected { background: var(--wash-pink); border-color: var(--rose); color: var(--rose); }

/* ---------- Page banners ---------- */
.page-head-center { text-align: center; display: flex; flex-direction: column; gap: 8px; margin-bottom: 32px; }
.page-head-center p { color: var(--ink-muted); }
.about-hero { background: linear-gradient(160deg, #FDF1F4, #F2F8F3); }
.about-hero__inner { max-width: 760px; margin: 0 auto; padding: 64px 24px; text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.about-hero__inner img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; box-shadow: 0 8px 24px rgba(183,110,121,0.18); }
.about-hero__inner p { font-size: 1.19rem; color: var(--ink-soft); max-width: 52ch; }

/* ---------- Brand polish: reveals & micro-interactions ---------- */
::selection { background: var(--pink); color: var(--ink); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

.pill-btn { transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s; }
.pill-btn--primary:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(158, 36, 89, 0.3); }
.pill-btn--primary:active { transform: translateY(0); }

.pcard__media img,
.guide-card__media img { transition: transform 0.45s ease; }
.pcard__media:hover img,
.guide-card:hover .guide-card__media img { transform: scale(1.04); }

@keyframes heartPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}
.wish-btn.is-active svg { animation: heartPop 0.35s ease; }

@keyframes badgePulse {
  0% { transform: scale(1); }
  45% { transform: scale(1.45); }
  100% { transform: scale(1); }
}
.header__icon-count.is-pulsing { animation: badgePulse 0.4s ease; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .pcard__media img, .guide-card__media img { transition: none; }
  .pcard__media:hover img, .guide-card:hover .guide-card__media img { transform: none; }
  .wish-btn.is-active svg, .header__icon-count.is-pulsing { animation: none; }
  .hero-split__copy, .hero-split__media { animation: none; }
}

/* ---------- Bow divider (brand motif) ---------- */
.bow-divider {
  display: flex; align-items: center; gap: 20px;
  max-width: 420px; margin: 0 auto; padding: 20px 24px;
}
.bow-divider::before, .bow-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border-pink);
}
.bow-divider img { width: 46px; height: auto; opacity: 0.9; flex-shrink: 0; }

/* ---------- Toast ---------- */
.tt-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--ink); color: #fff; padding: 12px 22px; border-radius: 999px;
  font-size: 0.9rem; z-index: 1400; opacity: 0; transition: all 0.3s; pointer-events: none;
}
.tt-toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
