/* ==========================================================================
   Codedruns — The Discreet Pleasure Store
   Palette: Carmin #D41F26 · Aqua #95D9C0 · Blanc #FFFFFF
   Type: Lora (display) / Raleway (body)
   ========================================================================== */

:root {
  --carmin: #D41F26;
  --carmin-dark: #B0161C;
  --carmin-tint: #FBEAEB;
  --aqua: #95D9C0;
  --aqua-tint: #EAF7F1;
  --aqua-deep: #2E7D62;
  --blanc: #FFFFFF;
  --ink: #17211D;
  --ink-soft: #46554E;
  --line: #E3EDE8;
  --shadow-sm: 0 1px 3px rgba(23, 33, 29, 0.08);
  --shadow-md: 0 6px 24px rgba(23, 33, 29, 0.10);
  --shadow-lg: 0 16px 48px rgba(23, 33, 29, 0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Raleway', 'Segoe UI', system-ui, sans-serif;
  --z-nav: 50;
  --z-drawer: 60;
  --z-modal: 100;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

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

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--aqua-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; }

.section { padding: 4.5rem 0; }
.section--tint { background: var(--aqua-tint); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  background: var(--aqua-tint);
  border: 1px solid var(--aqua);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  text-align: center;
}

.btn--primary { background: var(--carmin); color: #fff; }
.btn--primary:hover { background: var(--carmin-dark); color: #fff; box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--aqua-deep); color: var(--aqua-deep); }

.btn--aqua { background: var(--aqua); color: var(--ink); }
.btn--aqua:hover { background: #7ECDAF; color: var(--ink); box-shadow: var(--shadow-md); }

.btn--block { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }

/* --------------------------------------------------------------------------
   Announcement bar + Navbar
   -------------------------------------------------------------------------- */
.announce {
  background: var(--ink);
  color: #DFF2EA;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
}
.announce strong { color: var(--aqua); }

.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: #131313;
  border-bottom: 1px solid #2A2A2A;
}
header.nav .nav__logo, header.nav .nav__logo:hover { color: #fff; }
.nav__links a { color: #C9C9C9; }
.nav__burger { background: #131313; border-color: #333; color: #fff; }
@media (max-width: 1020px) {
  .nav .nav__links { background: #131313; border-color: #2A2A2A; }
}

/* header search */
.nav__search {
  flex: 1;
  max-width: 480px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #1F1F1F;
  border: 1px solid #3A3A3A;
  border-radius: 999px;
  padding: 0 1.1rem;
  min-height: 44px;
}
.nav__search svg { width: 18px; height: 18px; color: #8A8A8A; flex-shrink: 0; }
.nav__search input {
  width: 100%;
  border: none;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  min-height: 42px;
}
.nav__search input::placeholder { color: #8A8A8A; }
.nav__search input:focus-visible { outline: none; }
.nav__search:focus-within { border-color: var(--aqua); }
@media (max-width: 1020px) { .nav__search { display: none; } }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.nav__logo:hover { color: var(--ink); }
.nav__logo-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center; flex-shrink: 0;
}
.nav__logo-mark svg { width: 44px; height: 44px; }

.nav__links { display: flex; align-items: center; gap: 1.4rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.nav__links a { font-weight: 600; font-size: 0.92rem; }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: #FF5A61; }

.nav__actions { display: flex; align-items: center; gap: 0.75rem; }

.cart-link {
  position: relative;
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--aqua-tint);
  border: 1px solid var(--aqua);
  cursor: pointer;
  transition: background-color 200ms ease;
}
.cart-link:hover { background: var(--aqua); color: var(--ink); }
.cart-link svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  min-width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--carmin); color: #fff;
  font-size: 0.72rem; font-weight: 700;
  display: grid; place-items: center;
  padding: 0 5px;
}

.nav__burger {
  display: none;
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  place-items: center;
  color: var(--ink);
}
.nav__burger svg { width: 22px; height: 22px; }

.nav__row2 { border-top: 1px solid #2A2A2A; }
.nav__row2 .nav__links { min-height: 48px; justify-content: center; }

@media (max-width: 1020px) {
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid #2A2A2A;
    box-shadow: var(--shadow-md);
    display: none;
    padding: 0.5rem 0;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { display: block; padding: 0.85rem 1.5rem; }
  .nav__burger { display: grid; }
  .nav__row2 { display: none; }
}

/* --------------------------------------------------------------------------
   Doll store components
   -------------------------------------------------------------------------- */
/* --- Hero: full-bleed band, image bleeds to the right edge, light text --- */
.hero-section { width: 100%; }
.promo-hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  background: linear-gradient(115deg, #131313 0%, #2A1214 52%, #6a1218 100%);
  color: #fff;
}
.promo-hero__inner { max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; }
.promo-hero__copy { max-width: 560px; padding: 4.75rem 0; position: relative; z-index: 2; }
.promo-hero__copy .eyebrow { background: rgba(149,217,192,0.14); border-color: rgba(149,217,192,0.45); color: var(--aqua); }
.promo-hero__title,
.promo-hero__copy h1, .promo-hero__copy h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.9rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.promo-hero__title em, .promo-hero__copy h1 em, .promo-hero__copy h2 em { font-style: italic; color: var(--aqua); }
.promo-hero__copy p { color: #EBD9DA; max-width: 34rem; font-size: 1.06rem; line-height: 1.6; }
.promo-hero__deal {
  display: inline-block;
  background: var(--carmin);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 12px;
  padding: 0.55rem 1.1rem;
  margin: 0.5rem 0 1.25rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(212,31,38,0.35);
}
.promo-hero__media { position: absolute; top: 0; right: 0; bottom: 0; width: 48%; z-index: 1; }
.promo-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.promo-hero__media::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, #17090a 0%, rgba(23,9,10,0.55) 26%, rgba(23,9,10,0) 62%);
}
@media (max-width: 860px) {
  .promo-hero { min-height: 0; }
  .promo-hero__copy { max-width: none; padding: 2.5rem 0 2rem; }
  .promo-hero__media { position: static; width: 100%; height: 320px; }
  .promo-hero__media::before { background: linear-gradient(180deg, rgba(23,9,10,0) 55%, rgba(23,9,10,0.15) 100%); }
}

/* category tiles */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 860px) { .tiles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .tiles { grid-template-columns: 1fr; } }
.tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: block;
  background: #131313;
}
.tile--tall { aspect-ratio: 4 / 5; grid-row: span 2; }
@media (max-width: 560px) { .tile--tall { aspect-ratio: 16 / 10; grid-row: auto; } }
.tile img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 400ms ease, opacity 300ms ease; }
.tile:hover img { transform: scale(1.04); }
.tile__label {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 2.25rem 1.4rem 1.2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.82) 70%);
  color: #fff;
}
.tile__label h3 { color: #fff; font-size: 1.2rem; margin: 0 0 0.15rem; }
.tile__label p { color: #CFCFCF; font-size: 0.85rem; margin: 0; }

/* brand cards */
.brand-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  display: block;
  background: #131313;
}
.brand-card img { width: 100%; height: 100%; object-fit: cover; object-position: top; opacity: 0.85; transition: opacity 300ms ease, transform 400ms ease; }
.brand-card:hover img { opacity: 1; transform: scale(1.03); }
.brand-card__name {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 2.5rem 1.4rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(10,10,10,0.9) 75%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.brand-card__name span { display: block; font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; color: #BFBFBF; letter-spacing: 0.02em; }

/* stock flag + card tweaks for photos */
.card__flag {
  position: absolute; top: 0.85rem; right: 0.85rem;
  background: rgba(19, 19, 19, 0.85);
  color: #fff;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
}
.card__flag--pre { background: var(--carmin); border-color: var(--carmin-dark); }
.card__media--photo { aspect-ratio: 2 / 3; background: #F4F1EF; }
.card__media--photo img { object-position: top; }
.card__brand-tag { display: inline-block; border: 1px solid var(--line); border-radius: 8px; padding: 0.1rem 0.55rem; font-size: 0.76rem; font-weight: 700; color: var(--ink-soft); }

/* in-stock banners */
.stock-banners { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 860px) { .stock-banners { grid-template-columns: 1fr; } }
.stock-banner {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 300px; display: flex; align-items: center; color: #fff;
}
.stock-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.stock-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,10,0.82) 25%, rgba(10,10,10,0.15) 75%); z-index: 1; }
.stock-banner__copy { position: relative; z-index: 2; padding: 2.25rem; }
.stock-banner__copy h3 { color: #fff; font-size: 1.7rem; margin-bottom: 0.35rem; }
.stock-banner__copy p { color: #D9D9D9; font-size: 0.92rem; margin-bottom: 1.25rem; }

/* blog cards */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 1.5rem; }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.blog-card__img { aspect-ratio: 16 / 9; overflow: hidden; background: #F4F1EF; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 400ms ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body { padding: 1.25rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.blog-card__date { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--aqua-deep); }
.blog-card__body h3 { font-size: 1.15rem; margin: 0; }
.blog-card__body h3 a { color: var(--ink); }
.blog-card__body h3 a:hover { color: var(--carmin); }
.blog-card__body p { font-size: 0.9rem; margin: 0; }

/* why-own trio */
.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 860px) { .why { grid-template-columns: 1fr; } }
.why__item { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.5rem; }
.why__item .why__img { width: 110px; height: 110px; border-radius: 50%; overflow: hidden; margin: 0 auto 1.25rem; border: 4px solid var(--aqua-tint); }
.why__item .why__img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.why__item h3 { font-size: 1.1rem; }
.why__item p { font-size: 0.9rem; margin: 0; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  background:
    radial-gradient(680px 420px at 88% -10%, rgba(149, 217, 192, 0.45), transparent 68%),
    radial-gradient(520px 360px at -8% 110%, rgba(212, 31, 38, 0.07), transparent 65%),
    var(--blanc);
  padding: 4.5rem 0 4rem;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 860px) { .hero__grid { grid-template-columns: 1fr; } }

.hero h1 span { color: var(--carmin); }
.hero__lead { font-size: 1.15rem; max-width: 34rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; margin: 1.75rem 0; }

.hero__proof { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 0.5rem; }
.hero__proof-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); }
.hero__proof-item svg { width: 20px; height: 20px; color: var(--aqua-deep); flex-shrink: 0; }

.hero__art { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

/* --------------------------------------------------------------------------
   Trust strip
   -------------------------------------------------------------------------- */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 860px) { .trust { grid-template-columns: repeat(2, 1fr); } }

.trust__item {
  display: flex; align-items: flex-start; gap: 0.85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.trust__item svg { width: 26px; height: 26px; color: var(--carmin); flex-shrink: 0; margin-top: 2px; }
.trust__item h3 { font-family: var(--font-body); font-size: 0.98rem; font-weight: 700; margin-bottom: 0.15rem; }
.trust__item p { font-size: 0.86rem; margin: 0; }

/* --------------------------------------------------------------------------
   Product grid & cards
   -------------------------------------------------------------------------- */
.grid-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 250ms ease, border-color 250ms ease;
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--aqua); }

.card__media { position: relative; background: var(--aqua-tint); aspect-ratio: 1 / 1; }
.card__media img, .card__media svg { width: 100%; height: 100%; object-fit: cover; }

.card__badge {
  position: absolute; top: 0.85rem; left: 0.85rem;
  background: var(--carmin); color: #fff;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
}
.card__badge--aqua { background: var(--aqua); color: var(--ink); }

.card__body { display: flex; flex-direction: column; gap: 0.35rem; padding: 1.15rem 1.15rem 1.35rem; flex: 1; }
.card__cat { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--aqua-deep); }
.card__title { font-size: 1.05rem; margin: 0; }
.card__title a { color: var(--ink); }
.card__title a::after { content: ""; position: absolute; inset: 0; }
.card__title a:hover { color: var(--carmin); }

.stars { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.82rem; color: var(--ink-soft); font-weight: 600; }
.stars svg { width: 15px; height: 15px; color: #E9A13B; }

.card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 0.65rem; }
.price { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--ink); }
.price s { color: var(--ink-soft); font-size: 0.9rem; font-weight: 400; margin-left: 0.4rem; }

.card__add {
  position: relative; z-index: 2;
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--carmin); color: #fff;
  cursor: pointer;
  transition: background-color 200ms ease, box-shadow 200ms ease;
}
.card__add:hover { background: var(--carmin-dark); box-shadow: var(--shadow-sm); }
.card__add svg { width: 20px; height: 20px; }

/* --------------------------------------------------------------------------
   Shop filters
   -------------------------------------------------------------------------- */
.filters {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem;
  margin-bottom: 2rem;
}
.filters__chip {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.55rem 1.1rem;
  min-height: 44px;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.filters__chip:hover { border-color: var(--aqua-deep); color: var(--aqua-deep); }
.filters__chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

.filters__sort { margin-left: auto; }
.filters__sort select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.5rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}
@media (max-width: 640px) { .filters__sort { margin-left: 0; width: 100%; } .filters__sort select { width: 100%; } }

/* --------------------------------------------------------------------------
   Product page
   -------------------------------------------------------------------------- */
.breadcrumbs { font-size: 0.85rem; color: var(--ink-soft); padding: 1.25rem 0 0; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: "/"; margin-right: 0.4rem; color: var(--line); }
.breadcrumbs a { color: var(--ink-soft); font-weight: 600; }
.breadcrumbs a:hover { color: var(--carmin); }

.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  padding: 2rem 0 4rem;
  align-items: start;
}
@media (max-width: 860px) { .pdp { grid-template-columns: 1fr; gap: 2rem; } }

.pdp__media {
  position: sticky; top: 96px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--aqua-tint);
  box-shadow: var(--shadow-md);
}
@media (max-width: 860px) { .pdp__media { position: static; } }

.pdp__gallery { position: sticky; top: 96px; }
@media (max-width: 860px) { .pdp__gallery { position: static; } }
.pdp__gallery .pdp__media { position: static; }
.pdp__media--photo { background: #fff; border: 1px solid var(--line); }
.pdp__media--photo img { object-fit: contain; aspect-ratio: 1 / 1; padding: 1rem; }
.pdp__thumbs { display: flex; gap: 0.6rem; margin-top: 0.85rem; flex-wrap: wrap; }
.pdp__thumb {
  width: 72px; height: 72px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 4px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 200ms ease;
}
.pdp__thumb img { width: 100%; height: 100%; object-fit: contain; }
.pdp__thumb:hover { border-color: var(--aqua-deep); }
.pdp__thumb.is-active { border-color: var(--carmin); }

.card__media--toyphoto { background: #fff; }
.card__media--toyphoto img { object-fit: contain; padding: 0.85rem; }

.pdp__opts { margin: 1.1rem 0 0.25rem; }
.pdp__opts select { cursor: pointer; }

.pdp__cat { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--aqua-deep); margin-bottom: 0.5rem; display: block; }
.pdp h1 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
.pdp__price { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin: 0.75rem 0 0.25rem; }
.pdp__price s { font-size: 1.15rem; color: var(--ink-soft); font-weight: 400; margin-left: 0.6rem; }
.pdp__vat { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 1.25rem; }

.pdp__buy { display: flex; gap: 0.75rem; margin: 1.5rem 0; }
.qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.qty button {
  width: 46px; height: 48px;
  border: none; background: #fff;
  font-size: 1.2rem; color: var(--ink);
  cursor: pointer;
  transition: background-color 150ms ease;
}
.qty button:hover { background: var(--aqua-tint); }
.qty input {
  width: 44px; height: 48px;
  border: none; text-align: center;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  color: var(--ink);
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty input[type="number"] { -moz-appearance: textfield; appearance: textfield; }

.pdp__perks { list-style: none; margin: 1.5rem 0 0; padding: 1.25rem; background: var(--aqua-tint); border: 1px solid var(--aqua); border-radius: var(--radius); display: grid; gap: 0.6rem; }
.pdp__perks li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.pdp__perks svg { width: 19px; height: 19px; color: var(--aqua-deep); flex-shrink: 0; }

.pdp__specs { margin: 2rem 0 0; }
.pdp__specs h2 { font-size: 1.25rem; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.spec-table th, .spec-table td { text-align: left; padding: 0.65rem 0.5rem; border-bottom: 1px solid var(--line); }
.spec-table th { color: var(--ink-soft); font-weight: 600; width: 40%; }
.spec-table td { color: var(--ink); font-weight: 600; }

/* --------------------------------------------------------------------------
   Steps / How it works
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.steps__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  counter-increment: step;
}
.steps__item::before {
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--carmin);
  display: inline-block;
  margin-bottom: 0.75rem;
  border-bottom: 3px solid var(--aqua);
  padding-bottom: 0.25rem;
}
.steps__item h3 { font-size: 1.1rem; }
.steps__item p { font-size: 0.92rem; margin: 0; }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 860px) { .quotes { grid-template-columns: 1fr; } }
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 0.85rem;
}
.quote p { font-size: 0.95rem; margin: 0; font-style: italic; }
.quote footer { font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.quote footer span { display: block; font-weight: 500; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 0.85rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  min-height: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--carmin);
  transition: transform 200ms ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 1.4rem 1.25rem; font-size: 0.94rem; color: var(--ink-soft); }
.faq-item .faq-a p:last-child { margin: 0; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(120deg, var(--ink) 0%, #24352D 60%, var(--aqua-deep) 130%);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 3.5rem 2.5rem;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #C9E4D8; max-width: 34rem; margin: 0 auto 1.75rem; }

/* --------------------------------------------------------------------------
   Cart & Checkout
   -------------------------------------------------------------------------- */
.cart-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 860px) { .cart-layout { grid-template-columns: 1fr; } }

.cart-line {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 1.15rem;
  align-items: center;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-line__img { width: 88px; height: 88px; border-radius: 12px; overflow: hidden; background: var(--aqua-tint); }
.cart-line__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__name { font-weight: 700; color: var(--ink); font-size: 0.98rem; }
.cart-line__meta { font-size: 0.84rem; color: var(--ink-soft); }
.cart-line__remove {
  border: none; background: none; color: var(--ink-soft);
  font-size: 0.82rem; font-weight: 600; cursor: pointer;
  text-decoration: underline; padding: 0.4rem 0;
}
.cart-line__remove:hover { color: var(--carmin); }
.cart-line__right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }

.summary {
  background: var(--aqua-tint);
  border: 1px solid var(--aqua);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: sticky;
  top: 96px;
}
.summary h2 { font-size: 1.3rem; }
.summary__row { display: flex; justify-content: space-between; font-size: 0.95rem; padding: 0.45rem 0; color: var(--ink-soft); }
.summary__row strong { color: var(--ink); }
.summary__row--total { border-top: 2px solid var(--aqua); margin-top: 0.6rem; padding-top: 1rem; font-size: 1.1rem; }
.summary__note { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.82rem; color: var(--ink-soft); margin-top: 1rem; }
.summary__note svg { width: 18px; height: 18px; color: var(--aqua-deep); flex-shrink: 0; margin-top: 2px; }

.empty-state { text-align: center; padding: 4rem 1rem; }
.empty-state svg { width: 64px; height: 64px; margin: 0 auto 1.25rem; color: var(--aqua); }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .form-field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.form-field label { display: block; font-size: 0.86rem; font-weight: 700; color: var(--ink); margin-bottom: 0.35rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.95rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 200ms ease;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:hover, .form-field select:hover, .form-field textarea:hover { border-color: var(--aqua-deep); }
.form-field input.is-invalid { border-color: var(--carmin); }
.form-error { color: var(--carmin); font-size: 0.8rem; font-weight: 600; margin-top: 0.3rem; display: none; }
.form-field.has-error .form-error { display: block; }

.radio-card {
  display: flex; align-items: flex-start; gap: 0.85rem;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  transition: border-color 200ms ease, background-color 200ms ease;
}
.radio-card:hover { border-color: var(--aqua); }
.radio-card input { accent-color: var(--carmin); width: 20px; height: 20px; margin-top: 3px; flex-shrink: 0; }
.radio-card.is-selected { border-color: var(--carmin); background: var(--carmin-tint); }
.radio-card__title { font-weight: 700; font-size: 0.95rem; color: var(--ink); display: flex; justify-content: space-between; gap: 1rem; }
.radio-card__desc { font-size: 0.84rem; color: var(--ink-soft); margin: 0.15rem 0 0; }

.checkout-steps { display: flex; gap: 0.5rem; align-items: center; font-size: 0.85rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 2rem; flex-wrap: wrap; }
.checkout-steps span.is-active { color: var(--carmin); }
.checkout-steps svg { width: 14px; height: 14px; color: var(--line); }

fieldset { border: none; margin: 0 0 2rem; padding: 0; }
fieldset legend { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--ink); margin-bottom: 1.1rem; padding: 0; }

/* Order confirmation */
.confirm-box {
  max-width: 620px; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 3rem 2rem; box-shadow: var(--shadow-md);
}
.confirm-box__icon { width: 72px; height: 72px; border-radius: 50%; background: var(--aqua-tint); display: grid; place-items: center; margin: 0 auto 1.5rem; }
.confirm-box__icon svg { width: 36px; height: 36px; color: var(--aqua-deep); }
.order-ref { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; background: var(--aqua-tint); border: 1px dashed var(--aqua-deep); border-radius: 12px; padding: 0.75rem 1.25rem; display: inline-block; margin: 0.5rem 0 1.25rem; }

/* --------------------------------------------------------------------------
   Content pages (policy, about)
   -------------------------------------------------------------------------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 2.25rem; font-size: 1.45rem; }
.prose h3 { margin-top: 1.5rem; }
.prose ul { color: var(--ink-soft); padding-left: 1.25rem; }
.prose li { margin-bottom: 0.4rem; }
.callout {
  display: flex; gap: 0.9rem; align-items: flex-start;
  background: var(--aqua-tint);
  border: 1px solid var(--aqua);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  margin: 1.5rem 0;
}
.callout svg { width: 24px; height: 24px; color: var(--aqua-deep); flex-shrink: 0; margin-top: 2px; }
.callout p { margin: 0; font-size: 0.93rem; color: var(--ink); }

.page-hero { background: var(--aqua-tint); padding: 3.5rem 0; text-align: center; }
.page-hero h1 { margin-bottom: 0.5rem; }
.page-hero p { max-width: 560px; margin: 0 auto; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--ink); color: #B9CCC3; margin-top: 4rem; }
.footer a { color: #DFF2EA; font-weight: 500; }
.footer a:hover { color: var(--aqua); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h3 { color: #fff; font-family: var(--font-body); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; font-size: 0.92rem; }
.footer__brand p { font-size: 0.9rem; color: #B9CCC3; max-width: 20rem; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem 0;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem;
  font-size: 0.82rem;
}
.footer__badge { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(149, 217, 192, 0.12); border: 1px solid rgba(149, 217, 192, 0.4); color: var(--aqua); font-size: 0.78rem; font-weight: 700; border-radius: 999px; padding: 0.3rem 0.8rem; }
.footer__badge svg { width: 15px; height: 15px; }

/* --------------------------------------------------------------------------
   Pre-order promo modal
   -------------------------------------------------------------------------- */
.promo-modal {
  position: fixed; inset: 0; z-index: var(--z-modal);
  background: rgba(19, 19, 19, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid; place-items: center;
  padding: 1.25rem;
}
.promo-modal[hidden] { display: none; }
.promo-modal__card {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  max-width: 720px;
  width: 100%;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: pm-in 350ms ease;
}
@keyframes pm-in { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
@media (max-width: 640px) { .promo-modal__card { grid-template-columns: 1fr; max-width: 420px; } }
.promo-modal__img { background: #E8E2DA; min-height: 100%; }
.promo-modal__img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
@media (max-width: 640px) { .promo-modal__img { max-height: 220px; } }
.promo-modal__body { padding: 2.25rem 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.promo-modal__body h2 { font-size: 1.6rem; margin: 0; }
.promo-modal__body p { font-size: 0.92rem; margin: 0; }
.promo-modal__price { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--ink); margin: 0.35rem 0 0.75rem; }
.promo-modal__price span { font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; color: var(--aqua-deep); background: var(--aqua-tint); border: 1px solid var(--aqua); border-radius: 999px; padding: 0.25rem 0.7rem; vertical-align: middle; margin-left: 0.4rem; }
.promo-modal__close {
  position: absolute; top: 0.85rem; right: 0.85rem; z-index: 2;
  width: 40px; height: 40px;
  border: none; border-radius: 50%;
  background: rgba(19, 19, 19, 0.55);
  color: #fff; font-size: 1.3rem; line-height: 1;
  cursor: pointer;
  transition: background-color 200ms ease;
}
.promo-modal__close:hover { background: var(--carmin); }
.promo-modal__later {
  border: none; background: none;
  color: var(--ink-soft); font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  text-decoration: underline; cursor: pointer; padding: 0.5rem 0 0; align-self: center;
}
.promo-modal__later:hover { color: var(--carmin); }

@media (prefers-reduced-motion: reduce) { .promo-modal__card { animation: none; } }

/* --------------------------------------------------------------------------
   Hero slider
   -------------------------------------------------------------------------- */
.hero-slider { position: relative; display: grid; }
.hero-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity 600ms ease;
  pointer-events: none;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(19, 19, 19, 0.45); color: #fff;
  font-size: 1.5rem; line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background-color 200ms ease;
}
.hero-nav:hover { background: var(--carmin); }
.hero-nav--prev { left: 1rem; }
.hero-nav--next { right: 1rem; }
.hero-dots {
  position: absolute; bottom: 1.1rem; left: 50%; transform: translateX(-50%); z-index: 6;
  display: flex; gap: 0.5rem;
}
.hero-dots button {
  width: 10px; height: 10px; border-radius: 999px;
  border: none; background: rgba(255, 255, 255, 0.45);
  cursor: pointer; padding: 0;
  transition: background-color 200ms ease, width 200ms ease;
}
.hero-dots button.is-active { background: var(--aqua); width: 26px; }
@media (max-width: 640px) { .hero-nav { display: none; } }

/* --------------------------------------------------------------------------
   Horizontal product carousels
   -------------------------------------------------------------------------- */
.hcar { position: relative; }
.hcar__track {
  display: flex; gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.25rem 0.25rem 0.75rem;
  scrollbar-width: none;
}
.hcar__track::-webkit-scrollbar { display: none; }
.hcar__track > .card { flex: 0 0 262px; scroll-snap-align: start; }
@media (min-width: 861px) { .hcar__track > .card { flex-basis: 282px; } }
.hcar__btn {
  position: absolute; top: 38%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  font-size: 1.4rem; line-height: 1;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background-color 200ms ease, color 200ms ease;
}
.hcar__btn:hover { background: var(--carmin); color: #fff; border-color: var(--carmin); }
.hcar__btn--prev { left: -12px; }
.hcar__btn--next { right: -12px; }
@media (max-width: 640px) { .hcar__btn { display: none; } }

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .hcar__track { scroll-behavior: auto; }
}

/* floating WhatsApp button */
.wa-float {
  position: fixed;
  bottom: 1.4rem; left: 1.4rem;
  z-index: 60;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  transition: transform 200ms ease, background-color 200ms ease;
}
.wa-float:hover { background: #1EBE5A; transform: scale(1.07); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }

/* crypto badges */
.crypto-badges { display: inline-flex; flex-wrap: wrap; gap: 0.4rem; }
.crypto-badges span {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em;
  border: 1px solid rgba(149, 217, 192, 0.5);
  color: var(--aqua);
  border-radius: 6px; padding: 0.2rem 0.5rem;
}

/* --------------------------------------------------------------------------
   Age gate & toast
   -------------------------------------------------------------------------- */
.age-gate {
  position: fixed; inset: 0; z-index: var(--z-modal);
  background: rgba(23, 33, 29, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid; place-items: center;
  padding: 1.25rem;
}
.age-gate[hidden] { display: none; }
.age-gate__card {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.age-gate__card h2 { font-size: 1.5rem; }
.age-gate__card p { font-size: 0.92rem; }
.age-gate__actions { display: grid; gap: 0.75rem; margin-top: 1.5rem; }

.toast {
  position: fixed;
  bottom: 1.5rem; left: 50%;
  transform: translate(-50%, 150%);
  z-index: var(--z-modal);
  background: var(--ink); color: #fff;
  font-size: 0.92rem; font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 0.6rem;
  transition: transform 300ms ease;
  max-width: calc(100vw - 2rem);
}
.toast.is-visible { transform: translate(-50%, 0); }
.toast svg { width: 18px; height: 18px; color: var(--aqua); flex-shrink: 0; }

/* --------------------------------------------------------------------------
   Utilities & motion
   -------------------------------------------------------------------------- */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

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

/* brand assets */
.footer__seal { width: 110px; height: 110px; margin-top: 0.25rem; }
.cta-band {
  background-image: url('/img/brand/banner-silk.svg');
  background-size: cover;
  background-position: center;
}

/* testimonials */
.quote { position: relative; }
.quote__mark {
  font-family: var(--font-display);
  font-size: 3rem; line-height: 1;
  color: var(--aqua);
}
.quote p { font-style: normal; }
@media (min-width: 861px) { .quotes { grid-template-columns: repeat(3, 1fr); } }

/* ==========================================================================
   UI/UX Pro Max pass — blog readability, hover micro-interactions, polish
   ========================================================================== */

/* --- Blog article: readability first --- */
.blog-head { padding: 2.75rem 0 1.5rem; }
.blog-head__inner { max-width: 44rem; margin: 0 auto; }
.blog-head h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.18; letter-spacing: -0.01em; margin-bottom: 0.6rem; }
.blog-byline { font-size: 0.9rem; color: var(--ink-soft); margin: 0; font-weight: 500; }
.blog-article .breadcrumbs { padding-top: 1.5rem; }

.blog-prose { max-width: 44rem; }               /* ~68 characters per line at this size */
.blog-prose p { font-size: 1.075rem; line-height: 1.78; margin-bottom: 1.35rem; }
.blog-prose > p:first-of-type { font-size: 1.2rem; line-height: 1.7; color: var(--ink); }   /* lead / standfirst */
.blog-prose h2 { font-size: clamp(1.4rem, 2.6vw, 1.7rem); margin-top: 2.75rem; scroll-margin-top: 96px; }
.blog-prose h3 { font-size: 1.2rem; margin-top: 1.85rem; }
.blog-prose ul, .blog-prose ol { font-size: 1.05rem; line-height: 1.7; padding-left: 1.35rem; }
.blog-prose li { margin-bottom: 0.55rem; }
.blog-prose a { color: var(--carmin); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.blog-prose a:hover { color: var(--carmin-dark); }
.blog-prose strong { color: var(--ink); }
.blog-prose table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.75rem 0; }
.blog-cta { margin-top: 2.5rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Table of contents */
.toc {
  background: var(--aqua-tint);
  border: 1px solid var(--aqua);
  border-radius: var(--radius);
  padding: 1.1rem 1.35rem;
  margin: 0 0 2rem;
}
.toc__title { font-family: var(--font-body); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--aqua-deep); margin: 0 0 0.6rem; }
.toc ol { margin: 0; padding-left: 1.15rem; columns: 2; column-gap: 1.5rem; }
.toc li { margin-bottom: 0.35rem; font-size: 0.92rem; }
.toc a { color: var(--ink); text-decoration: none; }
.toc a:hover { color: var(--carmin); text-decoration: underline; }
@media (max-width: 560px) { .toc ol { columns: 1; } }

/* --- Card hover micro-interactions (150-300ms, no layout shift) --- */
.card { transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--aqua); }
.card__add { transition: transform 180ms ease, background-color 180ms ease; }
.card:hover .card__add { transform: scale(1.06); }
.tile, .brand-card, .blog-card__img img { transition: transform 300ms ease, box-shadow 300ms ease; }
.tile:hover, .brand-card:hover { box-shadow: var(--shadow-lg); }
.blog-card { transition: transform 220ms ease, box-shadow 220ms ease; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }

/* --- Section rhythm + eyebrow lift --- */
.section-head h2 { letter-spacing: -0.01em; }
.section-head p { font-size: 1.05rem; }

/* --- Mobile touch + spacing --- */
@media (max-width: 560px) {
  .section { padding: 3rem 0; }
  .blog-head { padding: 2rem 0 1rem; }
  .prose, .blog-prose { padding: 0; }
  .btn { min-height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  .card:hover, .blog-card:hover, .card:hover .card__add, .blog-card:hover .blog-card__img img { transform: none; }
}

/* --- Blog: featured cover image + fix button text inside prose --- */
.blog-cover { max-width: 46rem; margin: 1.5rem auto 0; text-align: center; }
.blog-cover img {
  width: auto; max-width: 100%; max-height: 460px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: inline-block;
}
/* buttons inside prose must keep their own colours (prose links are carmine) */
.prose a.btn, .blog-prose a.btn { text-decoration: none; }
.prose a.btn--primary, .blog-prose a.btn--primary { color: #fff; }
.prose a.btn--primary:hover, .blog-prose a.btn--primary:hover { color: #fff; }
.prose a.btn--ghost, .blog-prose a.btn--ghost { color: var(--ink); }
.prose a.btn--ghost:hover, .blog-prose a.btn--ghost:hover { color: var(--aqua-deep); }
.prose a.btn--aqua, .blog-prose a.btn--aqua { color: var(--ink); }
@media (max-width: 560px) { .blog-cover img { max-height: 320px; } }

/* --------------------------------------------------------------------------
   Live sales chat widget (js/chat-widget.js)
   -------------------------------------------------------------------------- */
#cdr-chat-bubble {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--carmin); color: #fff; border: none; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  transition: transform 200ms ease, background-color 200ms ease;
}
#cdr-chat-bubble:hover { background: var(--carmin-dark); transform: scale(1.06); }
#cdr-chat-bubble svg { width: 26px; height: 26px; }
.cdr-chat-bubble__badge {
  position: absolute; top: -3px; right: -3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--aqua-deep); color: #fff;
  font-size: 0.72rem; font-weight: 800; display: grid; place-items: center;
  border: 2px solid #fff; animation: cdr-chat-pop 1400ms ease-in-out infinite;
}
@keyframes cdr-chat-pop { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.18); } }

#cdr-chat-panel {
  position: fixed; right: 1.4rem; bottom: 5.4rem; z-index: 70;
  width: 380px; max-width: calc(100vw - 2.2rem);
  height: min(600px, 74vh);
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  font-family: var(--font-body);
}
.cdr-chat__head {
  background: var(--ink); color: #fff;
  padding: 0.9rem 1.1rem; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
}
.cdr-chat__head strong { font-family: var(--font-display); font-size: 1.05rem; display: block; }
.cdr-chat__status { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: #B9CCC3; margin-top: 0.15rem; }
.cdr-chat__status i { width: 7px; height: 7px; border-radius: 50%; background: var(--aqua); display: inline-block; animation: cdr-chat-pulse 1600ms ease-in-out infinite; }
@keyframes cdr-chat-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.cdr-chat__close { background: none; border: none; color: #fff; cursor: pointer; padding: 0.3rem; border-radius: 8px; display: grid; place-items: center; }
.cdr-chat__close:hover { background: rgba(255,255,255,0.12); }
.cdr-chat__close svg { width: 20px; height: 20px; }

.cdr-chat__body { flex: 1; overflow-y: auto; padding: 1rem 1rem 0.4rem; display: flex; flex-direction: column; gap: 0.7rem; background: #FBFDFC; }
.cdr-msg { display: flex; }
.cdr-msg--user { justify-content: flex-end; }
.cdr-msg--assistant { justify-content: flex-start; }
.cdr-msg__bubble {
  max-width: 84%; padding: 0.6rem 0.85rem; border-radius: 14px; font-size: 0.9rem; line-height: 1.5;
  word-wrap: break-word;
}
.cdr-msg--user .cdr-msg__bubble { background: var(--carmin); color: #fff; border-bottom-right-radius: 4px; }
.cdr-msg--assistant .cdr-msg__bubble { background: #fff; color: var(--ink); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.cdr-msg__bubble a { color: inherit; text-decoration: underline; text-underline-offset: 2px; font-weight: 700; }
.cdr-msg--user .cdr-msg__bubble a { color: #fff; }
.cdr-msg--assistant .cdr-msg__bubble a { color: var(--carmin); }
.cdr-msg__bubble p { margin: 0 0 0.5em; color: inherit; }
.cdr-msg__bubble p:last-child { margin-bottom: 0; }
.cdr-msg__bubble ul, .cdr-msg__bubble ol { margin: 0.3em 0; padding-left: 1.1em; }

.cdr-msg--typing .cdr-msg__bubble { display: flex; gap: 0.3rem; padding: 0.8rem 0.9rem; }
.cdr-msg--typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-soft); opacity: 0.5; animation: cdr-chat-bounce 1200ms ease-in-out infinite; }
.cdr-msg--typing span:nth-child(2) { animation-delay: 150ms; }
.cdr-msg--typing span:nth-child(3) { animation-delay: 300ms; }
@keyframes cdr-chat-bounce { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-4px); opacity: 1; } }

.cdr-chat__quick { display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0.6rem 1rem; flex-shrink: 0; }
.cdr-chat__chip {
  border: 1px solid var(--aqua); background: var(--aqua-tint); color: var(--aqua-deep);
  border-radius: 999px; padding: 0.4rem 0.75rem; font-size: 0.78rem; font-weight: 600;
  cursor: pointer; font-family: var(--font-body); transition: background-color 150ms ease;
}
.cdr-chat__chip:hover { background: var(--aqua); color: var(--ink); }

.cdr-chat__input { display: flex; align-items: flex-end; gap: 0.5rem; padding: 0.7rem 0.8rem; border-top: 1px solid var(--line); flex-shrink: 0; }
.cdr-chat__input textarea {
  flex: 1; resize: none; border: 1px solid var(--line); border-radius: 12px; padding: 0.55rem 0.75rem;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--ink); max-height: 120px; line-height: 1.4;
}
.cdr-chat__input textarea:focus { outline: none; border-color: var(--aqua-deep); }
.cdr-chat__input button {
  width: 40px; height: 40px; border-radius: 50%; border: none; background: var(--carmin); color: #fff;
  display: grid; place-items: center; cursor: pointer; flex-shrink: 0; transition: background-color 150ms ease;
}
.cdr-chat__input button:hover { background: var(--carmin-dark); }
.cdr-chat__input button svg { width: 18px; height: 18px; }
.cdr-chat__foot { margin: 0; padding: 0 1rem 0.7rem; font-size: 0.7rem; color: var(--ink-soft); text-align: center; flex-shrink: 0; }

@media (max-width: 480px) {
  #cdr-chat-panel { right: 0.6rem; bottom: 5rem; left: 0.6rem; width: auto; height: min(560px, 72vh); }
  #cdr-chat-bubble { right: 1rem; bottom: 1rem; }
}
