/* ==========================================================================
   Brandage — prototype v1
   Design tokens and shared components, extracted from the design-research
   canvases (Homepage / PDP / Cart / FAQ / Contact).
   ========================================================================== */

:root {
  /* Brand palette */
  --cream: #FFFDF6;
  --ink: #16183A;
  --navy: #2A2B6E;
  --navy-dot: #3A3B84;
  --pink: #F0619B;
  --pink-soft: #E8A0C6;
  --pink-tint: #FFF6FA;
  --yellow: #F5E14B;
  --sky: #A8D6E8;
  --pale: #EAF1FF;
  --pale-dot: #CBDAF5;
  --muted: #3D4166;
  --amber: #E0851F;
  --error: #B0246A;
  --near-black: #0B0B0D;

  /* Type */
  --font-body: Archivo, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Bagel Fat One", Archivo, system-ui, sans-serif;

  /* Layout */
  --page: 1440px;
  --gutter: 32px;
  --header-h: 104px;
  --radius-lg: 20px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --border: 3px;
}

/* --------------------------------------------------------------- Reset -- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

img,
video { max-width: 100%; }

a { color: var(--navy); }
a:hover { color: var(--pink); }

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}

button { font-family: inherit; }

[hidden] { display: none !important; }

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

/* ----------------------------------------------------------- Utilities -- */

.wrap {
  max-width: var(--page);
  margin: 0 auto;
  padding-inline: var(--gutter);
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 90;
  background: var(--yellow);
  color: var(--ink);
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

.dots-navy {
  background-color: var(--navy);
  background-image: radial-gradient(var(--navy-dot) 2.2px, transparent 2.3px);
  background-size: 26px 26px;
}

.dots-pale {
  background-color: var(--pale);
  background-image: radial-gradient(var(--pale-dot) 3px, transparent 3.2px);
  background-size: 28px 28px;
}

/* Headings ---------------------------------------------------------------- */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  color: var(--navy);
  margin: 0;
}
.display--xl { font-size: clamp(40px, 5.4vw, 76px); line-height: 1; text-wrap: balance; }
.display--lg { font-size: clamp(34px, 4.4vw, 60px); line-height: 1.02; }
.display--md { font-size: clamp(32px, 3.8vw, 52px); }
.display--sm { font-size: clamp(26px, 2.8vw, 38px); line-height: 1.06; }

.lede {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 62ch;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  border: var(--border) solid var(--ink);
  background: var(--pink);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.1s ease;
}
.btn:hover { background: var(--yellow); color: var(--ink); }
.btn:active { transform: translateY(1px); }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; }

.btn--lg { min-height: 60px; font-size: 19px; padding: 0 34px; }
.btn--sm { min-height: 48px; font-size: 16px; padding: 0 24px; }
.btn--block { width: 100%; }

.btn--ghost { background: var(--cream); border-color: var(--navy); }
.btn--ghost:hover { background: var(--yellow); }

.btn--navy { background: var(--navy); color: var(--cream); }
.btn--navy:hover { background: var(--ink); color: var(--cream); }

.btn--yellow { background: var(--yellow); }
.btn--yellow:hover { background: var(--pink); }

.btn--done { background: var(--yellow); }

.link-quiet {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.link-quiet:hover { color: var(--pink); }

/* ================================================================ Header == */

.announce {
  background: var(--yellow);
  color: var(--ink);
  text-align: center;
  padding: 11px 20px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: var(--border) solid var(--ink);
}

.site-header__inner {
  max-width: var(--page);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  text-decoration: none;
  display: block;
  line-height: 1;
  flex: 0 0 auto;
}
.brand__name {
  display: block;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.03em;
  color: var(--pink-soft);
}
.brand__tag {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--sky);
  margin-top: 2px;
}
.brand:hover .brand__name { color: var(--yellow); }

.main-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 2px;
}
.main-nav a:hover { color: var(--yellow); }
.main-nav a[aria-current="page"] {
  color: var(--yellow);
  font-weight: 700;
  border-bottom: 3px solid var(--yellow);
}

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

.icon-btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: var(--cream);
  text-decoration: none;
  cursor: pointer;
}
.icon-btn:hover { background: var(--ink); color: var(--cream); }

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--pink);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}
.cart-btn:hover { background: var(--pink-soft); color: var(--ink); }
.cart-btn__count {
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.antix-link {
  margin-left: 4px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
}
.antix-link img { width: 34px; height: 34px; display: block; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--pink-soft);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}
.nav-toggle:hover { background: var(--ink); }

/* Breadcrumb -------------------------------------------------------------- */

.breadcrumb {
  max-width: var(--page);
  margin: 0 auto;
  padding: 18px var(--gutter) 0;
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--muted);
}
.breadcrumb a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb .sep { color: var(--sky); }
.breadcrumb [aria-current="page"] { font-weight: 600; color: var(--muted); }

/* ================================================================ Footer == */

.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 58px 20px 34px;
  margin-top: auto;
}
.site-footer__grid {
  max-width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 34px;
}
.site-footer__brand {
  display: block;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.03em;
  color: var(--pink-soft);
}
.site-footer p.blurb {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--sky);
  max-width: 30ch;
}
.site-footer img.mark {
  width: 46px;
  height: 46px;
  margin-top: 18px;
  display: block;
  background: var(--cream);
  border-radius: 50%;
}
.site-footer h2 {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 800;
  color: var(--yellow);
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer ul a {
  color: var(--cream);
  font-size: 15.5px;
  text-decoration: none;
}
.site-footer ul a:hover { color: var(--yellow); }
.site-footer__legal {
  max-width: var(--page);
  margin: 38px auto 0;
  padding-top: 20px;
  border-top: 2px solid var(--navy);
  font-size: 14px;
  color: var(--sky);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px 28px;
  flex-wrap: wrap;
}
.site-footer__legal p { margin: 0; }
.site-footer__legal .copyright { flex: 1 1 420px; }
.site-footer__credit {
  flex: 0 0 auto;
  font-weight: 600;
  white-space: nowrap;
}
.site-footer__credit a {
  color: var(--pink-soft);
  text-decoration: none;
  text-underline-offset: 3px;
}
.site-footer__credit a:hover {
  color: var(--yellow);
  text-decoration: underline;
}

/* ============================================================ Cart drawer = */

.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(22, 24, 58, 0.55);
  border: 0;
  padding: 0;
  cursor: pointer;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  width: min(420px, 92vw);
  background: var(--cream);
  border-left: var(--border) solid var(--navy);
  z-index: 80;
  display: flex;
  flex-direction: column;
}
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: var(--border) solid var(--navy);
}
.drawer__head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}
.drawer__head h2 span { font-weight: 600; color: var(--muted); }
.drawer__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: var(--cream);
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  flex: 0 0 auto;
}
.drawer__close:hover { background: var(--pale); }
.drawer__body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 8px 22px;
}
.drawer__foot {
  border-top: var(--border) solid var(--navy);
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.drawer__foot .row {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
}
.drawer__foot .actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.drawer__foot .btn { min-height: 50px; font-size: 15px; padding: 0 14px; }

.mini-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 2px solid var(--pale);
}
.mini-line img {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--navy);
}
.mini-line__info {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mini-line__name { font-size: 15.5px; font-weight: 800; color: var(--ink); }
.mini-line__meta { font-size: 13.5px; color: var(--muted); }

.ship-note { margin: 0; font-size: 14.5px; font-weight: 700; color: var(--muted); }
.ship-note--ok { color: var(--navy); }

/* ============================================================ Cards etc. == */

.card {
  background: var(--cream);
  border: var(--border) solid var(--navy);
  border-radius: var(--radius-md);
  padding: 22px;
}

.badge {
  font-size: 13px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--cream);
}
.badge--yellow {
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
}

.stars {
  color: var(--amber);
  letter-spacing: 1px;
}

.tick-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
}
.tick-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.tick-list svg { flex: 0 0 auto; margin-top: 2px; }

.bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bullets li {
  display: flex;
  gap: 10px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}
.bullets li::before {
  content: "\2022";
  color: var(--pink);
  font-weight: 800;
  flex: 0 0 auto;
}

/* Spec list (dl) ---------------------------------------------------------- */

.spec {
  margin: 0;
  border-top: 2px solid var(--pink-soft);
}
.spec > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 2px solid var(--pink-soft);
}
.spec dt { font-size: 16.5px; color: var(--sky); }
.spec dd {
  margin: 0;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--cream);
  text-align: right;
}

/* Accordion --------------------------------------------------------------- */

.accordion { border-top: 2px solid var(--pale); }
.accordion__item { border-bottom: 2px solid var(--pale); }
.accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 4px;
  background: transparent;
  border: 0;
  text-align: left;
  font-size: 18.5px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}
.accordion__btn:hover { color: var(--pink); }
.accordion__icon {
  font-size: 26px;
  font-weight: 700;
  color: var(--pink);
  flex: 0 0 auto;
  line-height: 1;
  transition: transform 0.18s ease;
}
.accordion__btn[aria-expanded="true"] .accordion__icon { transform: rotate(45deg); }
.accordion__panel { padding: 0 4px; }
.accordion__panel p {
  margin: 0 0 20px;
  max-width: 64ch;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--muted);
}

/* Reviews ----------------------------------------------------------------- */

.review-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.review-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.round-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: var(--border) solid var(--ink);
  background: var(--cream);
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}
.round-btn:hover:not([disabled]) { background: var(--yellow); }
.round-btn[disabled] { opacity: 0.35; cursor: not-allowed; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.review {
  min-width: 0;
  margin: 0;
  background: var(--pale);
  border: var(--border) solid var(--navy);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--ink);
  flex: 1 1 auto;
}
.review footer {
  font-size: 14.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.review footer b { color: var(--ink); }
.review__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

/* Tattoo design grid ------------------------------------------------------ */

.design-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.design-grid div {
  aspect-ratio: 1 / 1;
  border: var(--border) solid var(--navy);
  border-radius: 14px;
  background: var(--pale);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 8px;
}
.design-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.design-grid div:hover img { animation: wiggle 0.6s ease; }

@keyframes wiggle {
  0%, 100% { transform: rotate(-3deg); }
  25% { transform: rotate(4deg) scale(1.05); }
  75% { transform: rotate(-6deg); }
}

/* How-it-works steps ------------------------------------------------------ */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.step { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.step__shot {
  border-radius: var(--radius-md);
  border: var(--border) solid var(--navy);
  overflow: hidden;
  background: var(--ink);
}
.step__shot img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.15);
}
.step__label {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.step__num {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  color: var(--pink);
}
.step h3 { margin: 0; font-size: 24px; font-weight: 800; color: var(--ink); }
.step p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 42ch;
}
.steps--on-navy .step__shot { border-color: var(--pink-soft); }
.steps--on-navy .step h3 { color: var(--cream); }
.steps--on-navy .step p { color: var(--sky); }

/* Forms ------------------------------------------------------------------- */

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.field > label {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}
.field > label .opt { font-weight: 600; color: var(--muted); }

.input,
.select,
.textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  border: var(--border) solid var(--ink);
  border-radius: var(--radius-sm);
}
.textarea {
  padding: 14px 16px;
  line-height: 1.55;
  resize: vertical;
  min-height: 140px;
}
.select { font-weight: 600; appearance: auto; }
.input:focus-visible,
.select:focus-visible,
.textarea:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; }
.input[aria-invalid="true"],
.textarea[aria-invalid="true"] { border-color: var(--pink); }

.field-error {
  margin: 0;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--error);
}
.field-error[hidden] { display: none; }

.form-status {
  margin: 0;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.form-status--ok { background: var(--pale); border: var(--border) solid var(--navy); }
.form-status--err { background: var(--pink-tint); border: var(--border) solid var(--pink); }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink);
  cursor: pointer;
}
.checkbox-row input {
  width: 22px;
  height: 22px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--pink);
}

/* Marquee ----------------------------------------------------------------- */

.marquee {
  background: var(--near-black);
  overflow: hidden;
  position: relative;
  min-height: 96px;
  display: flex;
  align-items: center;
  border-top: var(--border) solid var(--ink);
  border-bottom: var(--border) solid var(--ink);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 52px;
  width: max-content;
  white-space: nowrap;
  padding: 0 26px;
  animation: marquee 30s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: 52px;
}
.marquee span.txt {
  font-size: 17px;
  font-weight: 800;
  color: var(--cream);
}
.marquee svg { flex: 0 0 auto; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .marquee { overflow-x: auto; }
}

/* Toast ------------------------------------------------------------------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(140%);
  z-index: 90;
  background: var(--ink);
  color: var(--cream);
  border: var(--border) solid var(--yellow);
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 15.5px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(22, 24, 58, 0.3);
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.3, 1);
  max-width: calc(100vw - 32px);
  text-align: center;
}
.toast.is-visible { transform: translateX(-50%) translateY(0); }

/* =========================================================== Breakpoints == */

@media (max-width: 1080px) {
  :root { --gutter: 24px; }
  .design-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .site-header__inner { gap: 14px; flex-wrap: wrap; }
  .main-nav {
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: 0;
    border-top: 2px solid var(--navy-dot);
    margin-top: 6px;
    padding-top: 6px;
  }
  .main-nav[data-open="false"] { display: none; }
  .main-nav a {
    padding: 14px 2px;
    font-size: 17px;
    border-bottom: 1px solid rgba(168, 214, 232, 0.25);
  }
  .main-nav a[aria-current="page"] { border-bottom-color: var(--yellow); }
  .header-actions .icon-btn[data-optional] { display: none; }
  .antix-link { display: none; }
  .cart-btn span.txt { display: none; }
  .cart-btn { padding: 0 14px; }
}

@media (max-width: 760px) {
  :root { --gutter: 18px; }
  body { font-size: 15.5px; }
  .tick-list { grid-template-columns: 1fr; }
  .design-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .drawer__foot .actions { grid-template-columns: 1fr; }
  .announce { font-size: 13.5px; padding: 9px 14px; }
  .brand__name { font-size: 24px; }
  .brand__tag { font-size: 8.5px; letter-spacing: 0.18em; }
  .spec > div { flex-direction: column; gap: 4px; }
  .spec dd { text-align: left; }
}

@media (max-width: 480px) {
  .design-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .btn { font-size: 16.5px; padding: 0 22px; }
}
