/* ============================================================
   EduKido BD — "Playful Pop" Design System
   Prefix: ek- to avoid Tailwind conflicts
   ============================================================ */
:root {
  --ek-cream: #FDFAF6;
  --ek-ink: #1A1A2E;
  --ek-muted: #6B7280;
  --ek-brand: #FF5A3C;
  --ek-brand-d: #EE3D1C;
  --ek-brand-soft: #FFE7DF;
  --ek-amber: #FFB020;
  --ek-amber-soft: #FFF1D6;
  --ek-teal: #12B5A5;
  --ek-teal-soft: #D6F6F1;
  --ek-grape: #7C5CFC;
  --ek-grape-soft: #ECE7FF;
  --ek-pink: #FF7BA9;
  --ek-pink-soft: #FFE4EE;
  --ek-sky: #3FA9F5;
  --ek-sky-soft: #DCEEFF;
  --ek-line: rgba(26,26,46,.08);
  --ek-shadow: 0 18px 40px -22px rgba(40,20,10,.35);
  --ek-shadow-sm: 0 10px 24px -16px rgba(40,20,10,.4);
  --ek-r-lg: 28px;
  --ek-r-md: 20px;
  --ek-r-sm: 14px;
  --ek-display: "Fredoka", system-ui, sans-serif;
  --ek-round: "Baloo Da 2", system-ui, sans-serif;
  --ek-maxw: 1240px;
}

/* ── announce bar ── */
.ek-announce {
  background: linear-gradient(90deg, var(--ek-brand), var(--ek-amber));
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 13.5px;
  padding: 9px 12px;
  letter-spacing: .01em;
}
.ek-announce .ek-bn {
  font-family: "Hind Siliguri", sans-serif;
}

/* ── soft grid bg ── */
.ek-bg-grid {
  background-image: radial-gradient(circle at 1px 1px, rgba(26,26,46,.04) 1px, transparent 0);
  background-size: 24px 24px;
  background-color: var(--ek-cream);
}

/* ── section wrapper ── */
.ek-section {
  padding: 56px 0;
}
.ek-wrap {
  max-width: var(--ek-maxw);
  margin: 0 auto;
  padding: 0 22px;
}
.ek-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}
.ek-eyebrow {
  font-family: var(--ek-round);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12.5px;
  color: var(--ek-brand);
}
.ek-head h2 {
  font-family: var(--ek-display);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  color: var(--ek-ink);
  margin-top: 5px;
  line-height: 1.1;
}
.ek-link-all {
  font-family: var(--ek-round);
  font-weight: 600;
  color: var(--ek-brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 14px;
  text-decoration: none;
}
.ek-link-all:hover { text-decoration: underline; }

/* ── hero ── */
.ek-hero {
  position: relative;
  padding: 54px 0 64px;
  overflow: hidden;
  background: var(--ek-cream);
}
.ek-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .5;
  z-index: 0;
  animation: ek-float 9s ease-in-out infinite;
}
.ek-blob.b1 { width: 320px; height: 320px; background: var(--ek-amber-soft); top: -60px; right: 6%; }
.ek-blob.b2 { width: 240px; height: 240px; background: var(--ek-teal-soft); bottom: -40px; left: -50px; animation-delay: -3s; }
.ek-blob.b3 { width: 180px; height: 180px; background: var(--ek-pink-soft); top: 30%; right: 38%; animation-delay: -5s; }
@keyframes ek-float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-22px) rotate(8deg); }
}
.ek-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}
.ek-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--ek-brand-soft);
  color: var(--ek-brand-d);
  font-family: var(--ek-round);
  font-weight: 600;
  font-size: 13.5px;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: var(--ek-shadow-sm);
  margin-bottom: 18px;
}
.ek-hero-badge svg { width: 16px; height: 16px; }
.ek-hero h1 {
  font-family: var(--ek-display);
  font-size: clamp(36px, 5.2vw, 62px);
  font-weight: 700;
  color: var(--ek-ink);
  line-height: 1.05;
  margin-bottom: 16px;
}
.ek-hero h1 .hl {
  color: var(--ek-brand);
  position: relative;
  white-space: nowrap;
}
.ek-hero h1 .hl::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 11px;
  background: var(--ek-amber);
  opacity: .45;
  border-radius: 8px;
  z-index: -1;
}
.ek-hero-sub {
  font-size: 18px;
  color: var(--ek-muted);
  max-width: 480px;
  margin-bottom: 26px;
  line-height: 1.6;
}
.ek-hero-cta {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.ek-trust-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.ek-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--ek-line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--ek-shadow-sm);
  color: var(--ek-ink);
}
.ek-pill .ic {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 14px;
}

/* ── toy collage ── */
.ek-collage {
  position: relative;
  height: 440px;
}
.ek-toy {
  position: absolute;
  border-radius: 24px;
  box-shadow: var(--ek-shadow);
  display: grid;
  place-items: center;
  border: 5px solid #fff;
  overflow: hidden;
}
.ek-toy svg { width: 54%; height: 54%; }
.ek-toy img { width: 80%; height: 80%; object-fit: contain; }
.ek-t1 { width: 210px; height: 210px; background: linear-gradient(150deg, var(--ek-brand-soft), #fff); top: 10px; left: 30px; transform: rotate(-6deg); z-index: 2; }
.ek-t2 { width: 170px; height: 170px; background: linear-gradient(150deg, var(--ek-teal-soft), #fff); top: 0; right: 20px; transform: rotate(7deg); z-index: 3; }
.ek-t3 { width: 165px; height: 165px; background: linear-gradient(150deg, var(--ek-grape-soft), #fff); bottom: 20px; left: 0; transform: rotate(5deg); z-index: 3; }
.ek-t4 { width: 195px; height: 195px; background: linear-gradient(150deg, var(--ek-amber-soft), #fff); bottom: 0; right: 48px; transform: rotate(-5deg); z-index: 2; }
.ek-spark { position: absolute; z-index: 4; }
.ek-s1 { width: 34px; height: 34px; top: 8px; left: 46%; color: var(--ek-brand); }
.ek-s2 { width: 26px; height: 26px; bottom: 60px; right: 8px; color: var(--ek-grape); }
.ek-spark svg { width: 100%; height: 100%; }

/* ── buttons ── */
.ek-btn {
  font-family: var(--ek-round);
  font-weight: 600;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 15.5px;
  padding: 13px 24px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none;
}
.ek-btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.ek-btn:hover { transform: translateY(-2px); }
.ek-btn:active { transform: translateY(0); }
.ek-btn-primary { background: var(--ek-brand); color: #fff; box-shadow: 0 12px 24px -10px rgba(238,61,28,.6); }
.ek-btn-primary:hover { background: var(--ek-brand-d); color: #fff; }
.ek-btn-grape { background: var(--ek-grape); color: #fff; box-shadow: 0 12px 24px -10px rgba(124,92,252,.6); }
.ek-btn-grape:hover { background: #6b4fe0; color: #fff; }
.ek-btn-sm { padding: 10px 18px; font-size: 14px; }
.ek-btn-block { width: 100%; }

/* ── AI finder section ── */
.ek-ai-section {
  background: linear-gradient(135deg, #2A1B4D, #4A2C8F 55%, #7C5CFC);
  border-radius: 36px;
  color: #fff;
  padding: 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(124,92,252,.7);
}
.ek-ai-glow {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,176,32,.4), transparent 70%);
  top: -180px; right: -120px;
  pointer-events: none;
}
.ek-ai-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: center;
}
.ek-ai-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 15px;
  border-radius: 999px;
  font-family: var(--ek-round);
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 16px;
  color: #fff;
}
.ek-ai-tag svg { width: 18px; height: 18px; color: var(--ek-amber); flex-shrink: 0; }
.ek-ai-section h2 {
  font-family: var(--ek-display);
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
}
.ek-ai-section h2 em { font-style: normal; color: var(--ek-amber); }
.ek-ai-lead {
  color: rgba(255,255,255,.82);
  font-size: 16px;
  max-width: 420px;
  margin-bottom: 22px;
}
.ek-ai-steps { display: flex; gap: 16px; flex-wrap: wrap; }
.ek-ai-step {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}
.ek-ai-step .n {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  display: grid;
  place-items: center;
  font-family: var(--ek-round);
  font-size: 13px;
  flex-shrink: 0;
}

/* ── wizard card ── */
.ek-wizard {
  background: #fff;
  border-radius: 26px;
  padding: 26px;
  color: var(--ek-ink);
  box-shadow: var(--ek-shadow);
}
.ek-wizard-robot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.ek-wizard-av {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ek-grape), var(--ek-sky));
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.ek-wizard-av svg { width: 27px; height: 27px; }
.ek-wizard-robot small { color: var(--ek-muted); font-size: 12px; }
.ek-wizard-robot b { font-family: var(--ek-round); font-size: 15.5px; display: block; line-height: 1.3; }
.ek-wlabel {
  font-family: var(--ek-round);
  font-weight: 600;
  font-size: 13px;
  margin: 14px 0 8px;
  color: var(--ek-ink);
}
.ek-age-row, .ek-chip-row {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.ek-opt {
  border: 1.5px solid rgba(0,0,0,.1);
  background: #fff;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: all .15s ease;
  color: var(--ek-ink);
}
.ek-opt:hover { border-color: var(--ek-brand); }
.ek-opt.on { background: var(--ek-grape-soft); border-color: var(--ek-grape); color: var(--ek-grape); }
.ek-opt.age.on { background: var(--ek-brand-soft); border-color: var(--ek-brand); color: var(--ek-brand-d); }
.ek-freetext {
  width: 100%;
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-family: inherit;
  margin-top: 14px;
  resize: none;
  color: var(--ek-ink);
  transition: border-color .15s ease;
  outline: none;
}
.ek-freetext:focus { border-color: var(--ek-grape); }
.ek-freetext::placeholder { color: #b0b6bf; }

/* ── AI results ── */
.ek-ai-results { margin-top: 22px; }
.ek-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
/* Cards inside AI results section stay white with normal text */
#wResultsGrid .ek-card {
  background: #fff;
  color: var(--ek-ink);
}
.ek-ai-loading {
  display: none;
  text-align: center;
  padding: 32px 0;
  color: var(--ek-muted);
  font-family: var(--ek-round);
  font-size: 15px;
}
.ek-ai-loading .ek-dots span {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ek-grape);
  margin: 0 3px;
  animation: ek-bounce 1.2s infinite;
}
.ek-ai-loading .ek-dots span:nth-child(2) { animation-delay: .2s; }
.ek-ai-loading .ek-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes ek-bounce {
  0%, 80%, 100% { transform: scale(0.7); opacity: .5; }
  40% { transform: scale(1.1); opacity: 1; }
}

/* ── category grid ── */
.ek-cat-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}
.ek-cat {
  background: #fff;
  border-radius: var(--ek-r-md);
  padding: 18px 10px;
  text-align: center;
  box-shadow: var(--ek-shadow-sm);
  border: 1.5px solid rgba(0,0,0,.04);
  transition: transform .15s ease;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ek-cat:hover { transform: translateY(-4px); }
.ek-cat .ci {
  width: 56px; height: 56px;
  border-radius: 16px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  font-size: 26px;
}
.ek-cat span {
  font-family: var(--ek-round);
  font-weight: 600;
  font-size: 12.5px;
  display: block;
  line-height: 1.2;
  color: var(--ek-ink);
}
.ek-cat.ai-cat {
  background: linear-gradient(150deg, var(--ek-grape), var(--ek-sky));
  color: #fff;
  border: 0;
}
.ek-cat.ai-cat .ci { background: rgba(255,255,255,.2); }
.ek-cat.ai-cat span { color: #fff; }

/* ── combo row ── */
.ek-combo-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ek-combo {
  display: flex;
  gap: 18px;
  background: #fff;
  border-radius: var(--ek-r-lg);
  padding: 18px;
  box-shadow: var(--ek-shadow-sm);
  border: 1.5px solid rgba(0,0,0,.04);
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease;
}
.ek-combo:hover { transform: translateY(-3px); }
.ek-cimg {
  width: 130px; height: 130px;
  border-radius: var(--ek-r-md);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.ek-cimg img { width: 90%; height: 90%; object-fit: contain; }
.ek-save {
  position: absolute;
  top: -8px; left: -8px;
  background: var(--ek-teal);
  color: #fff;
  font-family: var(--ek-round);
  font-weight: 700;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
}
.ek-ctxt { flex: 1; min-width: 0; }
.ek-ctag {
  font-family: var(--ek-round);
  font-weight: 700;
  color: var(--ek-amber);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.ek-combo h3 {
  font-family: var(--ek-round);
  font-weight: 700;
  font-size: 17px;
  margin: 5px 0 5px;
  color: var(--ek-ink);
  line-height: 1.25;
}
.ek-combo p { font-size: 13px; color: var(--ek-muted); margin-bottom: 10px; }
.ek-cprice { display: flex; align-items: baseline; gap: 8px; }
.ek-cprice .now { font-family: var(--ek-display); font-weight: 700; font-size: 20px; color: var(--ek-ink); }
.ek-cprice .was { font-size: 13px; color: var(--ek-muted); text-decoration: line-through; }

/* ── wishlist heart button on ek-card ── */
.ek-card .ek-wish {
  position: absolute;
  top: 10px; right: 10px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  border: 1.5px solid rgba(0,0,0,.07);
  display: grid;
  place-items: center;
  z-index: 4;
  cursor: pointer;
  box-shadow: 0 4px 12px -6px rgba(40,20,10,.4);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.ek-card .ek-wish:hover { transform: scale(1.14); border-color: var(--ek-brand-soft); }
.ek-card .ek-wish svg { width: 18px; height: 18px; color: var(--ek-muted); transition: color .15s ease; }
.ek-card .ek-wish:hover svg { color: var(--ek-brand); }
.ek-card .ek-wish.on { background: var(--ek-brand); border-color: var(--ek-brand); }
.ek-card .ek-wish.on svg { color: #fff; fill: #fff; stroke: #fff; }

/* ── product cards ── */
.ek-prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ek-card {
  background: #fff;
  border-radius: var(--ek-r-md);
  overflow: hidden;
  box-shadow: var(--ek-shadow-sm);
  border: 1.5px solid rgba(0,0,0,.04);
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.ek-card:hover { transform: translateY(-6px); box-shadow: var(--ek-shadow); }
.ek-pimg {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
}
.ek-pimg img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform .3s ease;
}
.ek-card:hover .ek-pimg img { transform: scale(1.06); }
.ek-badge-disc {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--ek-brand);
  color: #fff;
  font-family: var(--ek-round);
  font-weight: 700;
  font-size: 11.5px;
  padding: 4px 9px;
  border-radius: 999px;
  z-index: 2;
}
.ek-badge-age {
  position: absolute;
  top: 10px; right: 10px;
  background: #fff;
  color: var(--ek-ink);
  font-family: var(--ek-round);
  font-weight: 700;
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  box-shadow: var(--ek-shadow-sm);
  z-index: 2;
}
.ek-badge-ai {
  position: absolute;
  bottom: 10px; left: 10px; right: 10px;
  background: var(--ek-grape);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 2;
  text-align: center;
  font-family: var(--ek-round);
}
.ek-pbody {
  padding: 14px 14px 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ek-brand-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ek-teal);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.ek-pname {
  font-family: var(--ek-round);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.25;
  margin-bottom: 8px;
  color: var(--ek-ink);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ek-pname:hover { color: var(--ek-brand); }
.ek-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 12px;
}
.ek-price .now {
  font-family: var(--ek-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--ek-ink);
}
.ek-price .was {
  font-size: 13px;
  color: var(--ek-muted);
  text-decoration: line-through;
}
.ek-add-btn {
  margin-top: auto;
  width: 100%;
  padding: 10px;
  border-radius: 999px;
  font-family: var(--ek-round);
  font-weight: 600;
  font-size: 13.5px;
  background: var(--ek-brand-soft);
  color: var(--ek-brand-d);
  border: none;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.ek-add-btn:hover { background: var(--ek-brand); color: #fff; }
.ek-add-btn.added { background: var(--ek-teal); color: #fff; }

/* ── why section ── */
.ek-why {
  background: linear-gradient(180deg, #fff, #FFF6EF);
  border-radius: 36px;
  padding: 48px 40px;
}
.ek-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 26px;
}
.ek-why-card { text-align: center; }
.ek-why-card .wi {
  width: 64px; height: 64px;
  border-radius: 20px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  box-shadow: var(--ek-shadow-sm);
  font-size: 28px;
}
.ek-why-card h3 {
  font-family: var(--ek-round);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--ek-ink);
}
.ek-why-card p { color: var(--ek-muted); font-size: 13.5px; }

/* ── mobile bottom nav ── */
.ek-botnav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: #fff;
  border-top: 1px solid var(--ek-line);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  justify-content: space-around;
  box-shadow: 0 -10px 30px -20px rgba(0,0,0,.35);
}
.ek-botnav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ek-muted);
  flex: 1;
  cursor: pointer;
  text-decoration: none;
}
.ek-botnav a i { font-size: 22px; }
.ek-botnav a.act { color: var(--ek-brand); }
.ek-botnav a.ek-fab { margin-top: -24px; }
.ek-botnav a.ek-fab .fb {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ek-grape), var(--ek-sky));
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 22px -8px rgba(124,92,252,.8);
  border: 3px solid #fff;
  font-size: 20px;
}

/* ── responsive ── */
@media (max-width: 1080px) {
  .ek-cat-grid { grid-template-columns: repeat(4, 1fr); }
  .ek-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .ek-hero-grid { grid-template-columns: 1fr; gap: 10px; }
  .ek-collage { height: 300px; max-width: 400px; margin: 0 auto; }
  .ek-t1 { width: 150px; height: 150px; }
  .ek-t2 { width: 120px; height: 120px; }
  .ek-t3 { width: 118px; height: 118px; }
  .ek-t4 { width: 140px; height: 140px; }
  .ek-ai-grid { grid-template-columns: 1fr; gap: 26px; }
  .ek-prod-grid { grid-template-columns: repeat(2, 1fr); }
  .ek-combo-row { grid-template-columns: 1fr; }
  .ek-results-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .ek-hero { padding: 32px 0 38px; }
  .ek-ai-section { padding: 24px; border-radius: 24px; }
  .ek-section { padding: 36px 0; }
  .ek-why { padding: 30px 18px; border-radius: 24px; }
  .ek-cat-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .ek-cat .ci { width: 44px; height: 44px; font-size: 20px; }
  .ek-botnav { display: flex; }
  body.ek-has-botnav { padding-bottom: 74px; }
  .ek-prod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ek-results-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (max-width: 400px) {
  .ek-cat-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════════
   LANDING PAGE — Index/Home
   ══════════════════════════════════════════ */

/* ── reveal animations ── */
.ek-rv { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.ek-rv.in { opacity: 1; transform: none; }
.ek-rv.d1, .ek-rv.ek-rv-d1 { transition-delay: .08s; }
.ek-rv.d2, .ek-rv.ek-rv-d2 { transition-delay: .16s; }
.ek-rv.d3, .ek-rv.ek-rv-d3 { transition-delay: .24s; }
.ek-rv.d4, .ek-rv.ek-rv-d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .ek-rv { opacity: 1; transform: none; } }

/* ── hero ── */
.ek-lhero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 0;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  background: var(--ek-cream);
}
.ek-lhero .ek-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .5;
  z-index: 0;
  animation: ek-float 10s ease-in-out infinite;
}
.ek-lhero .b1 { width: 380px; height: 380px; background: var(--ek-amber-soft); top: -90px; right: 4%; }
.ek-lhero .b2 { width: 260px; height: 260px; background: var(--ek-teal-soft); bottom: 10%; left: -70px; animation-delay: -4s; }
.ek-lhero .b3 { width: 200px; height: 200px; background: var(--ek-grape-soft); top: 24%; right: 34%; animation-delay: -7s; }
.ek-lhero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ek-hero-badge2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--ek-brand-soft);
  color: var(--ek-brand-d);
  font-family: var(--ek-round);
  font-weight: 600;
  font-size: 13.5px;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--ek-shadow-sm);
  margin: 0 auto 22px;
}
.ek-hero-badge2 svg { width: 16px; height: 16px; }
.ek-lhero h1 {
  font-family: var(--ek-display);
  font-size: clamp(42px, 6.4vw, 78px);
  font-weight: 700;
  line-height: 1.02;
  margin-bottom: 20px;
  color: var(--ek-ink);
}
.ek-lhero h1 .hl {
  color: var(--ek-brand);
  position: relative;
  white-space: nowrap;
}
.ek-lhero h1 .hl::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  height: 14px;
  background: var(--ek-amber);
  opacity: .5;
  border-radius: 8px;
  z-index: -1;
}
.ek-lhero .sub {
  font-size: clamp(16px, 2vw, 19.5px);
  color: var(--ek-muted);
  max-width: 560px;
  margin: 0 auto 30px;
  line-height: 1.6;
}
.ek-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
/* floating toy tiles */
.ek-float-toy {
  position: absolute;
  border-radius: 22px;
  border: 4px solid #fff;
  box-shadow: var(--ek-shadow);
  display: grid;
  place-items: center;
  z-index: 1;
  animation: ek-float 9s ease-in-out infinite;
}
.ek-float-toy svg { width: 52%; height: 52%; }
.ek-ft1 { width: 120px; height: 120px; background: linear-gradient(150deg,var(--ek-brand-soft),#fff); left: 6%; top: 22%; transform: rotate(-8deg); }
.ek-ft2 { width: 96px; height: 96px; background: linear-gradient(150deg,var(--ek-grape-soft),#fff); right: 8%; top: 30%; animation-delay: -3s; transform: rotate(7deg); }
.ek-ft3 { width: 104px; height: 104px; background: linear-gradient(150deg,var(--ek-teal-soft),#fff); left: 12%; bottom: 18%; animation-delay: -6s; transform: rotate(5deg); }
.ek-ft4 { width: 88px; height: 88px; background: linear-gradient(150deg,var(--ek-amber-soft),#fff); right: 13%; bottom: 14%; animation-delay: -1.5s; transform: rotate(-6deg); }
@media (max-width: 900px) { .ek-ft1, .ek-ft2, .ek-ft3, .ek-ft4 { display: none; } }
/* scroll cue */
.ek-scroll-cue {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0 0 26px;
}
.ek-scroll-cue span {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ek-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ek-scroll-cue svg { width: 18px; height: 18px; color: var(--ek-brand); animation: ek-cue 1.6s ease-in-out infinite; }
@keyframes ek-cue { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }
/* marquee */
.ek-marquee { border-top: 1.5px solid var(--ek-line); background: #fff; padding: 16px 0; overflow: hidden; position: relative; z-index: 2; }
.ek-mq-row { display: flex; gap: 46px; white-space: nowrap; animation: ek-mq 26s linear infinite; width: max-content; }
.ek-mq-row span { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ek-round); font-weight: 600; font-size: 15px; color: #8a8494; }
.ek-mq-row span svg { width: 17px; height: 17px; color: var(--ek-brand); }
@keyframes ek-mq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ek-mq-row { animation: none; } }

/* ── product scenes ── */
.ek-scenes-head { text-align: center; padding: 64px 22px 10px; }
.ek-scenes-head h2 { font-family: var(--ek-display); font-size: clamp(30px,4.2vw,48px); font-weight: 700; color: var(--ek-ink); }
.ek-scenes-head p { color: var(--ek-muted); font-size: 16px; margin-top: 8px; }
.ek-scenes { padding: 26px 22px 30px; max-width: var(--ek-maxw); margin: 0 auto; }
.ek-scene {
  position: sticky;
  margin: 0 auto 36px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 70px -34px rgba(40,20,10,.45);
  border: 1.5px solid rgba(0,0,0,.05);
}
.ek-scene-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.ek-scene-art {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.ek-scene-art .ek-big {
  width: 56%; height: 56%;
  max-width: 300px;
  display: grid; place-items: center;
  transition: transform .5s ease;
}
.ek-scene-art .ek-big img { width: 100%; height: 100%; object-fit: contain; }
.ek-scene-art .ek-big svg { width: 100%; height: 100%; }
.ek-scene:hover .ek-scene-art .ek-big { transform: scale(1.06) rotate(-3deg); }
.ek-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.55);
}
.ek-r1 { width: 62%; aspect-ratio: 1; animation: ek-spin 30s linear infinite; }
.ek-r2 { width: 82%; aspect-ratio: 1; animation: ek-spin 46s linear infinite reverse; }
@keyframes ek-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .ek-ring { animation: none; } }
.ek-tag-float {
  position: absolute;
  background: #fff;
  border-radius: 999px;
  font-family: var(--ek-round);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 15px;
  box-shadow: var(--ek-shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ek-ink);
  z-index: 2;
}
.ek-tf-a { top: 14%; left: 10%; animation: ek-float 7s ease-in-out infinite; }
.ek-tf-b { bottom: 13%; right: 9%; animation: ek-float 8s ease-in-out infinite; animation-delay: -3s; }
.ek-scene-body {
  background: #fff;
  padding: 48px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ek-scene-num { font-family: var(--ek-display); font-weight: 700; font-size: 15px; color: #b0a8bc; letter-spacing: .14em; margin-bottom: 12px; }
.ek-scene-num b { color: var(--ek-brand); }
.ek-scene-body h3 { font-family: var(--ek-display); font-size: clamp(26px,3vw,38px); font-weight: 700; line-height: 1.05; margin-bottom: 6px; }
.ek-scene-body .sbn { font-family: "Hind Siliguri", sans-serif; color: var(--ek-muted); font-size: 16px; margin-bottom: 14px; }
.ek-scene-meta { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; align-items: center; }
.ek-scene-cat { font-family: var(--ek-round); font-weight: 700; font-size: 11.5px; color: var(--ek-grape); background: var(--ek-grape-soft); padding: 5px 11px; border-radius: 999px; }
.ek-scene-age { font-family: var(--ek-round); font-weight: 700; font-size: 11.5px; background: #fff; color: var(--ek-ink); border: 1.5px solid var(--ek-line); padding: 5px 11px; border-radius: 999px; }
.ek-scene-disc { font-family: var(--ek-round); font-weight: 700; font-size: 11.5px; background: var(--ek-brand); color: #fff; padding: 5px 11px; border-radius: 999px; }
.ek-feat-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.ek-feat { display: flex; align-items: center; gap: 11px; font-size: 14.5px; font-weight: 500; color: #3d3947; }
.ek-feat .fi { width: 26px; height: 26px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0; }
.ek-feat .fi svg { width: 15px; height: 15px; }
.ek-scene-buy { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ek-scene-buy .sprice { font-family: var(--ek-display); font-weight: 700; font-size: 28px; color: var(--ek-ink); }
.ek-scene-buy .swas { font-size: 15px; color: var(--ek-muted); text-decoration: line-through; }
@media (max-width: 860px) {
  .ek-scene { position: static; margin-bottom: 22px; }
  .ek-scene-grid { grid-template-columns: 1fr; min-height: 0; }
  .ek-scene-art { min-height: 280px; }
  .ek-scene-body { padding: 28px 24px; }
}

/* ── stats band ── */
.ek-stats {
  background: linear-gradient(135deg, #2A1B4D, #4A2C8F 55%, #7C5CFC);
  border-radius: 36px;
  color: #fff;
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
}
.ek-stats .glow {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,176,32,.35), transparent 70%);
  top: -180px; right: -120px;
}
.ek-stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  text-align: center;
}
.ek-stat .sn { font-family: var(--ek-display); font-weight: 700; font-size: clamp(34px, 4vw, 52px); line-height: 1; }
.ek-stat .sn em { font-style: normal; color: var(--ek-amber); }
.ek-stat .sl { font-size: 14px; color: rgba(255,255,255,.78); font-weight: 500; margin-top: 8px; }
@media (max-width: 760px) {
  .ek-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ek-stats { padding: 38px 24px; border-radius: 28px; }
}

/* ── AI banner ── */
.ek-aib {
  border-radius: 34px;
  background: #fff;
  border: 1.5px solid var(--ek-line);
  box-shadow: var(--ek-shadow-sm);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.ek-aib::after {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ek-grape-soft), transparent 70%);
  right: -90px; top: -90px;
}
.ek-aib .av {
  width: 84px; height: 84px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--ek-grape), var(--ek-sky));
  display: grid;
  place-items: center;
  flex-shrink: 0;
  animation: ek-float 7s ease-in-out infinite;
}
.ek-aib .av svg { width: 46px; height: 46px; }
.ek-aib h3 { font-family: var(--ek-display); font-size: clamp(22px,2.6vw,30px); font-weight: 700; margin-bottom: 6px; color: var(--ek-ink); }
.ek-aib p { color: var(--ek-muted); font-size: 15px; max-width: 460px; }
.ek-aib .ek-btn { margin-left: auto; flex-shrink: 0; position: relative; z-index: 2; }
@media (max-width: 760px) {
  .ek-aib { flex-direction: column; text-align: center; padding: 30px 22px; }
  .ek-aib .ek-btn { margin: 0 auto; }
}

/* ── final CTA ── */
.ek-final {
  text-align: center;
  padding: 80px 22px 90px;
  position: relative;
  overflow: hidden;
}
.ek-final .ek-blob { position: absolute; border-radius: 50%; opacity: .5; filter: blur(2px); animation: ek-float 11s ease-in-out infinite; }
.ek-final .fb1 { width: 300px; height: 300px; background: var(--ek-pink-soft); left: -80px; bottom: -80px; }
.ek-final .fb2 { width: 260px; height: 260px; background: var(--ek-amber-soft); right: -60px; top: -40px; animation-delay: -5s; }
.ek-final h2 { font-family: var(--ek-display); font-size: clamp(34px,5vw,58px); font-weight: 700; margin-bottom: 14px; position: relative; z-index: 2; color: var(--ek-ink); }
.ek-final h2 .hl { color: var(--ek-brand); }
.ek-final p { color: var(--ek-muted); font-size: 17px; margin-bottom: 28px; position: relative; z-index: 2; }
.ek-final .ek-cta-row { position: relative; z-index: 2; }
.ek-btn-ghost { background: #fff; color: var(--ek-ink); border: 1.5px solid var(--ek-line); }
.ek-btn-ghost:hover { border-color: var(--ek-brand); color: var(--ek-brand); }
.ek-btn-lg { padding: 16px 30px; font-size: 17px; }

/* ══════════════════════════════════════════
   NEW DESIGN SECTIONS — Shop page
   ══════════════════════════════════════════ */

/* ── shop hero promo banner ── */
.ek-sh-hero { padding: 26px 0 6px; }
.ek-sh-banner {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(120deg, #FF5A3C, #FF8A50 55%, #FFB020);
  color: #fff;
  padding: 38px 42px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 24px 50px -26px rgba(238,61,28,.55);
}
.ek-sh-banner::after {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  right: -110px; top: -110px;
}
.ek-sh-banner::before {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  right: 120px; bottom: -120px;
}
.ek-sh-txt {
  position: relative;
  z-index: 2;
  flex: 1;
}
.ek-sh-txt .ek-eyebrow { color: rgba(255,255,255,.85); }
.ek-sh-txt h1 {
  font-family: var(--ek-display);
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 700;
  margin: 8px 0 10px;
  color: #fff;
}
.ek-sh-txt p { font-size: 15px; opacity: .9; max-width: 460px; margin-bottom: 18px; }
.ek-sh-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.ek-sh-cta .ek-btn-white { background: #fff; color: var(--ek-brand-d); }
.ek-sh-cta .ek-btn-white:hover { background: #FFF3F0; }
.ek-sh-cta .ek-btn-outline { background: rgba(255,255,255,.16); color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.ek-sh-art {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex-shrink: 0;
}
.ek-sh-art .t {
  width: 90px; height: 90px;
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px -14px rgba(0,0,0,.4);
}
.ek-sh-art .t svg { width: 50%; height: 50%; }
.ek-sh-art .t:nth-child(2) { transform: translateY(12px); }
.ek-sh-art .t:nth-child(3) { transform: translateY(-6px); }
@media (max-width: 760px) {
  .ek-sh-art { display: none; }
  .ek-sh-banner { padding: 28px 24px; }
}

/* ── category tiles (4-col, large) ── */
.ek-ct-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ek-ct {
  position: relative;
  border-radius: var(--ek-r-md);
  padding: 22px;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1.5px solid rgba(0,0,0,.04);
  box-shadow: var(--ek-shadow-sm);
  transition: transform .15s ease;
  cursor: pointer;
  text-decoration: none;
  color: var(--ek-ink);
}
.ek-ct:hover { transform: translateY(-4px); }
.ek-ct .ci {
  position: absolute;
  top: 16px; right: 16px;
  width: 48px; height: 48px;
  border-radius: 15px;
  background: rgba(255,255,255,.85);
  display: grid;
  place-items: center;
}
.ek-ct .ci svg { width: 26px; height: 26px; }
.ek-ct b { font-family: var(--ek-round); font-weight: 700; font-size: 17px; }
.ek-ct span { font-size: 12.5px; color: var(--ek-muted); font-weight: 600; margin-top: 4px; }
.ek-ct.ai-tile { background: linear-gradient(140deg, var(--ek-grape), var(--ek-sky)); color: #fff; border: 0; }
.ek-ct.ai-tile span { color: rgba(255,255,255,.8); }
.ek-ct.ai-tile .ci { background: rgba(255,255,255,.2); }
.ek-ct.ai-tile .ci svg { color: #fff; }
@media (max-width: 980px) { .ek-ct-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── shop by age cards ── */
.ek-age-shop {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.ek-age-card {
  border-radius: var(--ek-r-md);
  padding: 20px 14px;
  text-align: center;
  cursor: pointer;
  border: 1.5px solid rgba(0,0,0,.04);
  box-shadow: var(--ek-shadow-sm);
  transition: transform .15s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.ek-age-card:hover { transform: translateY(-4px); }
.ek-age-card .em { font-size: 32px; line-height: 1; display: block; margin-bottom: 10px; }
.ek-age-card b { font-family: var(--ek-display); font-weight: 600; font-size: 17px; display: block; color: var(--ek-ink); }
.ek-age-card span { font-size: 12px; color: var(--ek-muted); font-weight: 600; display: block; margin-top: 3px; }
@media (max-width: 860px) { .ek-age-shop { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .ek-age-shop { grid-template-columns: repeat(2, 1fr); } }

/* ── deal strip ── */
.ek-deal-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(120deg, #2A1B4D, #4A2C8F);
  border-radius: 24px;
  color: #fff;
  padding: 20px 26px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.ek-deal-strip::after {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,176,32,.4), transparent 70%);
  right: -70px; top: -70px;
}
.ek-deal-strip .dico {
  width: 50px; height: 50px;
  border-radius: 16px;
  background: rgba(255,255,255,.14);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ek-deal-strip .dico svg { width: 26px; height: 26px; color: var(--ek-amber); }
.ek-deal-strip b { font-family: var(--ek-round); font-size: 17px; display: block; }
.ek-deal-strip p { font-size: 13px; color: rgba(255,255,255,.75); }
.ek-deal-strip .ek-btn { margin-left: auto; flex-shrink: 0; position: relative; z-index: 2; }
@media (max-width: 640px) {
  .ek-deal-strip { flex-direction: column; text-align: center; }
  .ek-deal-strip .ek-btn { margin: 0; }
}

/* ── horizontal product rail ── */
.ek-rail-wrap { position: relative; }
.ek-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 4px 18px;
  scrollbar-width: none;
}
.ek-rail::-webkit-scrollbar { display: none; }
.ek-rail .ek-card { flex: 0 0 246px; scroll-snap-align: start; }
.ek-rail-nav { display: flex; gap: 10px; }
.ek-rail-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--ek-line);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--ek-shadow-sm);
  transition: .15s;
  color: var(--ek-ink);
}
.ek-rail-btn:hover { border-color: var(--ek-brand); color: var(--ek-brand); }
.ek-rail-btn svg { width: 19px; height: 19px; }

/* ── brand pills ── */
.ek-brand-row { display: flex; gap: 12px; flex-wrap: wrap; }
.ek-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1.5px solid var(--ek-line);
  border-radius: 999px;
  padding: 11px 18px;
  font-family: var(--ek-round);
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--ek-shadow-sm);
  transition: .15s;
  color: var(--ek-ink);
  text-decoration: none;
}
.ek-brand-pill:hover { transform: translateY(-2px); border-color: var(--ek-brand); color: var(--ek-brand-d); }
.ek-brand-pill .bi-ico {
  width: 26px; height: 26px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 14px;
  overflow: hidden;
}
.ek-brand-pill .bi-ico img { width: 100%; height: 100%; object-fit: contain; }

/* ── back-to-top ── */
.ek-backtop {
  position: fixed;
  bottom: 28px; left: 24px;
  z-index: 55;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--ek-line);
  box-shadow: var(--ek-shadow-sm);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s;
}
.ek-backtop.show { opacity: 1; visibility: visible; transform: none; }
.ek-backtop:hover { border-color: var(--ek-brand); color: var(--ek-brand); }
.ek-backtop svg { width: 20px; height: 20px; }
@media (max-width: 680px) { .ek-backtop { bottom: 92px; left: 14px; } }
