/* ==========================================================
   SuperShape Wellness — Landing Page Styles
   Palette: gold #bda25b · cream #fbf5eb · warm ink
   Fonts: Playfair Display (headings) · Jost (body)
   ========================================================== */

:root {
  --gold: #bda25b;
  --gold-dark: #a6893f;
  --gold-deep: #8f7633;
  --gold-light: #eadfc0;
  --gold-tint: #f3ecda;
  --cream: #fbf5eb;
  --cream-deep: #f4ebd9;
  --white: #fffdf8;
  --ink: #3b3328;
  --ink-soft: #6f6553;
  --ink-mute: #9a8f7a;
  --line: #e7dcc4;
  --shadow: 0 24px 50px -28px rgba(138, 116, 64, 0.35);
  --shadow-sm: 0 10px 24px -12px rgba(138, 116, 64, 0.28);
  --radius: 22px;
  --radius-sm: 14px;
  --nav-h: 84px;
  --font-head: "Playfair Display", "Noto Serif SC", Georgia, serif;
  --font-body: "Jost", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

html.menu-open { overflow: hidden; }

/* ---------- Bilingual toggling ---------- */
.lg-zh { display: none; }
html.zh .lg-en { display: none; }
html.zh .lg-zh { display: inline; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.section-sub {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-sub strong { color: var(--gold-deep); font-weight: 600; }

/* ---------- Layout ---------- */
.container { width: min(1160px, 92%); margin: 0 auto; }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-tint { background: linear-gradient(180deg, var(--white) 0%, var(--cream-deep) 100%); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px, 6vw, 64px); }
.section-head-left { text-align: left; margin: 0 0 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn svg { flex: none; }
.btn-sm { padding: 11px 22px; font-size: 0.92rem; }
.btn-block { width: 100%; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  box-shadow: 0 14px 26px -12px rgba(166, 137, 63, 0.6);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 32px -12px rgba(166, 137, 63, 0.7); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--gold);
}
.btn-ghost:hover { background: var(--gold-tint); transform: translateY(-2px); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(251, 245, 235, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 30px -18px rgba(90, 70, 30, 0.4);
}

.nav-inner {
  width: min(1160px, 92%);
  margin: 0 auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px -8px rgba(166, 137, 63, 0.7);
}
.brand-logo {
  width: 58px; height: 58px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--gold-light);
  padding: 6px;
  box-shadow: 0 8px 18px -8px rgba(166, 137, 63, 0.6);
}

.menu { display: flex; align-items: center; gap: 24px; }
.menu > a {
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.menu > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.menu > a:hover, .menu > a.active { color: var(--ink); }
.menu > a:hover::after, .menu > a.active::after { width: 100%; }

.menu-actions { display: flex; align-items: center; gap: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 26px; height: 2.5px;
  border-radius: 3px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { min-height: 100svh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189, 162, 91, 0.16) 0%, rgba(189, 162, 91, 0) 70%);
  top: -180px; right: -160px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189, 162, 91, 0.1) 0%, rgba(189, 162, 91, 0) 70%);
  bottom: -180px; left: -140px;
  pointer-events: none;
}

.hero-inner {
  width: min(1160px, 92%);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 40px) 0 70px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.7rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 6px 0 22px;
}

.hero-sub { font-size: 1.12rem; color: var(--ink-soft); max-width: 540px; margin-bottom: 32px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.hero-points li { display: flex; align-items: center; gap: 9px; }
.hero-points li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

.hero-media { position: relative; }
.hero-img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-badge {
  position: absolute;
  bottom: 22px; left: -18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gold-deep);
  box-shadow: var(--shadow-sm);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}
.about-text p { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 20px; }
.about-text p:first-child { font-size: 1.22rem; color: var(--ink); }

.about-values { display: flex; flex-direction: column; gap: 26px; }
.about-values li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-values li:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.value-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  flex: none;
}
.about-values h3 { font-family: var(--font-head); font-size: 1.18rem; font-weight: 600; margin-bottom: 4px; }
.about-values p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Classes ---------- */
.class-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.class-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.class-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.class-icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.class-icon svg { width: 30px; height: 30px; }
.class-card h3 { font-family: var(--font-head); font-size: 1.35rem; font-weight: 600; margin-bottom: 8px; }
.class-card p { color: var(--ink-soft); font-size: 0.95rem; }

.timetable-cta {
  margin-top: 46px;
  text-align: center;
  padding: 42px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.timetable-cta .timetable-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.timetable-cta h3 {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 600;
  margin-bottom: 8px;
}
.timetable-sub {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 24px;
}
.timetable-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.timetable-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
}

/* ---------- Branches ---------- */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.branch-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.branch-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.branch-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 26px 28px 18px;
}
.branch-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold-tint);
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 10px;
}
.branch-name { font-family: var(--font-head); font-size: 1.45rem; font-weight: 600; line-height: 1.25; }
.branch-price {
  background: var(--white);
  border: 1.5px solid var(--gold);
  color: var(--gold-deep);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 8px 18px -10px rgba(166, 137, 63, 0.5);
}

.branch-photo {
  aspect-ratio: 16 / 8.4;
  width: 100%;
  object-fit: cover;
  background: var(--cream-deep);
  border: 0;
}
.branch-photo.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px;
  color: var(--gold-deep);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), transparent 50%),
    linear-gradient(150deg, #efe6cf 0%, #e2d3af 55%, #d3c199 100%);
  border: 1.5px dashed rgba(143, 118, 51, 0.45);
}

.branch-address {
  font-style: normal;
  padding: 20px 28px 6px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.branch-gallery-wrap { position: relative; }
.branch-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 28px 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.branch-gallery::-webkit-scrollbar { display: none; }
.branch-gallery img {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  scroll-snap-align: start;
  transition: transform 0.2s ease;
}
.branch-gallery img:hover { transform: scale(1.03); }

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(251, 245, 235, 0.94);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.gallery-arrow:hover { background: var(--gold); color: #fff; transform: translateY(-50%) scale(1.08); }
.gallery-prev { left: 8px; }
.gallery-next { right: 8px; }

.branch-actions {
  padding: 12px 28px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.maps-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold-deep);
  margin-left: auto;
  transition: color 0.2s ease;
}
.maps-link:hover { color: var(--gold-dark); }

/* ---------- Shop ---------- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 980px;
  margin: 0 auto;
}
.shop-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.shop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.shop-badge {
  align-self: center;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold-tint);
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.shop-name { font-family: var(--font-head); font-size: 1.6rem; font-weight: 600; margin-bottom: 6px; }
.shop-includes { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 18px; }
.shop-price { font-size: 1.25rem; color: var(--ink-soft); margin-bottom: 6px; }
.shop-price strong {
  font-family: var(--font-head);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--gold-deep);
  line-height: 1;
}
.shop-note { font-size: 0.9rem; color: var(--ink-mute); margin-bottom: 26px; }

.shop-cta { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.shop-cta .btn-ghost { color: var(--ink-soft); border-color: var(--line); }
.shop-cta .btn-ghost:hover { background: var(--gold-tint); border-color: var(--gold); color: var(--ink); }

.wa-inline {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold-deep);
  transition: color 0.2s ease;
}
.wa-inline:hover { color: var(--gold-dark); }

.shop-more {
  margin-top: 34px;
  text-align: center;
  color: var(--ink-soft);
}
.shop-more a { color: var(--gold-deep); font-weight: 500; text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Products ---------- */
.products {
  margin-top: 64px;
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
.products-head { text-align: center; max-width: 640px; margin: 0 auto 26px; }
.products-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 10px;
}

.how-to {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0 auto 38px;
  max-width: 860px;
}
.how-to li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px 9px 9px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.how-to .step {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.product-img {
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  color: var(--gold-deep);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), transparent 50%),
    linear-gradient(150deg, #efe6cf 0%, #e2d3af 55%, #d3c199 100%);
  border-bottom: 1.5px dashed var(--line);
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }

.product-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-body h4 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 600; }
.product-desc { color: var(--ink-soft); font-size: 0.92rem; }
.product-price { font-size: 1.05rem; color: var(--ink-soft); }
.product-price strong {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-deep);
}
.product-body .btn { margin-top: auto; }

/* ---- Product variant (Shopee-style color picker) ---- */
.product-variant {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
}
.variant-media { padding: 16px; }
.variant-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius) - 8px);
  border: 1px solid var(--line);
  background: var(--cream-deep);
  transition: opacity 0.35s ease;
}
.variant-info {
  padding: 30px 34px 30px 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.variant-name { color: var(--ink-soft); font-size: 0.95rem; }
.variant-name strong { color: var(--ink); font-weight: 600; }

.product-tagline {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.product-details {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}
.product-details summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gold-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.product-details summary::-webkit-details-marker { display: none; }
.product-details summary::after { content: "+"; font-size: 1.1rem; line-height: 1; transition: transform 0.2s ease; }
.product-details[open] summary::after { transform: rotate(45deg); }
.details-body {
  padding: 4px 16px 16px;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.75;
  border-top: 1px solid var(--line);
}
.details-body p { margin-bottom: 10px; }
.details-body h5 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
  margin: 14px 0 8px;
}
.details-body ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1.5px var(--line);
  background: var(--sw);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.swatch:hover { transform: scale(1.12); }
.swatch.active { box-shadow: 0 0 0 2.5px var(--gold); transform: scale(1.12); }

.price-note { font-size: 0.9rem; color: var(--ink-mute); }
.product-bundle { font-size: 0.9rem; color: var(--gold-deep); font-weight: 500; }
.variant-info .btn { align-self: flex-start; }

.product-meta { font-size: 0.9rem; color: var(--ink-soft); }

.price-tiers {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border: 1.5px dashed var(--gold-light);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--gold-tint);
}
.price-tiers .tier { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.92rem; color: var(--ink-soft); }
.price-tiers .tier strong { color: var(--gold-deep); font-weight: 700; }
.price-tiers .tier strong em { font-style: normal; font-weight: 400; font-size: 0.8rem; color: var(--ink-mute); }

.qty {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}
.qty-label { font-size: 0.92rem; color: var(--ink-soft); }
.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--gold-light);
  border-radius: 999px;
  background: var(--white);
  overflow: hidden;
}
.qty-btn {
  width: 38px; height: 38px;
  border: none;
  background: var(--gold-tint);
  color: var(--gold-deep);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.qty-btn:hover { background: var(--gold); color: #fff; }
.qty-input {
  width: 48px;
  border: none;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  outline: none;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-total { font-size: 1rem; color: var(--ink-soft); }
.qty-total strong {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-deep);
}

/* ---- Product photo carousel (Vita-Coolio) ---- */
.carousel { display: flex; flex-direction: column; gap: 12px; }
.carousel-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius) - 8px);
  border: 1px solid var(--line);
  background: var(--cream-deep);
  transition: opacity 0.25s ease;
}
.carousel-thumbs { display: flex; flex-wrap: wrap; gap: 8px; }
.carousel-thumb {
  width: 48px; height: 48px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  border: 1.5px solid var(--line);
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.carousel-thumb:hover { transform: scale(1.06); }
.carousel-thumb.active { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(189, 162, 91, 0.35); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.contact-intro { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 34px; max-width: 560px; }

.contact-list { display: flex; flex-direction: column; gap: 8px; }
.contact-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 8px;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: none; }
.contact-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-top: 2px;
}
.contact-icon svg { width: 21px; height: 21px; }
.contact-list h4 { font-family: var(--font-head); font-size: 1.02rem; font-weight: 600; margin-bottom: 2px; }
.contact-list a { color: var(--ink); font-size: 1rem; display: block; transition: color 0.2s ease; }
.contact-list a:hover { color: var(--gold-dark); }
.contact-hint { color: var(--ink-soft); font-size: 0.95rem; }

.contact-media { display: flex; flex-direction: column; gap: 18px; }
.contact-img {
  aspect-ratio: 4 / 4.4;
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(160deg, #2c271d 0%, #221e16 100%);
  color: #e9e0c9;
  padding: 56px 0 30px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(233, 224, 201, 0.14);
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-nav a { font-size: 0.95rem; color: #cfc4a8; transition: color 0.2s ease; }
.footer-nav a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(233, 224, 201, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e9e0c9;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #221e16; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding-top: 24px;
  font-size: 0.86rem;
  color: #a89e85;
}

/* ---------- Order cart ---------- */
.cart {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.cart-fab {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 14px 28px -10px rgba(138, 116, 64, 0.65);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cart-fab:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(138, 116, 64, 0.75); }
.cart-fab svg { width: 20px; height: 20px; }
.cart-fab-count {
  position: absolute;
  top: -8px; right: -8px;
  min-width: 22px; height: 22px;
  border-radius: 999px;
  background: #c0392b;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}
.cart-fab-total { font-size: 0.9rem; font-weight: 500; opacity: 0.95; }

.cart-panel {
  width: min(360px, 92vw);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  max-height: 72vh;
  overflow: hidden;
}
.cart.open .cart-panel { display: flex; }
.cart-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.cart-panel-head h4 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; }
.cart-close { border: none; background: none; font-size: 1.5rem; line-height: 1; color: var(--ink-soft); cursor: pointer; }

.cart-list {
  list-style: none;
  overflow-y: auto;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}
.cart-item-name { font-weight: 600; font-size: 0.93rem; color: var(--ink); }
.cart-item-unit { font-size: 0.8rem; color: var(--ink-mute); }
.cart-free { display: block; font-style: normal; font-size: 0.78rem; color: var(--gold-deep); margin-top: 2px; }
.cart-item-side {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.cart-item-qty button {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gold-light);
  background: var(--gold-tint);
  color: var(--gold-deep);
  cursor: pointer;
  font-size: 1.05rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-qty button:hover { background: var(--gold); color: #fff; }
.cart-item-qty span { min-width: 24px; text-align: center; font-weight: 600; font-size: 0.95rem; }
.cart-item-total { font-weight: 700; color: var(--gold-deep); font-size: 0.95rem; }
.cart-item-remove { border: none; background: none; color: var(--ink-mute); cursor: pointer; font-size: 1.25rem; line-height: 1; }

.cart-empty { padding: 18px; text-align: center; color: var(--ink-mute); font-size: 0.92rem; display: none; }

.cart-foot {
  border-top: 1px solid var(--line);
  padding: 14px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart-total { display: flex; justify-content: space-between; align-items: baseline; font-size: 1rem; color: var(--ink-soft); }
.cart-total strong { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--gold-deep); }
.cart-clear {
  border: none;
  background: none;
  color: var(--ink-mute);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  align-self: center;
}
.cart.is-empty .cart-fab { display: none; }
.cart.is-empty .cart-panel { display: none; }
.btn.added { pointer-events: none; opacity: 0.85; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-up { transform: translateY(28px); }
.reveal-left { transform: translateX(-34px); }
.reveal-right { transform: translateX(34px); }
.reveal-scale { transform: translateY(18px) scale(0.975); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 560px) {
  .reveal { 
    transition-duration: 0.4s, 0.5s; 
    transition-delay: 0ms !important; 
  }
  .reveal-up, .reveal-left, .reveal-right, .reveal-scale { transform: translateY(20px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

.class-card-more { border-style: dashed; }
.class-card-more .class-icon { background: transparent; border: 1.5px dashed var(--gold); }

/* ---------- Events & collaborations ---------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.event-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.event-media {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  display: block;
  background: var(--cream-deep);
}
.event-media.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), transparent 50%),
    linear-gradient(150deg, #efe6cf 0%, #e2d3af 55%, #d3c199 100%);
  border-bottom: 1.5px dashed var(--line);
}
.event-body { padding: 22px 24px 26px; }
.event-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold-tint);
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 12px;
}
.event-body h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; margin-bottom: 6px; }
.event-body p { color: var(--ink-soft); font-size: 0.93rem; }
.event-collab { font-size: 0.95rem; color: var(--gold-deep); font-weight: 500; margin-top: 4px; }

.event-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
}
.event-media-group { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.event-media-main {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 8px);
  border: 1px solid var(--line);
  background: var(--cream-deep);
  transition: opacity 0.25s ease;
}
.event-thumbs { display: flex; flex-wrap: wrap; gap: 8px; }
.event-thumb {
  width: 54px; height: 42px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  border: 1.5px solid var(--line);
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.event-thumb:hover { transform: scale(1.05); }
.event-thumb.active { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(189, 162, 91, 0.35); }
.event-featured .event-body {
  padding: 30px 34px 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.collab-cta {
  margin-top: 46px;
  text-align: center;
  padding: 42px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.collab-cta h3 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  margin-bottom: 22px;
}

/* ---------- Promotions slider ---------- */
.promo-slider {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream-deep);
}
.promo-track { display: flex; transition: transform 0.55s ease; }
.promo-slide {
  flex: 0 0 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  min-height: 320px;
}

.promo-img {
  max-height: min(520px, 72vh);
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
}

.promo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(251, 245, 235, 0.92);
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.promo-prev { left: 18px; }
.promo-next { right: 18px; }
.promo-arrow:hover { background: var(--gold); color: #fff; transform: translateY(-50%) scale(1.06); }

.promo-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 18px 0 22px;
}
.promo-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--gold-light);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.promo-dot.active { background: var(--gold); transform: scale(1.25); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub, .hero-points { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-points { justify-content: center; }
  .hero-media { max-width: 440px; margin: 0 auto; }
  .hero-badge { left: 50%; transform: translateX(-50%); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .class-grid { grid-template-columns: repeat(2, 1fr); }
  .branch-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }

  .menu {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2px;
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 20px 24px max(28px, env(safe-area-inset-bottom));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }
  .menu.open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .menu > a { font-size: 1.4rem; padding: 10px 0; }
  .menu-actions { margin-top: 18px; width: 100%; justify-content: center; }
  .menu-actions .btn-sm { flex: 1; max-width: 240px; }
  .nav-inner { position: relative; z-index: 2; }
  .hamburger { display: flex; z-index: 3; }
  html.menu-open .nav { background: rgba(251, 245, 235, 0.98); box-shadow: 0 6px 30px -18px rgba(90, 70, 30, 0.4); }
}

@media (max-width: 560px) {
  .class-grid { grid-template-columns: 1fr; }
  .branch-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .event-featured { grid-template-columns: 1fr; }
  .event-featured .event-body { padding: 6px 24px 26px; }
  .product-variant { grid-template-columns: 1fr; }
  .variant-info { padding: 6px 24px 26px; }
  .variant-info .btn { align-self: stretch; }
  .branch-top { flex-direction: column; }
  .maps-link { margin-left: 0; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .promo-arrow { width: 38px; height: 38px; font-size: 1.4rem; }
  .promo-prev { left: 10px; }
  .promo-next { right: 10px; }
  .promo-slide { min-height: 240px; }
  .hero-title { font-size: clamp(2.3rem, 12vw, 3rem); }
}

/* ---------- Mobile order cart (floating side button) ---------- */
@media (max-width: 640px) {
  .cart { right: 12px; bottom: 12px; }
  .cart-fab { padding: 12px 18px; font-size: 0.92rem; }
  .cart-fab svg { width: 18px; height: 18px; }
  .cart-fab-total { font-size: 0.85rem; }
  .cart-panel { width: min(340px, 94vw); }
}



