:root {
  --pink: #ff5d8f;
  --hot-pink: #ff006e;
  --purple: #8338ec;
  /* Theme accent colors — overridden at runtime by js/theme.js from the admin's chosen theme */
  --brand-a: #ff006e;
  --brand-b: #8338ec;
  --blue: #3a86ff;
  --sky: #4cc9f0;
  --teal: #2ec4b6;
  --green: #2ea043;
  --gold: #ffbe0b;
  --orange: #f4845f;
  --ink: #23213a;
  --ink-soft: #5c5878;
  --bg: #fdf6ff;
  --card: #ffffff;
  --border: #eee0f7;
  --shadow: 0 10px 30px rgba(131, 56, 236, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --max-width: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Baloo 2", "Fredoka", ui-rounded, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  background-image:
    radial-gradient(circle at 10% 10%, rgba(255, 93, 143, 0.10) 0, transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(58, 134, 255, 0.10) 0, transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(46, 196, 182, 0.10) 0, transparent 40%);
  background-attachment: fixed;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 246, 255, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}

.header-actions { white-space: nowrap; }

@media (max-width: 520px) {
  .site-header .wrap { gap: 8px; }
  .brand { font-size: 1.05rem; gap: 6px; }
  .brand .logo-dot { width: 28px; height: 28px; }
  .header-actions { gap: 6px; }
  .header-actions .btn { padding: 9px 12px; font-size: 0.8rem; }
}

.brand .logo-dot {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: conic-gradient(from 90deg, var(--pink), var(--gold), var(--teal), var(--blue), var(--purple), var(--pink));
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.header-actions { display: flex; gap: 10px; align-items: center; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  text-decoration: none;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
  color: white;
  box-shadow: 0 8px 20px rgba(255, 0, 110, 0.3);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--brand-a) 35%, transparent);
}
.btn-primary:hover {
  box-shadow: 0 10px 26px rgba(255, 0, 110, 0.4);
  box-shadow: 0 10px 26px color-mix(in srgb, var(--brand-a) 45%, transparent);
  transform: translateY(-1px);
}

.btn-secondary {
  background: white;
  color: var(--brand-b);
  border: 2px solid var(--border);
}
.btn-secondary:hover { border-color: var(--brand-b); }

.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
}
.btn-ghost:hover { color: var(--ink); }

.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-danger { background: #ffe3e8; color: #c1121f; }
.btn-danger:hover { background: #ffd0d9; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

.btn-block { width: 100%; }

/* ---------- Hero / Bracelet of the Week ---------- */

.hero {
  padding: 34px 0 10px;
}

.botw-card {
  background: linear-gradient(135deg, #fff0f7, #f2ecff 60%, #eafbfa);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  align-items: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.botw-badge {
  position: absolute;
  top: 18px;
  left: 28px;
  background: var(--gold);
  color: #4a3200;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(255,190,11,0.4);
}

.botw-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: #fff;
  border: 3px solid white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.botw-strand-box {
  width: 100%;
  min-height: 120px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 3px solid white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .botw-image, .botw-strand-box { max-width: 260px; margin: 0 auto; }
}

.botw-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 6px 0 4px;
}

.botw-desc { color: var(--ink-soft); margin: 0 0 14px; max-width: 46ch; }

.botw-empty {
  text-align: center;
  padding: 30px;
  color: var(--ink-soft);
}

/* ---------- Section headings ---------- */

section { padding: 46px 0; }

.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 6px;
}

.section-sub {
  color: var(--ink-soft);
  margin: 0 0 26px;
  max-width: 60ch;
}

/* ---------- Filters ---------- */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.chip {
  border: 2px solid var(--border);
  background: white;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.chip.active {
  border-color: var(--brand-b);
  color: var(--brand-b);
  background: #f4ecff;
  background: color-mix(in srgb, var(--brand-b) 10%, white);
}

/* ---------- Catalog grid ---------- */

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.bracelet-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}

.bracelet-card:hover { transform: translateY(-4px); }

.bracelet-media {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f9f3ff, #eefcfb);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.bracelet-media img { width: 100%; height: 100%; object-fit: cover; }
.bracelet-media { cursor: pointer; }

.status-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.status-ready { background: #dff8e6; color: #1a7431; }
.status-made { background: #fff1d6; color: #8a5a00; }
.status-soldout { background: #f1f0f4; color: #6b6880; }

.stock-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  background: #fff1d6;
  color: #8a5a00;
}
.stock-badge.low { background: #ffe3e8; color: #c1121f; }

.bracelet-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }

.bracelet-name-link { text-decoration: none; color: inherit; cursor: pointer; }
.bracelet-name-link:hover .bracelet-name { text-decoration: underline; }

.bracelet-name { font-weight: 800; font-size: 1.15rem; margin: 0; }

.bracelet-meta { color: var(--ink-soft); font-size: 0.85rem; margin: 0; }

.color-dots { display: flex; flex-wrap: wrap; gap: 6px; margin: 2px 0 6px; }

.dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 1px var(--border);
}

.bracelet-card .btn { margin-top: auto; }

/* Bead strand (build-your-own preview + catalog snapshots) */

.strand {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 10px;
}

.bead {
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.9), rgba(255,255,255,0) 45%), var(--bead-color);
  box-shadow: inset 0 -3px 5px rgba(0,0,0,0.18), 0 1px 3px rgba(0,0,0,0.15);
  display: inline-block;
}

.strand-empty { color: var(--ink-soft); padding: 20px; text-align: center; }

/* ---------- Build Your Own ---------- */

.builder {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 22px;
}

.builder-preview {
  background: linear-gradient(135deg, #fef7fb, #f4f0ff);
  border-radius: var(--radius-sm);
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.palette {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.swatch {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--border), 0 3px 8px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  position: relative;
}
.swatch:hover { transform: scale(1.08); }
.swatch:active { transform: scale(0.95); }

.builder-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.bead-count { color: var(--ink-soft); font-size: 0.9rem; font-weight: 700; }

/* ---------- Contact ---------- */

.contact-card {
  background: linear-gradient(135deg, var(--brand-b), var(--brand-a));
  color: white;
  border-radius: var(--radius);
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow);
}

.contact-card h2 { margin-top: 0; font-size: 1.7rem; }
.contact-card p { opacity: 0.92; max-width: 50ch; margin: 0 auto 20px; }

.contact-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.contact-card .btn-secondary { border: none; }

/* ---------- Footer ---------- */

.site-footer {
  padding: 30px 0 50px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.site-footer a { text-decoration: underline; }

/* ---------- Forms (order + admin) ---------- */

.card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.field { margin-bottom: 18px; }

label { display: block; font-weight: 700; margin-bottom: 6px; font-size: 0.92rem; }

input[type=text], input[type=password], input[type=number], input[type=date], input[type=tel], select, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  font-family: inherit;
  font-size: 1rem;
  background: white;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--brand-b);
}

textarea { resize: vertical; min-height: 80px; }

.hint { color: var(--ink-soft); font-size: 0.82rem; margin-top: 4px; }

.error-box {
  background: #ffe3e8;
  color: #c1121f;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-weight: 700;
  margin-bottom: 16px;
  display: none;
}
.error-box.show { display: block; }

.success-box {
  background: #dff8e6;
  color: #1a7431;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-weight: 700;
  margin-bottom: 16px;
  display: none;
}
.success-box.show { display: block; }

/* ---------- Order confirmation ---------- */

.confirm-card { text-align: center; }
.confirm-emoji { font-size: 3rem; margin-bottom: 6px; }
.order-number {
  display: inline-block;
  background: #f4ecff;
  background: color-mix(in srgb, var(--brand-b) 10%, white);
  color: var(--brand-b);
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 999px;
  margin: 10px 0 18px;
  font-size: 1.2rem;
}

/* ---------- Admin ---------- */

.admin-shell { min-height: 100vh; }

.admin-header {
  background: white;
  border-bottom: 2px solid var(--border);
  padding: 16px 0;
}
.admin-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

@media (max-width: 480px) {
  .admin-header .brand { font-size: 1rem; gap: 6px; }
  .admin-header .brand .logo-dot { width: 26px; height: 26px; }
  .admin-header .header-actions { gap: 6px; }
  .admin-header .header-actions .btn { padding: 8px 10px; font-size: 0.78rem; white-space: nowrap; }
}

.tabs {
  display: flex;
  gap: 8px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.tab-btn {
  border: 2px solid var(--border);
  background: white;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
  color: var(--ink-soft);
}
.tab-btn.active { background: var(--ink); color: white; border-color: var(--ink); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.stat-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}
.stat-num { font-size: 1.7rem; font-weight: 800; }
.stat-label { color: var(--ink-soft); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; }

.table-wrap { overflow-x: auto; border-radius: var(--radius-sm); border: 2px solid var(--border); }

table { width: 100%; border-collapse: collapse; background: white; font-size: 0.92rem; }
th, td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--border); white-space: nowrap; }
th { background: #faf6ff; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--ink-soft); }
tr:last-child td { border-bottom: none; }

.pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  color: white;
}

.queue-pos {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand-b);
  color: white;
  font-weight: 800;
  font-size: 0.78rem;
}

.mini-select, .mini-date {
  padding: 7px 10px;
  border-radius: 8px;
  border: 2px solid var(--border);
  font-family: inherit;
  font-size: 0.85rem;
}

.admin-grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 24px;
  align-items: start;
}
.admin-grid-2 > * { min-width: 0; }

@media (max-width: 900px) {
  .admin-grid-2 { grid-template-columns: 1fr; }
  .botw-card { grid-template-columns: 1fr; }
  .botw-badge { position: static; display: inline-block; margin-bottom: 10px; }
}

.catalog-admin-list { display: grid; gap: 14px; }

.catalog-admin-row {
  display: flex;
  gap: 14px;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  align-items: center;
}
.catalog-admin-thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  background: #f4f0ff;
  flex-shrink: 0;
}
.catalog-admin-info { flex: 1; min-width: 0; }
.catalog-admin-info .name { font-weight: 800; }
.catalog-admin-row .row-actions { display: flex; gap: 8px; flex-shrink: 0; }

@media (max-width: 560px) {
  .catalog-admin-row { flex-wrap: wrap; }
  .catalog-admin-row .row-actions { flex-basis: 100%; justify-content: flex-end; flex-wrap: wrap; }
}

.featured-star { color: var(--gold); }

.color-picker-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.color-picker-swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--border);
  cursor: pointer;
}
.color-picker-swatch.selected { box-shadow: 0 0 0 3px var(--brand-b); }

/* ---------- Theme picker (admin settings) ---------- */

.theme-preset-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }

.theme-preset-swatch {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--border);
}
.theme-preset-swatch.selected { box-shadow: 0 0 0 3px var(--ink); }

.theme-custom-row { display: flex; align-items: center; gap: 12px; }

.color-wheel-input {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  background: none;
}

/* ---------- Bracelet color palette manager (admin settings) ---------- */

.palette-admin-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }

.palette-admin-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 999px;
  padding: 5px 10px 5px 6px;
  font-size: 0.82rem;
  font-weight: 700;
}
.palette-admin-chip .dot { width: 16px; height: 16px; flex-shrink: 0; }
.palette-admin-chip button {
  border: none;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1;
  padding: 2px;
}
.palette-admin-chip button:hover { color: #c1121f; }

.add-color-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.add-color-row input[type=text] { flex: 1; min-width: 140px; }

.image-drop {
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
  cursor: pointer;
  color: var(--ink-soft);
}
.image-drop img { max-height: 140px; margin: 0 auto; border-radius: 10px; }

/* ---------- Multi-image upload (admin catalog form) ---------- */

.image-gallery-edit {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.image-gallery-edit-item { position: relative; width: 74px; height: 74px; }
.image-gallery-edit-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--border);
}
.image-gallery-edit-item button {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: #c1121f;
  color: white;
  font-weight: 800;
  font-size: 0.75rem;
  cursor: pointer;
  line-height: 1;
}
.image-add-btn {
  width: 74px;
  height: 74px;
  border-radius: 10px;
  border: 2px dashed var(--border);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 700;
}

/* ---------- Bracelet detail page gallery ---------- */

.detail-gallery-main {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #f9f3ff, #eefcfb);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.detail-gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.detail-gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.detail-gallery-thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  cursor: pointer;
  border: 3px solid transparent;
  opacity: 0.75;
}
.detail-gallery-thumb.active { border-color: var(--brand-b); opacity: 1; }
.detail-gallery-thumb:hover { opacity: 1; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 800px) { .detail-grid { grid-template-columns: 1fr; } }

.stock-line { font-weight: 700; margin: 4px 0; }
.stock-line.low { color: #c1121f; }
.stock-line.out { color: var(--ink-soft); }

/* ---------- Design type picker (build-your-own + admin catalog form) ---------- */

.design-type-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.design-type-card {
  width: 96px;
  cursor: pointer;
  text-align: center;
  border: 3px solid transparent;
  border-radius: var(--radius-sm);
  padding: 4px;
}
.design-type-card img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 0 auto 6px;
}
.design-type-card .name { font-size: 0.78rem; font-weight: 700; color: var(--ink-soft); }
.design-type-card.selected { border-color: var(--brand-b); }
.design-type-card.selected .name { color: var(--ink); }

.design-type-admin-list { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 16px; }
.design-type-admin-item { width: 96px; text-align: center; position: relative; }
.design-type-admin-item img { width: 88px; height: 88px; object-fit: cover; border-radius: 10px; }
.design-type-admin-item .name { font-size: 0.78rem; font-weight: 700; margin-top: 4px; }
.design-type-admin-item button {
  position: absolute;
  top: -6px;
  right: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: #c1121f;
  color: white;
  font-weight: 800;
  cursor: pointer;
  line-height: 1;
}
.design-type-add-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.login-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.login-box { width: 100%; max-width: 420px; }
.login-box .brand { justify-content: center; margin-bottom: 18px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .two-col { grid-template-columns: 1fr; } }

.muted { color: var(--ink-soft); }

.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 60;
  box-shadow: 0 10px 24px rgba(255, 0, 110, 0.4);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--brand-a) 45%, transparent);
}

@media (max-width: 700px) {
  .botw-title { font-size: 1.5rem; }
  section { padding: 32px 0; }
}
