/* ================================================================
   KZE Organic Beauty — Shop Page v1
   styles.css
   Extends the homepage-v1 visual language.
   All shared tokens and components reproduced here so the
   shop page is self-contained as a prototype.
   ================================================================ */

/* ── Tokens ───────────────────────────────────────────────────── */

:root {
  --bg: #f5f0e8;
  --bg-soft: #fbf7f0;
  --surface-solid: #fffdfa;
  --text: #1a2e1a;
  --muted: #687266;
  --line: rgba(26, 46, 26, 0.12);
  --gold: #c9a84c;
  --gold-deep: #a78532;
  --green-mid: #2d4a2d;
  --green-light: #3a5a3a;
  --dark: #132113;
  --shadow: 0 24px 60px rgba(17, 27, 17, 0.14);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ────────────────────────────────────────────────────── */

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: transparent; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

p { margin: 0; color: var(--muted); }

/* ── Layout ───────────────────────────────────────────────────── */

.container {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section { padding: 5rem 0; }

/* ── Shared primitives ────────────────────────────────────────── */

.label {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: transform 180ms var(--ease), background-color 180ms var(--ease),
              color 180ms var(--ease), border-color 180ms var(--ease);
}

.btn:hover { transform: translateY(-1px); }

.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-deep); }

.btn--ghost { border: 1px solid currentColor; color: var(--text); }
.btn--ghost:hover { background: var(--text); color: #fff; }

.btn--ghost-light {
  border: 1px solid currentColor;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.16); }

.btn--sm {
  min-height: 40px;
  padding: 0.6rem 1.1rem;
  font-size: 0.74rem;
}

/* ── Announce bar ─────────────────────────────────────────────── */

.announce-bar {
  position: relative;
  z-index: 20;
  padding: 0.8rem 1rem;
  background:
    linear-gradient(135deg, rgba(19, 33, 19, 0.95), rgba(45, 74, 45, 0.92)),
    #132113;
  color: #f8f2e9;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announce-bar span {
  margin-inline: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ── Page shell (interior pages — no hero background) ─────────── */

.page-shell {
  background: var(--bg);
  padding-bottom: 0.5rem;
}

/* ── Header ───────────────────────────────────────────────────── */

.header {
  position: relative;
  z-index: 5;
  padding-top: 1rem;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 108px;
  padding-inline: 1.4rem;
  background: #ffffff;
  border: 1px solid rgba(26, 46, 26, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(9, 18, 10, 0.08);
}

.header__logo,
.footer__logo {
  display: inline-flex;
  align-items: center;
}

.header__logo-image,
.footer__logo-image {
  flex: 0 0 auto;
  object-fit: contain;
}

.header__logo-image--header {
  width: 168px;
  height: 86px;
}

.footer__logo-image--footer {
  width: 124px;
  height: 124px;
  padding: 0.35rem;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.header__nav-link,
.header__cart {
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header__nav-link--active {
  color: var(--gold-deep);
  border-bottom: 1.5px solid var(--gold-deep);
  padding-bottom: 1px;
}

.header__nav-link:hover,
.header__cart:hover {
  color: var(--gold-deep);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__cart {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.header__cart svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.header__cart-label { display: none; }

.header__burger {
  display: inline-flex;
  width: 40px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 999px;
  background: rgba(26, 46, 26, 0.06);
}

.header__burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}

.header__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.header__mobile-nav {
  display: none;
  margin: 0 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(26, 46, 26, 0.12);
  border-radius: 24px;
  background: rgba(245, 240, 232, 0.96);
  backdrop-filter: blur(12px);
}

.header__mobile-nav.is-open { display: grid; gap: 0.8rem; }

.header__mobile-link {
  padding: 0.75rem 0.25rem;
  color: var(--text);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(26, 46, 26, 0.08);
}

.header__mobile-link:last-child { border-bottom: 0; }

/* ── Page intro (replaces hero on interior pages) ─────────────── */

.page-intro {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.breadcrumb__link {
  color: var(--gold-deep);
  font-weight: 500;
}

.breadcrumb__link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.breadcrumb__sep {
  color: var(--line);
  font-size: 0.9rem;
}

.page-intro__content {
  max-width: 680px;
}

.page-intro__h1 {
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.page-intro__desc {
  font-size: 1rem;
  max-width: 560px;
}

/* ── Section header ───────────────────────────────────────────── */

.section-header {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-header--left {
  margin-inline: 0;
  text-align: left;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 0.8rem;
}

/* ── Collection shortcuts ─────────────────────────────────────── */

.collections-section { padding-top: 4rem; }

.collection-grid {
  display: grid;
  gap: 1.25rem;
}

.collection-card {
  display: block;
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface-solid);
  box-shadow: 0 18px 45px rgba(21, 17, 12, 0.05);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.collection-card:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 133, 50, 0.4);
  box-shadow: 0 22px 50px rgba(21, 17, 12, 0.08);
}

.collection-card__eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--gold-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection-card h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
}

.collection-card p {
  font-size: 0.9rem;
  line-height: 1.55;
}

.collection-card__count {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.collection-card__count::after {
  content: ' →';
}

/* ── Product grid ─────────────────────────────────────────────── */

.products-section {
  padding-top: 4.5rem;
}

.product-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface-solid);
  box-shadow: 0 18px 45px rgba(21, 17, 12, 0.05);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(21, 17, 12, 0.09);
}

.product-card__image-wrap {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eee5da;
}

.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms var(--ease);
}

.product-card:hover .product-card__image-wrap img {
  transform: scale(1.04);
}

.product-card__body {
  padding: 1.2rem 1.2rem 0.7rem;
}

.product-card__name {
  margin-bottom: 0.15rem;
  font-size: 1.55rem;
}

.product-card__type {
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.product-card__price {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.product-card__footer {
  padding: 0 1.2rem 1.2rem;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text);
  transition: background-color 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}

.product-card__link:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

/* ── Trust band (inline in shop) ──────────────────────────────── */

.trust-band {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-solid);
}

.trust-band__grid {
  display: grid;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.trust-item__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.trust-item__text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Footer ───────────────────────────────────────────────────── */

.footer {
  padding: 4rem 0 2rem;
  background:
    linear-gradient(135deg, rgba(19, 33, 19, 0.95), rgba(45, 74, 45, 0.92)),
    #132113;
  color: #f6efe6;
}

.footer__top {
  display: grid;
  gap: 1.25rem;
  padding-bottom: 2rem;
  grid-template-columns: 1.4fr 1fr 1fr;
}

.footer__brand { max-width: 320px; }

.footer__tagline {
  margin-top: 1rem;
  color: rgba(255, 244, 231, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__col-title {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer__nav-list { display: grid; gap: 0.8rem; }

.footer__nav-link,
.footer__legal-link,
.footer__copyright {
  color: rgba(255, 244, 231, 0.72);
  font-size: 0.9rem;
}

.footer__nav-link:hover,
.footer__legal-link:hover {
  color: #f7dca0;
}

.footer__bottom {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Responsive ───────────────────────────────────────────────── */

@media (min-width: 768px) {
  .container { padding-inline: 2rem; }

  .header__nav { display: inline-flex; }
  .header__cart-label { display: inline; }
  .header__burger,
  .header__mobile-nav,
  .header__mobile-nav.is-open { display: none; }

  .page-intro { padding: 4.5rem 0 3rem; }

  .collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-band__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-item { align-items: center; text-align: center; }
}

@media (min-width: 980px) {
  .section { padding: 6.5rem 0; }
  .collections-section { padding-top: 5rem; }
  .products-section { padding-top: 5.5rem; }

  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .section { padding: 4.2rem 0; }

  .header__inner {
    min-height: 94px;
  }

  .header__logo-image--header {
    width: 140px;
    height: 72px;
  }

  .footer__logo-image--footer {
    width: 96px;
    height: 96px;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Privacy page extensions */

.policy-intro .page-intro__h1 em {
  color: var(--gold-deep);
  font-style: normal;
}

.policy-card {
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(17, 27, 17, 0.06);
}

.policy-updated {
  margin-bottom: 1.4rem;
  color: var(--text);
}

.policy-block + .policy-block {
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(26, 46, 26, 0.08);
}

.policy-block h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.policy-block p {
  max-width: 70ch;
  font-size: 1rem;
  line-height: 1.8;
}

.policy-block a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.95rem;
}

.policy-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.8;
}

.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold-deep);
}

/* Contact page extensions */

.contact-intro .page-intro__h1 em {
  color: var(--gold-deep);
  font-style: normal;
}

.contact-layout {
  display: grid;
  gap: 1.4rem;
}

.contact-form-card,
.contact-info-card {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 42px rgba(17, 27, 17, 0.06);
}

.contact-form-card h2,
.contact-info-card h2,
.faq-item h3 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.contact-field {
  display: grid;
  gap: 0.45rem;
}

.contact-field span {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(26, 46, 26, 0.14);
  border-radius: 18px;
  background: #fffdfa;
  color: var(--text);
  font: inherit;
}

.contact-field textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-info-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.1rem 0 1.4rem;
}

.contact-info-list p,
.contact-note,
.faq-item p,
.contact-support-card p {
  font-size: 1rem;
  line-height: 1.75;
}

.contact-info-list strong {
  color: var(--text);
}

.contact-support-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.contact-support-card {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: var(--bg-soft);
  border: 1px solid rgba(26, 46, 26, 0.08);
}

.contact-support-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.45rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
}

.faq-item h3 {
  margin-bottom: 0.7rem;
  font-size: 1.8rem;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: start;
  }

  .contact-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* About page extensions */

.about-intro .page-intro__h1 em {
  color: var(--gold-deep);
  font-style: normal;
}

.about-story,
.about-store {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-story__copy,
.about-store__copy {
  display: grid;
  gap: 1.2rem;
}

.about-story__copy h2,
.about-store__copy h2,
.about-cta h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.about-story__copy p,
.about-store__copy p,
.about-cta p {
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.8;
}

.about-media-card {
  overflow: hidden;
  border-radius: 28px;
  background: #eee5da;
  box-shadow: var(--shadow);
}

.about-media-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-media-card--soft img {
  aspect-ratio: 1 / 1;
}

.about-values-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.about-value-card {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 42px rgba(17, 27, 17, 0.06);
}

.about-value-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.9rem;
}

.about-value-card p {
  font-size: 0.98rem;
  line-height: 1.75;
}

.about-feature-list {
  display: grid;
  gap: 1rem;
}

.about-feature-list li {
  padding: 1rem 0 1rem 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  position: relative;
}

.about-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.48rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold-deep);
}

.about-feature-list strong {
  color: var(--text);
}

.about-cta {
  padding: 2rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(19, 33, 19, 0.95), rgba(45, 74, 45, 0.92)),
    #132113;
  box-shadow: var(--shadow);
}

.about-cta .label,
.about-cta h2,
.about-cta p {
  color: #f6efe5;
}

.about-cta .label {
  color: #d8bf78;
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

@media (min-width: 768px) {
  .about-values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-story,
  .about-store {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3rem;
  }

  .about-store__media {
    order: 2;
  }

  .about-store__copy {
    order: 1;
  }
}

.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;
}

.cart-section {
  padding-top: 0;
}

.cart-layout {
  display: grid;
  gap: 1.5rem;
}

.cart-card,
.summary-card {
  background: rgba(255, 253, 250, 0.92);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.cart-card {
  padding: 1.5rem;
}

.summary-card {
  padding: 1.5rem;
  align-self: start;
}

.cart-card__header,
.summary-card h2 {
  margin-bottom: 1.25rem;
}

.cart-card__header h2,
.summary-card h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.cart-item {
  display: grid;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}

.cart-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.cart-item__image {
  width: 100%;
  max-width: 120px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(26, 46, 26, 0.08);
}

.cart-item__content h3 {
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.cart-item__meta {
  margin-bottom: 0.5rem;
}

.cart-item__price {
  color: var(--text);
  font-weight: 600;
}

.cart-item--oos {
  opacity: 0.72;
}

.cart-item--oos .cart-item__image {
  opacity: 0.55;
}

.cart-item__oos-note {
  margin-top: 0.4rem;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.cart-item__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cart-qty input,
.checkout-field input,
.checkout-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.cart-qty input {
  width: 84px;
}

.cart-remove {
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-note {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: var(--bg-soft);
  border: 1px solid rgba(26, 46, 26, 0.08);
}

.cart-empty {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 20px;
  background: var(--bg-soft);
  border: 1px solid rgba(26, 46, 26, 0.08);
}

.cart-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.summary-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.summary-row--total {
  color: var(--text);
  font-size: 1.04rem;
}

.summary-card__cta,
.summary-card__secondary {
  width: 100%;
  margin-top: 1rem;
}

.summary-card__cta.is-disabled {
  pointer-events: none;
  opacity: 0.55;
}

.summary-points {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.summary-points li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
}

.summary-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

@media (min-width: 768px) {
  .cart-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.8fr);
    align-items: start;
  }

  .cart-item {
    grid-template-columns: 120px minmax(0, 1fr) auto;
    align-items: center;
  }
}



