/* BuddyBuddha marketing + shop — shared tokens */
:root {
  --bg: #f5e6d3;
  --bg-deep: #ead9c4;
  --accent: #e68a49;
  --accent-hover: #d97a38;
  --text: #332d2b;
  --text-muted: #6b5e58;
  --white: #ffffff;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --font-ui: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: 1.05rem;
  overflow-x: hidden;
  overflow-x: clip;
}

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

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

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  padding: 0.85rem max(1rem, env(safe-area-inset-right)) 0.85rem max(1rem, env(safe-area-inset-left));
  padding-top: max(0.85rem, env(safe-area-inset-top));
  background: rgba(245, 230, 211, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(51, 45, 43, 0.08);
}

.site-header__menu-btn {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(51, 45, 43, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

.site-header__menu-bars {
  display: block;
  position: relative;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: var(--text);
  box-shadow: 0 -6px 0 var(--text), 0 6px 0 var(--text);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-nav-open .site-header__menu-bars {
  box-shadow: none;
  transform: rotate(45deg);
}

.site-header.is-nav-open .site-header__menu-bars::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: var(--text);
  transform: rotate(-90deg);
}

.site-header a.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
  min-width: 0;
}

.brand__stack {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__name {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand__tagline {
  font-weight: 600;
  font-size: 0.78rem;
  color: rgba(107, 94, 88, 0.9);
}

.site-header .brand img,
.site-header .brand .brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 14px rgba(230, 138, 73, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .site-header a.brand {
    flex: 1 1 calc(100% - 52px);
  }

  .site-header__menu-btn {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.35rem;
    padding-top: 0.65rem;
    margin-top: 0.15rem;
    border-top: 1px solid rgba(51, 45, 43, 0.1);
    justify-content: flex-start;
  }

  .site-header.is-nav-open .nav-links {
    display: flex;
  }

  .nav-link {
    text-align: center;
    padding: 0.6rem 1rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links .btn-primary {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .nav-links a.btn-ghost {
    justify-content: center;
    min-height: 44px;
  }
}

.nav-link {
  padding: 0.45rem 0.65rem;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(51, 45, 43, 0.82);
  text-decoration: none;
  border: 1px solid transparent;
}

.nav-link:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(51, 45, 43, 0.10);
}

.nav-link--active {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(51, 45, 43, 0.12);
}

.nav-links a.btn-ghost {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(51, 45, 43, 0.15);
  background: rgba(255, 255, 255, 0.5);
}
.nav-links a.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--accent);
  color: var(--white) !important;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(230, 138, 73, 0.35);
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover {
  background: var(--accent-hover);
  text-decoration: none !important;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text) !important;
  border: 1px solid rgba(51, 45, 43, 0.12);
  text-decoration: none !important;
  transition: background 0.15s;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  text-decoration: none !important;
}

.landing-hero {
  position: relative;
  min-height: 90vh;
  min-height: min(90vh, 100dvh);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3rem) max(1rem, env(safe-area-inset-right)) clamp(1.5rem, 4vw, 3rem) max(1rem, env(safe-area-inset-left));
}

.landing-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.landing-hero__video,
.landing-hero__img--fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

.landing-hero__img--fallback {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .landing-hero__video {
    display: none;
  }

  .landing-hero__img--fallback {
    display: block;
  }
}

.landing-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(247, 236, 220, 0.94) 0%,
    rgba(247, 236, 220, 0.72) 32%,
    rgba(247, 236, 220, 0.35) 52%,
    rgba(247, 236, 220, 0.08) 72%,
    transparent 88%
  );
}

.landing-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.landing-hero__copy {
  text-align: left;
  max-width: min(40rem, 100%);
}

.landing-hero__copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.6vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin: 0 0 1rem;
  color: #1f1612;
}

.landing-hero__lead {
  margin: 0 0 1.6rem;
  font-size: 1.08rem;
  color: rgba(51, 45, 43, 0.78);
  max-width: 42ch;
}

.landing-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.landing-hero__hint {
  margin-top: 1rem;
  max-width: 42ch;
  font-size: 0.88rem;
  color: rgba(51, 45, 43, 0.85);
}

@media (max-width: 639px) {
  .landing-hero__scrim {
    background: linear-gradient(
      180deg,
      rgba(247, 236, 220, 0.92) 0%,
      rgba(247, 236, 220, 0.78) 35%,
      rgba(247, 236, 220, 0.5) 65%,
      rgba(247, 236, 220, 0.25) 100%
    );
  }

  .landing-hero__video,
  .landing-hero__img--fallback {
    object-position: center center;
  }

  .landing-hero__copy h1 {
    font-size: clamp(1.85rem, 10vw, 2.75rem);
    line-height: 1.05;
  }

  .landing-hero__lead {
    font-size: 1rem;
    max-width: none;
  }

  .landing-hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-hero__ctas .btn-primary,
  .landing-hero__ctas .btn-secondary {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
}

@media (max-width: 380px) {
  .brand__tagline {
    display: none;
  }

  .site-header .brand__name {
    font-size: 0.95rem;
  }
}

.section--features {
  background: linear-gradient(180deg, transparent, rgba(230, 138, 73, 0.06));
}

.section-title-center {
  text-align: center;
  margin-bottom: 2rem;
}

.hero--compact {
  padding-bottom: 2rem;
}

.hero__logo-ring--shop {
  width: min(280px, 78vw);
}

.hint-muted {
  margin-top: 1.25rem;
  color: var(--text-muted);
}

.img-cover-4x3 {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem) max(1rem, env(safe-area-inset-right)) 3rem max(1rem, env(safe-area-inset-left));
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(230, 138, 73, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 80%, rgba(230, 138, 73, 0.12), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}

.hero__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__logo-ring {
  position: relative;
  width: min(320px, 85vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff 0%, #f0e4d6 100%);
  box-shadow:
    0 24px 60px rgba(51, 45, 43, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12%;
}

.hero__logo-ring img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--text);
}

.hero__copy .lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  max-width: 36ch;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 639px) {
  .hero__copy .lead {
    max-width: none;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__ctas .btn-secondary,
  .hero__ctas .coming-soon {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.section {
  padding: clamp(2rem, 5vw, 4rem) max(1rem, env(safe-area-inset-right)) clamp(2rem, 5vw, 4rem) max(1rem, env(safe-area-inset-left));
}

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 600;
  margin: 0 0 1.25rem;
}

.image-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .image-split {
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
  }
  .image-split.reverse {
    direction: rtl;
  }
  .image-split.reverse > * {
    direction: ltr;
  }
}

.image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 16px 48px rgba(51, 45, 43, 0.08);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.image-card--logo img {
  object-fit: contain;
  padding: 12%;
  aspect-ratio: 1;
  background: linear-gradient(160deg, #fff6eb, #f5e6d3);
}

.panels {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .panels {
    grid-template-columns: repeat(3, 1fr);
  }
}

.panel {
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(51, 45, 43, 0.06);
  text-align: center;
}

.panel__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--bg-deep);
}

.panel__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel h3 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  font-weight: 600;
}

.panel p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.cta-band {
  margin: 2rem 0 0;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent) 0%, #c96d32 100%);
  color: var(--white);
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-band p {
  margin: 0 auto 1.25rem;
  max-width: 42ch;
  opacity: 0.95;
}

.cta-band .btn-secondary {
  background: var(--white);
  color: var(--text) !important;
}

.merch-hero {
  position: relative;
  min-height: min(72vh, 100dvh);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3rem) max(1rem, env(safe-area-inset-right)) clamp(1.5rem, 4vw, 3rem) max(1rem, env(safe-area-inset-left));
}

.merch-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.merch-hero__video,
.merch-hero__img--fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.merch-hero__img--fallback {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .merch-hero__video {
    display: none;
  }

  .merch-hero__img--fallback {
    display: block;
  }
}

.merch-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(247, 236, 220, 0.94) 0%,
    rgba(247, 236, 220, 0.72) 32%,
    rgba(247, 236, 220, 0.35) 52%,
    rgba(247, 236, 220, 0.08) 72%,
    transparent 88%
  );
}

.merch-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.merch-hero__copy {
  text-align: left;
  max-width: min(40rem, 100%);
}

.merch-hero__coming {
  margin-bottom: 1rem;
}

.merch-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 0.85rem;
  color: #1f1612;
}

.merch-hero__lead {
  margin: 0;
  font-size: 1.08rem;
  color: rgba(51, 45, 43, 0.78);
  max-width: 42ch;
  line-height: 1.5;
}

@media (max-width: 639px) {
  .merch-hero__scrim {
    background: linear-gradient(
      180deg,
      rgba(247, 236, 220, 0.92) 0%,
      rgba(247, 236, 220, 0.78) 35%,
      rgba(247, 236, 220, 0.5) 65%,
      rgba(247, 236, 220, 0.25) 100%
    );
  }

  .merch-hero__title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .merch-hero__lead {
    font-size: 1rem;
    max-width: none;
  }
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 0.95rem;
  color: #7a3a12;
  background: rgba(230, 138, 73, 0.16);
  border: 1px solid rgba(230, 138, 73, 0.35);
}

.install-hint {
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.9;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 2rem max(1.25rem, env(safe-area-inset-right)) max(2.5rem, env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(51, 45, 43, 0.08);
}

.site-footer p {
  margin: 0;
  word-wrap: break-word;
}

.site-footer__credit {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.88;
}

.site-footer a {
  color: var(--text-muted);
}

/* —— Shop & basket —— */
.nav-link--cart {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  background: var(--accent);
  border-radius: var(--radius-pill);
}

.hero__copy--shop {
  max-width: 36rem;
}

.shop-intro {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.shop-notice {
  padding: 0.85rem 1rem;
  margin: 0 0 1.5rem;
  background: rgba(230, 138, 73, 0.12);
  border-radius: 12px;
  font-size: 0.92rem;
}

.shop-notice code {
  font-size: 0.85em;
}

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

@media (min-width: 640px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.shop-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(51, 45, 43, 0.07);
}

.shop-card__media {
  background: linear-gradient(160deg, #fff6eb, #f5e6d3);
  padding: 1.25rem;
}

.shop-card__media img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  margin: 0 auto;
}

.shop-card__body {
  padding: 1.1rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.shop-card__body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.shop-card__desc {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  flex: 1;
}

.shop-card__price {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
}

.shop-card__size-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.shop-card__size {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(51, 45, 43, 0.15);
  font: inherit;
  background: var(--white);
}

.shop-card__add {
  width: 100%;
  margin-top: 0.25rem;
}

.shop-card__feedback {
  margin: 0;
  min-height: 1.25rem;
  font-size: 0.85rem;
  color: var(--accent);
}

.section__inner--narrow {
  max-width: 640px;
}

.cart-page__lead {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.cart-empty {
  margin: 0;
}

.cart-lines {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.75rem 1rem;
  align-items: center;
  padding: 1rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(51, 45, 43, 0.06);
}

.cart-line__thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg);
}

.cart-line__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-line__meta {
  grid-column: 2;
  font-size: 0.95rem;
}

.cart-line__size {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.cart-line__qty {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cart-line__qty-btn {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(51, 45, 43, 0.15);
  border-radius: 8px;
  background: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
}

.cart-line__qty-val {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.cart-line__total {
  grid-column: 3;
  grid-row: 1 / span 2;
  margin: 0;
  font-weight: 700;
  align-self: center;
}

.cart-line__remove {
  grid-column: 1 / -1;
  justify-self: start;
  border: 0;
  background: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.cart-summary {
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0;
  font-size: 1.05rem;
}

.cart-summary__hint {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cart-summary__checkout {
  width: 100%;
}

.cart-summary__continue {
  text-align: center;
  justify-content: center;
}

.cart-checkout-msg {
  margin: 0;
  font-size: 0.9rem;
  min-height: 1.25rem;
}

.cart-checkout-msg--error {
  color: #a14f1d;
}

@media (max-width: 480px) {
  .cart-line {
    grid-template-columns: 56px 1fr;
  }

  .cart-line__total {
    grid-column: 2;
    grid-row: auto;
    justify-self: start;
  }
}
