/* ============================================================
   KAYLIN'S TENNIS ACADEMY — main stylesheet
   Theme: white + lime (#ccff00) + yellow (#facc15), dark mode
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --lime: #ccff00;
  --lime-soft: #e8ff8a;
  --lime-dark: #7da800;
  --lime-deep: #5a7a00;
  --yellow: #facc15;
  --yellow-soft: #fff4c2;
  --onyx: #171a21;
  --bg: #fafbf7;
  --surface: #ffffff;
  --surface-2: #f4f6ec;
  --text: #1d222c;
  --text-2: #5b6472;
  --border: #e4e8d8;
  --shadow: 0 10px 30px -12px rgba(23, 26, 33, .14);
  --shadow-lg: 0 24px 60px -20px rgba(23, 26, 33, .22);
  --radius: 18px;
  --header-h: 72px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}
[data-theme="dark"] {
  --lime-soft: #3c4708;
  --lime-dark: #ccff00;
  --lime-deep: #d5ff4d;
  --yellow-soft: #4a3f00;
  --bg: #0f1216;
  --surface: #171a21;
  --surface-2: #1e222b;
  --text: #eef1e9;
  --text-2: #9aa3b2;
  --border: #2b313b;
  --shadow: 0 10px 30px -12px rgba(0, 0, 0, .5);
  --shadow-lg: 0 24px 60px -20px rgba(0, 0, 0, .65);
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--lime); color: var(--onyx); }

.container { width: min(1180px, 100% - 40px); margin-inline: auto; }
@media (max-width: 640px) { .container { width: calc(100% - 32px); } }

.ic { width: 1.3em; height: 1.3em; flex: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--lime); color: var(--onyx); padding: 10px 18px; font-weight: 700; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -.02em; font-weight: 800; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin: 10px 0 8px; }
.section-head h2::after {
  content: ""; display: block; width: 54px; height: 4px; border-radius: 99px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, var(--lime) 0%, var(--lime-deep) 60%, transparent 100%);
}
[data-theme="dark"] .section-head h2::after { background: linear-gradient(90deg, var(--lime) 0%, #84cc00 60%, transparent 100%); }
.section-head p { color: var(--text-2); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-size: .78rem; font-weight: 800; letter-spacing: .22em;
  color: var(--lime-deep); text-transform: uppercase;
  background: var(--lime-soft); border: 1px solid var(--lime);
  padding: 6px 16px; border-radius: 999px;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 32% 32%, #eaff7a, var(--lime-deep) 68%);
  box-shadow: 0 0 0 3px rgba(204,255,0,.22);
}
[data-theme="dark"] .eyebrow { color: var(--lime); }
[data-theme="dark"] .eyebrow::before { background: radial-gradient(circle at 32% 32%, #eaff7a, #84cc00 68%); box-shadow: 0 0 0 3px rgba(163,230,53,.18); }

.section { padding: 84px 0; position: relative; }
.section-alt { background: var(--surface-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 800; letter-spacing: .02em; border-radius: 999px;
  padding: 13px 26px; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  min-height: 44px; white-space: nowrap;
}
.btn-primary { background: var(--lime); color: #171a21; box-shadow: 0 8px 22px -8px rgba(174, 224, 0, .55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(174, 224, 0, .65); }
.btn-yellow { background: var(--yellow); color: #171a21; }
.btn-yellow:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(250, 204, 21, .5); }
.btn-dark { background: var(--onyx); color: #fff; }
[data-theme="dark"] .btn-dark { background: #eef1e9; color: var(--onyx); }
.btn-outline { border: 2px solid var(--border); background: var(--surface); }
.btn-outline:hover { border-color: var(--lime); color: var(--lime-deep); }
[data-theme="dark"] .btn-outline:hover { color: var(--lime); }
.btn-ghost:hover { background: var(--surface-2); }
.btn-sm { padding: 8px 16px; font-size: .9rem; min-height: 38px; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none !important; }

.icon-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; color: var(--text-2);
  transition: background .18s, color .18s, transform .18s;
}
.icon-btn:hover { background: var(--surface-2); color: var(--text); transform: translateY(-1px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900; height: var(--header-h);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 22px; height: var(--header-h); }

.logo { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.06rem; letter-spacing: -.01em; }
/* Circular frame for uploaded logos (they typically have a white background,
   so a round white disc + lime ring reads as an intentional badge). */
.logo-badge {
  display: inline-flex; flex: none; width: 50px; height: 50px;
  border-radius: 50%; overflow: hidden; background: #fff;
  padding: 3px;
  box-shadow:
    0 0 0 2px var(--lime),
    0 0 0 4px rgba(255,255,255,.55),
    0 5px 14px -4px rgba(23,26,33,.28);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.logo:hover .logo-badge, .logo:focus-visible .logo-badge {
  transform: scale(1.07) rotate(-5deg);
  box-shadow:
    0 0 0 2px var(--lime),
    0 0 0 5px rgba(255,255,255,.75),
    0 9px 20px -5px rgba(23,26,33,.34);
}
.logo-img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.logo-mark { display: inline-flex; width: 40px; height: 40px; filter: drop-shadow(0 3px 8px rgba(174,224,0,.45)); transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
.logo:hover .logo-mark { transform: scale(1.07) rotate(-5deg); }
.logo-mark svg { width: 100%; height: 100%; }
.logo-text { white-space: nowrap; }
[data-theme="dark"] .logo-badge {
  box-shadow:
    0 0 0 2px var(--lime),
    0 0 0 4px rgba(23,26,33,.6),
    0 6px 16px -4px rgba(0,0,0,.5);
}
[data-theme="dark"] .logo:hover .logo-badge, [data-theme="dark"] .logo:focus-visible .logo-badge {
  box-shadow:
    0 0 0 2px var(--lime),
    0 0 0 6px rgba(23,26,33,.65),
    0 10px 22px -5px rgba(0,0,0,.6);
}

.main-nav { display: flex; gap: 4px; margin-left: auto; }
.nav-link {
  position: relative; padding: 9px 15px; font-weight: 600; color: var(--text-2);
  border-radius: 10px; transition: color .18s, background .18s;
}
.nav-link:hover { color: var(--text); background: var(--surface-2); }
.nav-link.active { color: var(--text); }
.nav-link.active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 3px; height: 3px;
  background: var(--lime); border-radius: 3px;
}
.nav-cta { margin-left: 8px; }
.nav-cta-mobile { display: none; }

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.main-nav + .header-actions { margin-left: 0; }
.cart-badge {
  position: absolute; top: 2px; right: 2px; min-width: 19px; height: 19px;
  background: var(--yellow); color: #171a21; font-size: .68rem; font-weight: 800;
  border-radius: 999px; display: flex; align-items: center; justify-content: center; padding: 0 5px;
  border: 2px solid var(--bg);
}
#themeToggle .moon { display: none; }
[data-theme="dark"] #themeToggle .sun { display: none; }
[data-theme="dark"] #themeToggle .moon { display: block; }
.nav-burger { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: calc(100vh - var(--header-h)); min-height: 620px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,12,16,.88) 0%, rgba(10,12,16,.55) 46%, rgba(10,12,16,.18) 100%);
}
[data-theme="dark"] .hero-bg::after { background: linear-gradient(100deg, rgba(10,12,16,.92) 0%, rgba(15,18,22,.6) 50%, rgba(15,18,22,.25) 100%); }
.hero-inner { padding: 90px 0 120px; max-width: 720px; color: #fff; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(204,255,0,.14); border: 1px solid rgba(204,255,0,.5); color: var(--lime);
  font-size: .74rem; font-weight: 800; letter-spacing: .24em; padding: 9px 18px; border-radius: 999px;
}
.hero h1 {
  font-size: clamp(2.7rem, 7vw, 5rem); margin: 26px 0 18px; color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.hero h1 .accent { color: var(--lime); position: relative; display: inline-block; }
.hero-sub { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: #e6e9de; max-width: 560px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-ghost {
  background: rgba(23,26,33,.66); border: 1.5px solid rgba(255,255,255,.28); color: #fff;
  backdrop-filter: blur(6px);
}
.btn-hero-ghost:hover { background: rgba(23,26,33,.85); border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }
.hero-meta { display: flex; gap: 34px; margin-top: 52px; flex-wrap: wrap; }
.hero-meta-item { display: flex; align-items: center; gap: 12px; color: #dfe4d6; font-weight: 600; }
.hero-meta-item .ic { color: var(--lime); width: 1.7em; height: 1.7em; }
.hero-meta-item small { display: block; color: #b7bfa9; font-weight: 500; font-size: .8rem; }
.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: #fff; opacity: .75; animation: bounceY 2s infinite; }
.hero-strip {
  background: var(--onyx); color: var(--lime); overflow: hidden; white-space: nowrap;
  padding: 13px 0; position: relative; z-index: 5;
}
[data-theme="dark"] .hero-strip { background: #13161c; border-block: 1px solid var(--border); }
.hero-strip-track { display: inline-flex; gap: 48px; animation: marquee 26s linear infinite; padding-left: 48px; }
.hero-strip span { font-weight: 800; letter-spacing: .18em; font-size: .82rem; }
.hero-strip .dot { color: var(--yellow); }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes bounceY { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- Stats bar ---------- */
.stats-bar { background: var(--surface); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 30px 12px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 900; color: var(--lime-deep); }
[data-theme="dark"] .stat-number { color: var(--lime); }
.stat-label { color: var(--text-2); font-size: .86rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

/* ---------- Services ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
/* allow 1fr tracks to shrink below content min-width (prevents mobile overflow) */
.grid-2 > *, .grid-3 > *, .grid-4 > * { min-width: 0; }

.service-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 28px 28px; position: relative; overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--lime), var(--yellow));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--lime); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  background: var(--lime-soft); color: var(--lime-deep); margin-bottom: 18px;
}
[data-theme="dark"] .service-icon { color: var(--lime); }
.service-icon .ic { width: 1.9em; height: 1.9em; }
.service-card h3 { font-size: 1.22rem; margin-bottom: 9px; }
.service-card p { color: var(--text-2); font-size: .95rem; flex: 1; }
.service-features { list-style: none; margin: 16px 0 20px; display: grid; gap: 8px; }
.service-features li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--text-2); }
.service-features .ic { width: 1.1em; height: 1.1em; color: var(--lime-dark); }
.service-price { display: flex; align-items: baseline; gap: 8px; }
.service-price strong { font-size: 1.7rem; font-weight: 900; color: var(--lime-deep); }
[data-theme="dark"] .service-price strong { color: var(--lime); }
.service-price span { color: var(--text-2); font-size: .88rem; }

/* ---------- Benefits ---------- */
.benefit-card {
  display: flex; gap: 18px; align-items: flex-start; padding: 26px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.benefit-card:hover { transform: translateY(-4px); border-color: var(--lime); box-shadow: var(--shadow); }
.benefit-icon { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, var(--lime), var(--yellow)); color: var(--onyx); display: flex; align-items: center; justify-content: center; flex: none; }
.benefit-card h3 { font-size: 1.05rem; margin-bottom: 5px; }
.benefit-card p { color: var(--text-2); font-size: .92rem; }

/* ---------- Gallery strip / media cards ---------- */
.gallery-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.gallery-strip figure { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-strip figure:hover img { transform: scale(1.08); }
.gallery-strip figcaption {
  position: absolute; inset: auto 0 0 0; padding: 30px 14px 12px;
  background: linear-gradient(transparent, rgba(10,12,16,.85)); color: #fff; font-size: .8rem; font-weight: 700;
}

.media-card {
  position: relative; border-radius: 16px; overflow: hidden; background: var(--surface);
  border: 1px solid var(--border); transition: transform .22s, box-shadow .22s, border-color .22s;
}
.media-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--lime); }
.media-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--surface-2); }
.media-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.media-card:hover .media-thumb img { transform: scale(1.06); }
.media-type {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(23,26,33,.82); backdrop-filter: blur(6px); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.media-type.video { background: rgba(204,255,0,.92); color: var(--onyx); }
.media-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 2;
}
.media-play span {
  width: 62px; height: 62px; border-radius: 50%; background: var(--lime); color: var(--onyx);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 12px rgba(204,255,0,.25); transition: transform .2s;
}
.media-card:hover .media-play span { transform: scale(1.12); }
.media-play .ic { width: 1.5em; height: 1.5em; margin-left: 4px; fill: currentColor; }
.media-body { padding: 17px 18px; }
.media-body h3 { font-size: 1.02rem; margin-bottom: 5px; }
.media-body p { color: var(--text-2); font-size: .88rem; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 28px 24px; display: flex; flex-direction: column; overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.testi-card::after {
  content: ""; position: absolute; left: 0; bottom: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--lime), var(--yellow));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--lime); }
.testi-card:hover::after { transform: scaleX(1); }
.testi-quote {
  position: absolute; top: 8px; right: 22px; font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem; line-height: 1; font-weight: 900; color: var(--lime); opacity: .3; user-select: none;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 13px; }
.testi-stars .ic { width: 1.05rem; height: 1.05rem; color: #ccd4bd; }
.testi-stars .ic.on { color: #e5a600; fill: #eab308; filter: drop-shadow(0 1px 1px rgba(180,130,0,.35)); }
[data-theme="dark"] .testi-stars .ic { color: #39404d; }
[data-theme="dark"] .testi-stars .ic.on { color: var(--yellow); fill: var(--yellow); filter: none; }
.testi-text { flex: 1; color: var(--text); font-size: .97rem; line-height: 1.72; margin-bottom: 18px; }
.testi-person { display: flex; align-items: center; gap: 13px; border-top: 1px solid var(--border); padding-top: 16px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--lime), var(--yellow)); color: var(--onyx);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .92rem; letter-spacing: .03em;
}
.testi-person strong { display: block; font-size: .96rem; line-height: 1.25; }
.testi-person small { color: var(--text-2); font-size: .8rem; }

/* ---------- FAQ ---------- */
.container-narrow { width: min(840px, 100% - 40px); margin-inline: auto; }
@media (max-width: 640px) { .container-narrow { width: calc(100% - 32px); } }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--surface); border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.faq-item:hover { border-color: var(--lime-dark); }
.faq-item.open { border-color: var(--lime); box-shadow: var(--shadow); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 22px; font-weight: 700; font-size: 1.01rem; text-align: left; min-height: 44px;
  transition: color .18s;
}
.faq-q:hover { color: var(--lime-deep); }
[data-theme="dark"] .faq-q:hover { color: var(--lime); }
.faq-q .chev { flex: none; width: 1.2em; height: 1.2em; color: var(--lime-dark); transition: transform .3s ease; }
[data-theme="dark"] .faq-q .chev { color: var(--lime); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .34s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding: 0 22px 22px; color: var(--text-2); font-size: .95rem; line-height: 1.72; }

/* ---------- Announcement bar ---------- */
.announce { position: relative; background: linear-gradient(90deg, var(--lime), var(--yellow)); color: var(--onyx); text-align: center; padding: 9px 46px 9px 16px; font-weight: 700; font-size: .86rem; letter-spacing: .01em; }
.announce .ic { width: 1em; height: 1em; vertical-align: -0.12em; margin-right: 6px; }
.announce-dismiss {
  position: absolute; top: 50%; right: 10px; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--onyx); opacity: .6; transition: opacity .15s, background .15s;
}
.announce-dismiss:hover { opacity: 1; background: rgba(23,26,33,.12); }
.announce-dismiss .ic { width: 14px; height: 14px; margin: 0; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; bottom: 26px; left: 26px; z-index: 940;
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--surface); border: 1.5px solid var(--border); color: var(--text-2);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease, border-color .18s, color .18s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { border-color: var(--lime); color: var(--lime-deep); }
[data-theme="dark"] .to-top:hover { color: var(--lime); }
.to-top .ic { width: 1.25em; height: 1.25em; }

/* ---------- About page ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.about-media { position: relative; }
.about-media .img-main { border-radius: 22px; box-shadow: var(--shadow-lg); aspect-ratio: 4/4.4; object-fit: cover; width: 100%; }
.about-media .img-float {
  position: absolute; bottom: -34px; left: -34px; width: 52%;
  border-radius: 18px; border: 6px solid var(--bg); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover;
}
.about-media .exp-chip {
  position: absolute; top: -22px; right: -14px; background: var(--lime); color: var(--onyx);
  border-radius: 18px; padding: 18px 22px; text-align: center; box-shadow: var(--shadow-lg);
  transform: rotate(3deg);
}
.exp-chip strong { display: block; font-size: 2rem; font-weight: 900; line-height: 1; }
.exp-chip small { font-weight: 800; letter-spacing: .12em; font-size: .68rem; text-transform: uppercase; }
.about-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin: 12px 0 18px; }
.about-copy p { color: var(--text-2); margin-bottom: 16px; }
.about-list { list-style: none; margin: 24px 0; display: grid; gap: 12px; }
.about-list li { display: flex; gap: 12px; align-items: center; }
.about-list .ic { color: var(--lime-dark); }

.coach-card { display: flex; gap: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; align-items: center; }
.coach-photo { width: 170px; height: 170px; border-radius: 20px; object-fit: cover; flex: none; }
.coach-card h3 { font-size: 1.3rem; }
.coach-card .role { color: var(--lime-deep); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; }
[data-theme="dark"] .coach-card .role { color: var(--lime); }
.coach-card p { color: var(--text-2); margin-top: 10px; font-size: .95rem; }

/* ---------- Pricing / booking ---------- */
.book-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 44px; align-items: start; }
.pricing-card {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 20px 22px;
  transition: border-color .2s, transform .2s;
}
.pricing-card:hover { border-color: var(--lime); transform: translateX(4px); }
.pricing-card strong { font-size: 1.02rem; }
.pricing-card small { display: block; color: var(--text-2); }
.pricing-card .amount { font-size: 1.45rem; font-weight: 900; color: var(--lime-deep); white-space: nowrap; }
[data-theme="dark"] .pricing-card .amount { color: var(--lime); }

.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 7px; }
.field label .req { color: #e11d48; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--border);
  background: var(--bg); transition: border-color .18s, box-shadow .18s; min-height: 46px;
}
[data-theme="dark"] .field input, [data-theme="dark"] .field select, [data-theme="dark"] .field textarea { background: var(--surface-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--lime-dark); box-shadow: 0 0 0 4px rgba(204,255,0,.18);
}
.field textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: .8rem; color: var(--text-2); margin-top: 12px; }
.form-success {
  text-align: center; padding: 26px 10px;
}
.form-success .big-check {
  width: 74px; height: 74px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--lime); color: var(--onyx); display: flex; align-items: center; justify-content: center;
  animation: popIn .4s cubic-bezier(.2,1.6,.4,1);
}
.form-success .big-check .ic { width: 2.2em; height: 2.2em; }
@keyframes popIn { from { transform: scale(.4); opacity: 0; } }

/* ---------- Contact strip ---------- */
.contact-strip { background: var(--onyx); color: #fff; border-radius: 24px; padding: 46px; position: relative; overflow: hidden; }
[data-theme="dark"] .contact-strip { background: #13161c; border: 1px solid var(--border); }
.contact-strip::before {
  content: ""; position: absolute; right: -80px; top: -80px; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(204,255,0,.25), transparent 70%);
}
.contact-grid { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; position: relative; }
.contact-items { display: grid; gap: 14px; }
.contact-item { display: flex; align-items: center; gap: 13px; color: #dfe4d6; }
.contact-item .ic { color: var(--lime); }
.contact-item a:hover { color: var(--lime); }

/* ---------- Store ---------- */
.store-toolbar { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 30px; }
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  padding: 9px 18px; border-radius: 999px; font-weight: 700; font-size: .88rem;
  border: 1.5px solid var(--border); color: var(--text-2); transition: all .18s;
}
.pill:hover { border-color: var(--lime-dark); color: var(--text); }
.pill.active { background: var(--lime); border-color: var(--lime); color: var(--onyx); }
.store-search {
  flex: 1; min-width: 220px; position: relative; margin-left: auto;
}
.store-search input {
  width: 100%; padding: 12px 16px 12px 44px; border-radius: 999px;
  border: 1.5px solid var(--border); background: var(--surface); min-height: 46px;
}
.store-search .ic { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-2); }
.store-search input:focus { outline: none; border-color: var(--lime-dark); box-shadow: 0 0 0 4px rgba(204,255,0,.18); }

.product-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .22s, box-shadow .22s, border-color .22s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--lime); }
.product-thumb { aspect-ratio: 1/.82; overflow: hidden; position: relative; background: var(--surface-2); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-thumb img { transform: scale(1.06); }
.product-thumb .no-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--text-2); }
.product-thumb .no-img .ic { width: 3.4em; height: 3.4em; opacity: .4; }
.product-badge {
  position: absolute; top: 12px; right: 12px; background: var(--yellow); color: var(--onyx);
  font-size: .7rem; font-weight: 900; letter-spacing: .06em; padding: 5px 11px; border-radius: 999px; text-transform: uppercase;
}
.product-body { padding: 20px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.product-cat { font-size: .72rem; font-weight: 800; letter-spacing: .14em; color: var(--lime-deep); text-transform: uppercase; }
[data-theme="dark"] .product-cat { color: var(--lime); }
.product-body h3 { font-size: 1.08rem; }
.product-body .desc { color: var(--text-2); font-size: .88rem; flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 6px; }
.product-price { font-size: 1.28rem; font-weight: 900; color: var(--lime-deep); font-variant-numeric: tabular-nums; letter-spacing: .01em; }
[data-theme="dark"] .product-price { color: var(--lime); }
.stock-note { font-size: .74rem; color: var(--text-2); }
.stock-note.out { color: #e11d48; }
.add-btn {
  display: inline-flex; align-items: center; gap: 8px; background: var(--lime); color: var(--onyx);
  font-weight: 800; border-radius: 999px; padding: 10px 18px; transition: transform .18s, box-shadow .18s;
}
.add-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -8px rgba(174,224,0,.6); }
.add-btn.added { background: var(--onyx); color: var(--lime); }
[data-theme="dark"] .add-btn.added { background: #eef1e9; }

.store-empty { text-align: center; padding: 70px 20px; color: var(--text-2); }
.store-empty .ic { width: 3.4em; height: 3.4em; opacity: .35; margin-bottom: 14px; }

/* ---------- Cart drawer ---------- */
.cart-drawer { position: fixed; inset: 0; z-index: 1100; pointer-events: none; }
.cart-drawer.open { pointer-events: auto; }
.cart-backdrop { position: absolute; inset: 0; background: rgba(10,12,16,.55); opacity: 0; transition: opacity .25s; backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.cart-drawer.open .cart-backdrop { opacity: 1; }
.cart-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(420px, 94vw);
  background: var(--surface); border-left: 1px solid var(--border);
  transform: translateX(100%); transition: transform .3s cubic-bezier(.3,1,.3,1);
  display: flex; flex-direction: column;
}
.cart-drawer.open .cart-panel { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; border-bottom: 1px solid var(--border);
}
.cart-head h3 { display: flex; align-items: center; gap: 10px; font-size: 1.15rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 18px 22px; display: grid; gap: 16px; align-content: start; }
.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 13px; align-items: center; }
.cart-item img, .cart-item .ph {
  width: 64px; height: 64px; border-radius: 12px; object-fit: cover; background: var(--surface-2);
  display: flex; align-items: center; justify-content: center; color: var(--text-2);
}
.cart-item h4 { font-size: .95rem; }
.cart-item .ci-price { color: var(--text-2); font-size: .85rem; }
.qty-stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--border); border-radius: 999px; }
.qty-stepper button { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; color: var(--text-2); }
.qty-stepper button:hover { color: var(--text); background: var(--surface-2); border-radius: 999px; }
.qty-stepper .qty { min-width: 26px; text-align: center; font-weight: 800; }
.ci-remove { color: var(--text-2); padding: 8px; border-radius: 8px; }
.ci-remove:hover { color: #e11d48; background: rgba(225,29,72,.08); grid-column: 3; }
.cart-foot { border-top: 1px solid var(--border); padding: 20px 22px; display: grid; gap: 12px; }
.cart-total-row { display: flex; justify-content: space-between; font-weight: 800; font-size: 1.1rem; }
.cart-total-row .amount { color: var(--lime-deep); }
[data-theme="dark"] .cart-total-row .amount { color: var(--lime); }

/* ---------- Promo code (ticket style) ---------- */
.cart-promo {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px dashed var(--border); border-radius: 12px;
  padding: 9px 10px 9px 12px; background: var(--surface-2);
  transition: border-color .2s, background .2s;
}
.cart-promo:focus-within { border-color: var(--lime-deep); background: rgba(204,255,0,.06); }
.cart-promo .ic { width: 17px; height: 17px; color: var(--text-2); flex: none; }
.cart-promo input {
  flex: 1; min-width: 0; border: none; background: none; outline: none;
  font: inherit; font-size: .9rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text); padding: 4px 0;
}
.cart-promo input::placeholder { color: var(--text-3, #9aa3af); letter-spacing: .02em; text-transform: none; font-weight: 500; }
.cart-promo.applied {
  border-style: solid; border-color: rgba(132,204,0,.55);
  background: linear-gradient(135deg, rgba(204,255,0,.16), rgba(204,255,0,.05));
}
.cart-promo.applied .ic { color: var(--lime-deep); }
[data-theme="dark"] .cart-promo.applied { border-color: rgba(163,230,53,.5); background: linear-gradient(135deg, rgba(163,230,53,.14), rgba(163,230,53,.04)); }
[data-theme="dark"] .cart-promo.applied .ic { color: var(--lime); }
.cp-info { flex: 1; min-width: 0; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.cp-code {
  font-family: ui-monospace, "SF Mono", Consolas, monospace; font-weight: 800; font-size: .92rem;
  color: var(--lime-deep); letter-spacing: .06em;
}
[data-theme="dark"] .cp-code { color: var(--lime); }
.cp-label { font-size: .78rem; color: var(--text-2); font-weight: 600; }
.cp-remove {
  flex: none; width: 26px; height: 26px; border-radius: 8px; color: var(--text-2);
  display: flex; align-items: center; justify-content: center; transition: background .15s, color .15s;
}
.cp-remove .ic { width: 13px; height: 13px; }
.cp-remove:hover { background: rgba(225,29,72,.1); color: #e11d48; }
.promo-msg { font-size: .8rem; margin: -4px 2px 0; font-weight: 600; }
.promo-msg.good { color: var(--lime-deep); }
[data-theme="dark"] .promo-msg.good { color: var(--lime); }
.promo-msg.bad { color: #e11d48; }
.cart-promo.shake { animation: promoShake .4s; }
@keyframes promoShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); } 40% { transform: translateX(5px); }
  60% { transform: translateX(-4px); } 80% { transform: translateX(3px); }
}
.cart-total-row.sub { font-weight: 600; font-size: .92rem; color: var(--text-2); }
.cart-total-row.sub .amount { color: var(--text-2); font-weight: 700; }
.cart-total-row.discount {
  font-size: .95rem; font-weight: 800; padding-top: 8px;
  border-top: 1px dashed var(--border);
}
.cart-total-row.discount .d-code {
  font-family: ui-monospace, "SF Mono", Consolas, monospace; font-size: .8rem;
  color: var(--lime-deep); letter-spacing: .05em;
}
[data-theme="dark"] .cart-total-row.discount .d-code { color: var(--lime); }
.cart-total-row.discount .d-amt { color: #16a34a; }
.cart-total-row.grand { border-top: 1px solid var(--border); padding-top: 10px; font-size: 1.18rem; font-weight: 900; }
.cart-total-row.grand .amount { font-variant-numeric: tabular-nums; }

.cart-empty { text-align: center; color: var(--text-2); padding: 50px 10px; }
.cart-empty .ic { width: 3em; height: 3em; opacity: .3; margin: 0 auto 12px; }

/* ---------- Checkout modal ---------- */
.modal { position: fixed; inset: 0; z-index: 1200; display: flex; align-items: center; justify-content: center; padding: 20px; pointer-events: none; }
.modal.open { pointer-events: auto; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(10,12,16,.6); opacity: 0; transition: opacity .25s; }
.modal.open .modal-backdrop { opacity: 1; }
.modal-card {
  position: relative; width: min(560px, 100%); max-height: 92vh; overflow-y: auto;
  background: var(--surface); border-radius: 22px; border: 1px solid var(--border);
  box-shadow: var(--shadow-lg); transform: translateY(24px) scale(.97); opacity: 0; transition: all .28s;
}
.modal.open .modal-card { transform: none; opacity: 1; }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 26px; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: var(--surface); z-index: 2; }
.modal-head h3 { font-size: 1.2rem; }
.modal-body { padding: 26px; }
.order-summary { background: var(--surface-2); border-radius: 14px; padding: 16px 18px; margin-bottom: 20px; }
.order-summary .row { display: flex; justify-content: space-between; padding: 5px 0; font-size: .93rem; color: var(--text-2); }
.order-summary .row.total { border-top: 1px dashed var(--border); margin-top: 8px; padding-top: 12px; font-weight: 900; font-size: 1.12rem; color: var(--text); }
.order-summary .row.total .amount { color: var(--lime-deep); }
[data-theme="dark"] .order-summary .row.total .amount { color: var(--lime); }
.order-summary .row.sub { font-size: .86rem; }
.order-summary .row.discount {
  padding: 6px 10px; margin: 4px 0; border-radius: 9px;
  background: rgba(204,255,0,.12); color: var(--text); font-weight: 700; font-size: .88rem;
}
[data-theme="dark"] .order-summary .row.discount { background: rgba(163,230,53,.12); }
.order-summary .row.discount .d-code {
  font-family: ui-monospace, "SF Mono", Consolas, monospace; font-size: .78rem;
  color: var(--lime-deep); letter-spacing: .05em;
}
[data-theme="dark"] .order-summary .row.discount .d-code { color: var(--lime); }
.order-summary .row.discount .amount { color: #16a34a; font-weight: 800; font-variant-numeric: tabular-nums; }
.pay-note { font-size: .8rem; color: var(--text-2); margin-top: 14px; line-height: 1.5; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 1300; background: rgba(8,10,13,.93); display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .25s; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img, .lightbox video, .lightbox iframe { max-width: min(1100px, 92vw); max-height: 78vh; border-radius: 14px; box-shadow: var(--shadow-lg); }
.lightbox iframe { width: min(1000px, 92vw); height: min(620px, 66vh); border: none; background: #000; }
.lightbox-caption { color: #d6dbe4; margin-top: 16px; text-align: center; max-width: 700px; text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.lightbox-close { position: absolute; top: 18px; right: 18px; color: #fff; }
.lightbox-close:hover { color: var(--lime); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; }
.lightbox-nav:hover { background: var(--lime); color: var(--onyx); }
.lightbox-nav.prev { left: 18px; } .lightbox-nav.next { right: 18px; }

/* ---------- Toasts ---------- */
.toast-stack { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 1500; display: grid; gap: 10px; width: min(420px, calc(100vw - 40px)); }
.toast {
  display: flex; gap: 12px; align-items: center; padding: 14px 18px;
  background: var(--onyx); color: #fff; border-radius: 14px; box-shadow: var(--shadow-lg);
  animation: toastIn .3s cubic-bezier(.2,1.4,.4,1); font-weight: 600; font-size: .93rem;
}
[data-theme="dark"] .toast { background: #262c36; border: 1px solid var(--border); }
.toast .ic { color: var(--lime); }
.toast.error .ic { color: #fb7185; }
.toast.out { animation: toastOut .3s forwards; }
@keyframes toastIn { from { transform: translateY(18px); opacity: 0; } }
@keyframes toastOut { to { transform: translateY(14px); opacity: 0; } }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 1000;
  width: 58px; height: 58px; border-radius: 50%; background: #22c55e; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(34,197,94,.6); transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08) rotate(6deg); }
.wa-float .ic { width: 1.7em; height: 1.7em; }
.wa-float::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid rgba(34,197,94,.5); animation: waPulse 2s infinite;
}
@keyframes waPulse { 0% { transform: scale(.9); opacity: 1; } 100% { transform: scale(1.35); opacity: 0; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--onyx); color: #b9c1cd; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .9fr .9fr; gap: 40px; padding: 60px 0 40px; }
.footer-logo { margin-bottom: 16px; color: #fff; display: inline-flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.02rem; }
.footer-logo .logo-badge {
  width: 54px; height: 54px;
  box-shadow:
    0 0 0 2px var(--lime),
    0 0 0 4px rgba(255,255,255,.12),
    0 8px 18px -6px rgba(0,0,0,.55);
}
.footer-logo .logo-mark { width: 44px; height: 44px; }
.footer-logo .logo-text { color: #fff; }
.footer-desc { color: #9aa3b2; font-size: .93rem; margin-bottom: 18px; max-width: 300px; }
.footer-wa { border-color: #2b313b; color: #fff; background: transparent; }
.footer-wa:hover { border-color: var(--lime); color: var(--lime); }
.footer-col { display: grid; gap: 11px; align-content: start; }
.footer-col h4 { color: #fff; font-size: .95rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.footer-col a, .footer-col span { display: flex; align-items: center; gap: 10px; color: #9aa3b2; font-size: .92rem; transition: color .18s, transform .18s; }
.footer-col a { width: fit-content; }
.footer-col a:hover { color: var(--lime); transform: translateX(4px); }
.footer-col a .ic { transition: color .18s; }
.footer-col h4 { margin-bottom: 14px; }
.footer-col .ic { color: var(--lime); opacity: .8; }
.footer-admin-link { margin-top: 10px; opacity: .75; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  border-top: 1px solid #2b313b; padding: 22px 0 26px; font-size: .84rem; color: #77808f;
}
.footer-ball { width: 12px; height: 12px; border-radius: 50%; background: var(--lime); display: inline-block; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; } .reveal-d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-strip-track, .wa-float::after, .hero-scroll { animation: none; }
  .logo-badge, .logo-mark { transition: none; }
  .logo:hover .logo-badge, .logo:focus-visible .logo-badge, .logo:hover .logo-mark { transform: none; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 34px; }
.spinner {
  width: 22px; height: 22px; border: 3px solid rgba(204,255,0,.25); border-top-color: var(--lime);
  border-radius: 50%; animation: spin .7s linear infinite; display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Custom scrollbar for scroll areas */
.cart-items::-webkit-scrollbar, .modal-card::-webkit-scrollbar { width: 9px; }
.cart-items::-webkit-scrollbar-thumb, .modal-card::-webkit-scrollbar-thumb { background: var(--border); border-radius: 9px; }
.cart-items::-webkit-scrollbar-thumb:hover, .modal-card::-webkit-scrollbar-thumb:hover { background: var(--lime-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .about-grid { gap: 34px; }
  .book-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--bg); flex-direction: column; padding: 24px; gap: 6px;
    transform: translateX(-100%); transition: transform .28s; z-index: 890; overflow-y: auto;
  }
  .main-nav.open { transform: none; }
  .nav-link { font-size: 1.12rem; padding: 14px 16px; }
  .nav-cta-mobile { display: block; }
  .nav-burger { display: inline-flex; }
  .nav-cta { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media .img-float { left: -10px; bottom: -26px; }
  .coach-card { flex-direction: column; text-align: center; }
  .about-list li { justify-content: center; }
}
@media (max-width: 640px) {
  .section { padding: 58px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 54px 0 90px; }
  .hero-meta { gap: 20px; }
  .contact-strip { padding: 32px 24px; }
  /* Mobile: brand = circular logo only (the uploaded logo already carries the
     name; hiding the text keeps cart/theme/burger buttons inside the viewport). */
  .logo-text { display: none; }
  .logo-badge { width: 44px; height: 44px; }
  .header-inner { gap: 14px; }
  .header-actions { gap: 6px; }
  .store-search { margin-left: 0; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid > * { min-width: 0; }
  .form-card { padding: 22px; }
  .modal-body { padding: 18px; }
  .testi-grid { grid-template-columns: 1fr; }
  .to-top { bottom: 18px; left: 18px; width: 42px; height: 42px; }
  .faq-q { padding: 16px 18px; font-size: .96rem; }
  .faq-a-inner p { padding: 0 18px 18px; }
  .testi-quote { font-size: 3.6rem; top: 14px; right: 16px; }
}

/* ---------- Print (invoice-friendly) ---------- */
@media print {
  .site-header, .site-footer, .wa-float, .hero-strip, .to-top, .announce { display: none !important; }
}

/* ============================================================
   Detail polish pass — focus rings, hero flourishes, micro-interactions
   ============================================================ */
/* Keyboard focus rings (visible only for keyboard users) */
.btn:focus-visible, .icon-btn:focus-visible, .nav-link:focus-visible, a:focus-visible,
.faq-q:focus-visible, .add-btn:focus-visible, .to-top:focus-visible,
.announce-dismiss:focus-visible, .pill:focus-visible, .wa-float:focus-visible,
.gallery-strip figure:focus-within, .media-card:focus-within {
  outline: 3px solid var(--lime-dark);
  outline-offset: 3px;
  border-radius: 6px;
}
[data-theme="dark"] .btn:focus-visible, [data-theme="dark"] .icon-btn:focus-visible, [data-theme="dark"] a:focus-visible { outline-color: var(--lime); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; }

/* Hero accent underline flourish (yellow) */
.hero h1 .accent::after {
  content: ""; position: absolute; left: 2%; right: 2%; bottom: -0.12em; height: 0.14em;
  background: var(--yellow); border-radius: 99px;
  transform: scaleX(0); transform-origin: left;
  animation: underlineIn .8s .5s ease forwards;
}
@keyframes underlineIn { to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) { .hero h1 .accent::after { transform: none; animation: none; } }

/* Hero badge/heading rhythm */
.hero-badge { margin-bottom: 4px; }
.hero h1 { margin-top: 20px; }

/* Header shadow-on-scroll */
.site-header { transition: box-shadow .25s ease; }
.site-header.scrolled { box-shadow: 0 10px 30px -18px rgba(23,26,33,.28); }

/* Product/service card icon micro-lift */
.service-card:hover .service-icon { transform: translateY(-3px) rotate(-4deg); }
.service-icon { transition: transform .25s ease; }

/* Store product thumb zoom hint */
.product-thumb::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 62%, rgba(10,12,16,.14));
  opacity: 0; transition: opacity .25s ease;
}
.product-card:hover .product-thumb::after { opacity: 1; }

/* Dark-mode announcement keeps contrast */
[data-theme="dark"] .announce { color: var(--onyx); }

/* Toast entrance polish */
.toast { animation: toastIn .32s cubic-bezier(.2, .9, .3, 1.2); }
@keyframes toastIn { from { opacity: 0; transform: translateY(14px) scale(.96); } }

/* FAQ first-item flush accent */
.faq-item.open .faq-q { color: var(--lime-deep); }
[data-theme="dark"] .faq-item.open .faq-q { color: var(--lime); }

/* Store toolbar pill active glow */
.filter-pills .pill.active { box-shadow: 0 6px 18px -8px rgba(174, 224, 0, .6); }

/* Cart drawer panel — layered shadow depth */
.cart-panel { box-shadow: -30px 0 80px -30px rgba(23,26,33,.4); }

/* ============================================================
   WhatsApp follow-up button (booking success) — green brand
   ============================================================ */
.btn-wa {
  background: #22c55e; color: #fff;
  box-shadow: 0 8px 22px -8px rgba(34, 197, 94, .55);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(34, 197, 94, .6); color: #fff; }

/* ============================================================
   Stats count-up — numbers animate in when scrolled into view
   ============================================================ */
.stat-number { font-variant-numeric: tabular-nums; }

/* ============================================================
   Subtle dot texture on alternating section backgrounds
   ============================================================ */
.section-alt {
  background-image: radial-gradient(color-mix(in srgb, var(--lime-dark) 12%, transparent) 1px, transparent 1.5px);
  background-size: 26px 26px;
}
[data-theme="dark"] .section-alt {
  background-image: radial-gradient(rgba(204, 255, 0, .05) 1px, transparent 1.5px);
}

/* ============================================================
   Booking timeslot picker
   ============================================================ */
.slot-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
  gap: 10px; margin-top: 6px;
}
.slot-empty, .slot-loading {
  grid-column: 1 / -1; color: var(--text-2); font-size: .92rem;
  padding: 18px 6px; text-align: center; border: 1.5px dashed var(--border); border-radius: 12px;
}
.slot-loading { display: flex; align-items: center; justify-content: center; gap: 10px; }
.slot {
  min-height: 46px; border: 1.5px solid var(--border); border-radius: 12px;
  background: var(--surface); font-weight: 700; font-size: .95rem; letter-spacing: .02em;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .16s ease, background .16s ease, transform .16s ease, box-shadow .16s ease;
}
.slot:not(:disabled):hover {
  border-color: var(--lime-dark); background: var(--lime-soft);
  transform: translateY(-2px); box-shadow: 0 8px 18px -10px rgba(174,224,0,.55);
}
.slot:focus-visible { outline: 3px solid var(--lime-dark); outline-offset: 2px; }
.slot.selected {
  background: var(--lime); border-color: var(--lime-deep); color: var(--onyx);
  box-shadow: 0 10px 22px -10px rgba(174,224,0,.7); transform: translateY(-2px);
}
.slot.taken {
  background: var(--surface-2); color: var(--text-2); cursor: not-allowed;
  text-decoration: line-through; text-decoration-thickness: 2px; text-decoration-color: #e11d48;
}
.slot.past { opacity: .4; cursor: not-allowed; }
.slot-legend {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 10px; font-size: .78rem; color: var(--text-2);
}
.slot-legend .dot {
  width: 10px; height: 10px; border-radius: 3px; display: inline-block; margin-right: 6px; vertical-align: -1px;
}
.slot-legend .dot.free { background: var(--lime); border: 1px solid var(--lime-deep); }
.slot-legend .dot.taken { background: var(--surface-2); border: 1px solid var(--border); }
.slot-hours { margin-left: auto; font-weight: 700; color: var(--lime-deep); }
[data-theme="dark"] .slot-hours { color: var(--lime); }
@media (max-width: 640px) {
  .slot-grid { grid-template-columns: repeat(3, 1fr); }
  .slot-hours { margin-left: 0; width: 100%; }
}

/* ============================================================
   Scroll progress bar (thin lime line under the header)
   ============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 950;
  pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--yellow), var(--lime) 55%, var(--lime-deep));
  border-radius: 0 99px 99px 0;
  box-shadow: 0 0 12px rgba(204,255,0,.55);
  transition: width .08s linear;
}

/* ============================================================
   Global custom scrollbar (webkit) + selection detail
   ============================================================ */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: var(--border); border-radius: 99px; border: 2.5px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: var(--lime-dark); }
* { scrollbar-width: thin; scrollbar-color: var(--border) var(--bg); }
*::-webkit-scrollbar-corner { background: transparent; }

/* ============================================================
   Micro-interaction details
   ============================================================ */
/* Button press feedback */
.btn:active, .add-btn:active, .icon-btn:active, .to-top:active, .pill:active { transform: scale(.965); }
.add-btn:active { transform: scale(.94); }

/* Stat numbers pop on hover (home/about) */
.stat-item { transition: background .25s ease; }
.stat-item:hover { background: color-mix(in srgb, var(--lime-soft) 55%, transparent); }
.stat-item:hover .stat-number { transform: scale(1.07); }
.stat-number { transition: transform .25s cubic-bezier(.2,.9,.3,1.4); display: inline-block; }

/* Nav link underline draw */
.nav-link { position: relative; }
.nav-link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2.5px;
  background: var(--lime); border-radius: 99px;
  transform: scaleX(0); transform-origin: center; transition: transform .22s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active::after { background: var(--yellow); }

/* Media tile hover already lifts + play pulse (defined in media section above) */

/* Wa-float subtle idle pulse already present; add hover tooltip label */
.wa-float::before {
  content: "Chat with us"; position: absolute; right: 64px; top: 50%; transform: translateY(-50%) translateX(6px);
  background: var(--onyx); color: #fff; font-size: .76rem; font-weight: 700;
  padding: 7px 13px; border-radius: 9px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease;
}
.wa-float:hover::before { opacity: 1; transform: translateY(-50%) translateX(0); }
[data-theme="dark"] .wa-float::before { background: #eef1e9; color: var(--onyx); }

/* Product badge shimmer (position/base styles defined in store section above) */
.product-badge { z-index: 2; box-shadow: 0 6px 16px -6px rgba(250,204,21,.65); }
.product-badge::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.55) 50%, transparent 60%);
  background-size: 220% 100%;
  animation: badgeShimmer 3.2s ease infinite;
  background-position: 220% 0;
}
@keyframes badgeShimmer { to { background-position: -120% 0; } }

/* Benefit card corner accent on hover (::after is free on benefit cards) */
.benefit-card { position: relative; overflow: hidden; }
.benefit-card::after {
  content: ""; position: absolute; top: -30px; right: -30px; width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lime-soft), transparent 70%);
  opacity: 0; transition: opacity .3s ease, transform .3s ease; pointer-events: none;
}
.benefit-card:hover::after { opacity: 1; transform: scale(1.25); }

/* ============================================================
   Reduced motion — respect user preference globally
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .scroll-progress span { transition: none; }
}

/* ============================================================
   Print — clean readable output for visitors
   ============================================================ */
@media print {
  body { background: #fff; color: #000; }
  .scroll-progress, .header-actions, .nav-burger, .cart-drawer, .to-top, .wa-float,
  .toast-stack, .hero-bg img, .hero-strip, .store-toolbar, .media-play,
  .slot-grid, .slot-legend, .filter-pills, #bookBtn, .form-note { display: none !important; }
  .hero { min-height: auto; padding: 18px 0; background: #fff !important; }
  .hero h1, .hero p { color: #000 !important; }
  .hero h1 .accent { color: #000 !important; }
  .section { padding: 18px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .product-card, .service-card, .media-card, .testi-card, .coach-card, .form-card {
    box-shadow: none !important; border: 1px solid #ccc; break-inside: avoid;
  }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .72em; color: #555; }
  .site-footer { background: #fff !important; color: #000; }
  .site-footer, .footer-col a, .footer-col span { color: #000 !important; }
}

/* ============================================================
   MICRO-DETAIL POLISH LAYER (round QA-19)
   Tactile buttons, nav grow-underlines, card light sweeps,
   play-button pulse, testimonial glyphs, themed scrollbars.
   ============================================================ */

/* --- 1. Button tactile press physics --- */
.btn:active { transform: translateY(1px) scale(.985); }
.btn-primary:active, .btn-lg:active { box-shadow: 0 5px 14px -8px rgba(174,224,0,.5); }

/* --- 2. Primary button shine sweep --- */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.55) 50%, transparent 60%);
  transform: translateX(-120%); transition: transform .7s ease;
  pointer-events: none;
}
.btn-primary:hover::after { transform: translateX(120%); }
@media (prefers-reduced-motion: reduce) { .btn-primary::after { display: none; } }

/* --- 3. Nav link grow-underline on hover --- */
.nav-link:not(.active)::before {
  content: ""; position: absolute; left: 50%; right: 50%; bottom: 5px; height: 2.5px;
  background: var(--lime); border-radius: 3px;
  transition: left .22s ease, right .22s ease, bottom .22s ease;
}
.nav-link:not(.active):hover::before { left: 15px; right: 15px; bottom: 3px; }

/* --- 4. Card light sweep (product / media / service) --- */
.product-card, .media-card { position: relative; overflow: hidden; }
.product-thumb::after, .media-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0) 45%, rgba(255,255,255,.14) 50%, rgba(255,255,255,0) 55%);
  transform: translateX(-110%) skewX(-8deg);
  transition: transform .8s ease; pointer-events: none;
}
[data-theme="dark"] .product-thumb::after, [data-theme="dark"] .media-thumb::after { opacity: .5; }
.product-card:hover .product-thumb::after,
.media-card:hover .media-thumb::after { transform: translateX(110%) skewX(-8deg); }
@media (prefers-reduced-motion: reduce) { .product-thumb::after, .media-thumb::after { display: none; } }

/* --- 5. Media play button pulse on hover --- */
.media-play { transition: transform .25s ease; }
.media-card:hover .media-play { transform: scale(1.12); }
.media-card:hover .media-play span::after {
  content: ""; position: absolute; inset: -7px; border-radius: 50%;
  border: 2px solid var(--lime); opacity: 0;
  animation: playPulse 1.2s ease-out infinite;
}
.media-play span { position: relative; }
@keyframes playPulse {
  0% { transform: scale(.75); opacity: .9; }
  100% { transform: scale(1.5); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .media-card:hover .media-play span::after { animation: none; } }

/* --- 6. Selected slot pop --- */
.slot.selected { animation: slotPop .3s cubic-bezier(.2,1.6,.4,1); }
@keyframes slotPop { 40% { transform: translateY(-2px) scale(1.06); } }
@media (prefers-reduced-motion: reduce) { .slot.selected { animation: none; } }

/* --- 7. Testimonial decorative quote glyph --- */
.testi-card { position: relative; }
.testi-card::before {
  content: "\201C"; position: absolute; top: 2px; right: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.6rem; line-height: 1; color: var(--lime);
  opacity: .28; pointer-events: none; font-style: italic;
}
[data-theme="dark"] .testi-card::before { opacity: .5; }

/* --- 8. Reveal stagger for card grids (auto-cascade) --- */
.grid-2 > .reveal:nth-child(2), .grid-3 > .reveal:nth-child(2) { transition-delay: .06s; }
.grid-2 > .reveal:nth-child(3), .grid-3 > .reveal:nth-child(3) { transition-delay: .12s; }
.grid-3 > .reveal:nth-child(4) { transition-delay: .06s; }
.grid-3 > .reveal:nth-child(5) { transition-delay: .12s; }
.grid-3 > .reveal:nth-child(6) { transition-delay: .18s; }

/* --- 9. Themed page scrollbar (WebKit) --- */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--text-2) 38%, transparent);
  border-radius: 8px; border: 2.5px solid transparent; background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--lime-dark); border: 2.5px solid transparent; background-clip: padding-box;
}
[data-theme="dark"] ::-webkit-scrollbar-thumb:hover { background: var(--lime); }
* { scrollbar-width: thin; scrollbar-color: color-mix(in srgb, var(--text-2) 38%, transparent) transparent; }

/* --- 10. Product/media type badge refinement --- */
.media-type {
  box-shadow: inset 0 -1.5px 0 rgba(0,0,0,.08);
  backdrop-filter: blur(4px);
}

/* --- 11. Stat / benefit icon micro-bounce on card hover --- */
.service-card:hover .service-icon,
.stat-item:hover .stat-number, .stat-item:hover svg { animation: iconNudge .35s ease; }
@keyframes iconNudge { 40% { transform: translateY(-3px) rotate(-4deg) scale(1.08); } }
@media (prefers-reduced-motion: reduce) { .service-card:hover .service-icon, .stat-item:hover .stat-number { animation: none; } }

/* --- 12. Footer link arrow slide --- */
.site-footer a:not(.social) { position: relative; }
.site-footer a:not(.social)::before {
  content: "→"; position: absolute; left: -14px; opacity: 0;
  transition: left .2s ease, opacity .2s ease; color: var(--lime); font-size: .85em;
}
.site-footer a:not(.social):hover::before { left: -18px; opacity: 1; }

/* --- 13. Badge ping when cart count increases --- */
@keyframes badgePing {
  0% { box-shadow: 0 0 0 0 rgba(250,204,21,.55); }
  100% { box-shadow: 0 0 0 9px rgba(250,204,21,0); }
}
.cart-badge.ping { animation: badgePing .6s ease-out 2; }

/* --- 14. Drawer body texture + checkout modal lime top accent --- */
.cart-items { position: relative; }
.drawer-body::before, .cart-items::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .45;
  background-image: radial-gradient(color-mix(in srgb, var(--text-2) 12%, transparent) 1px, transparent 1.2px);
  background-size: 22px 22px;
}
[data-theme="dark"] .drawer-body::before, [data-theme="dark"] .cart-items::before { opacity: .22; }
.modal-card { border-top: 4px solid var(--lime); animation: modalPop .32s cubic-bezier(.2,1.4,.4,1); }
@keyframes modalPop { from { transform: translateY(24px) scale(.96); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .modal-card { animation: none; } }
.lightbox { backdrop-filter: blur(3px); }

/* --- 15. Hero eyebrow letterpress --- */
.eyebrow { text-shadow: 0 1px 0 rgba(255,255,255,.5); }
[data-theme="dark"] .eyebrow { text-shadow: 0 1px 0 rgba(0,0,0,.4); }

/* --- 16. Table of prices: tabular alignment everywhere --- */
.price, .product-price, .cart-line-total, .drawer-total strong { font-variant-numeric: tabular-nums; }

/* --- 17. WhatsApp float ring rotation --- */
.wa-float::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px dashed color-mix(in srgb, #22c55e 55%, transparent);
  animation: waSpin 26s linear infinite; pointer-events: none;
}
@keyframes waSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .wa-float::before { animation: none; } }
