:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --bg-elevated: #121212;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.22);
  --text: #f6f6f6;
  --muted: #aaaaaa;
  --muted-soft: #747474;
  --accent: #ffffff;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100vw - 32px));
  --nav-height: 82px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(255, 255, 255, 0.06),
      transparent 22%
    ),
    linear-gradient(180deg, #090909 0%, #040404 50%, #070707 100%);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 30;
}

.announcement-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
  overflow: hidden;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.announcement-track {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}

.announcement-track span {
  flex-shrink: 0;
}

.announcement-divider {
  opacity: 0.35;
  font-size: 0.6rem;
}

.announcement-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.announcement-track::-webkit-scrollbar {
  display: none;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 25;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
  border-bottom: 1px solid transparent;
}

.navbar.is-solid {
  background: rgba(5, 5, 5, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brandmark {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.brandmark-kicker,
.eyebrow {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brandmark-name {
  font-family: "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(1.6rem, 2vw, 2rem);
  letter-spacing: 0.04em;
}

.navbar-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex: 1;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  margin-left: auto;
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a,
.nav-action {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-action:hover {
  color: var(--text);
}

.search-wrapper {
  display: flex;
  align-items: center;
}

.search-input {
  width: 0;
  height: 42px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  overflow: hidden;
  transition: width 350ms cubic-bezier(0.4, 0, 0.2, 1),
              padding 350ms cubic-bezier(0.4, 0, 0.2, 1),
              border-color 250ms ease,
              background-color 250ms ease;
}

.search-wrapper.is-open .search-input {
  width: 240px;
  padding: 0 16px;
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.06);
}

.search-input::placeholder {
  color: var(--muted-soft);
  letter-spacing: 0.04em;
}

.search-toggle {
  padding: 0;
  background: none;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 180ms ease,
              opacity 200ms ease,
              max-width 350ms cubic-bezier(0.4, 0, 0.2, 1),
              margin 350ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
  max-width: 60px;
  overflow: hidden;
  opacity: 1;
}

.search-wrapper.is-open .search-toggle {
  opacity: 0;
  max-width: 0;
  margin: 0;
  pointer-events: none;
}

.search-toggle:hover {
  color: var(--text);
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.cart-pill:hover,
.cart-pill.is-active {
  transform: translateY(-1px);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.08);
}

.cart-count {
  min-width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--accent);
  color: #0a0a0a;
  font-size: 0.84rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
}

.hero-section {
  position: relative;
  overflow: clip;
  padding: 72px 0 64px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.1),
      transparent 28%
    ),
    radial-gradient(
      circle at 68% 20%,
      rgba(255, 255, 255, 0.12),
      transparent 18%
    );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 150px);
}

.hero-copy h1,
.page-banner h1 {
  margin: 14px 0 20px;
  font-family: "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(3.6rem, 8vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
  max-width: 12ch;
}

.hero-text,
.page-banner__copy,
.brand-copy p,
.promo-banner p,
.footer-copy,
.summary-note,
.cart-item__meta,
.empty-state p,
.hero-note p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  background: var(--accent);
  color: #070707;
  border: 1px solid transparent;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1px solid var(--border);
}

.button-block {
  width: 100%;
}

.hero-stats {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-stat {
  padding: 18px 18px 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.hero-stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.hero-caption {
  position: absolute;
  top: -8px;
  right: 0;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.hero-image-shell {
  position: relative;
  padding: 48px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 55%),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.hero-image-shell::before {
  content: "MONOCHROME";
  position: absolute;
  left: -16px;
  bottom: 18px;
  font-size: clamp(2.8rem, 7vw, 6rem);
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.hero-image-shell img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: min(320px, calc(100% - 56px));
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(18px);
}

.hero-note span,
.category-card__content span,
.product-meta span,
.product-status {
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.hero-note strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 1.2rem;
}

.section,
.page-banner {
  padding: 84px 0;
}

.section-elevated {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 34px;
}

.section-heading--split {
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading h2,
.brand-copy h2,
.promo-banner h2,
.cart-header h2,
.empty-state h3,
.cart-summary h3 {
  margin: 0;
  font-family: "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0.03em;
}

.text-link {
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 4px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.category-card,
.product-card,
.cart-item,
.promo-banner,
.brand-panel,
.cart-summary,
.empty-state {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(255, 255, 255, 0.03);
}

.category-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.category-card:hover,
.cart-item:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
}

.product-card:hover {
  border-color: var(--border-strong);
}

.category-card__image {
  position: absolute;
  inset: 0;
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 240ms ease;
}

.category-card:hover .category-card__image img {
  transform: scale(1.08);
}

.category-card__content {
  position: relative;
  z-index: 1;
  padding: 18px 20px;
  margin-top: auto;
}

.category-card__content span {
  color: #ffffff;
}

.category-card__content h3 {
  margin: 10px 0 0;
  font-family: "Bodoni 72", "Times New Roman", serif;
  font-size: 2rem;
  color: #ffffff;
}

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

.product-card {
  padding: 18px;
  display: flex;
  flex-direction: column;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.product-card:hover {
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

.product-media {
  position: relative;
  margin-bottom: 20px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
}

.product-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.4));
  z-index: 1;
  pointer-events: none;
}

.product-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 260ms ease;
}



.product-status {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-meta h3 {
  margin: 0;
  font-size: 1.22rem;
}

.product-description {
  color: var(--muted);
  line-height: 1.7;
  min-height: 58px;
  font-size: 0.95rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.product-price {
  font-size: 1.08rem;
  font-weight: 700;
}

.product-button {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #080808;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.product-button:hover {
  transform: translateY(-2px);
  opacity: 0.94;
}

.brand-section {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 55%),
    rgba(255, 255, 255, 0.02);
}

.brand-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.brand-copy {
  padding: 38px 0;
}

.brand-panel {
  min-height: 320px;
  padding: 36px;
  display: grid;
  place-items: end start;
}

.brand-panel p {
  margin: 0;
  max-width: 16ch;
  font-family: "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
}

.promo-banner {
  padding: 36px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr auto;
  gap: 24px;
  align-items: center;
}

.page-banner {
  padding-bottom: 40px;
}

.page-banner__layout {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 32px;
  align-items: end;
}

.page-banner h1 {
  max-width: 11ch;
}

.shop-section {
  padding-top: 20px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.filter-chip {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  color: #090909;
  border-color: transparent;
  background: var(--accent);
}

.cart-section {
  padding-top: 20px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: start;
}

.cart-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.cart-header__count,
.summary-row span,
.cart-item__pricing span,
.qty-control span,
.footer-grid span,
.footer-grid a {
  color: var(--muted);
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 20px;
  padding: 18px;
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.cart-item__image {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.cart-item__image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.cart-item__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.cart-item__content h3 {
  margin: 0;
  font-size: 1.3rem;
}

.cart-item__pricing {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
}

.cart-item__total {
  font-size: 1.08rem;
  font-weight: 700;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.qty-control button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.remove-link {
  color: var(--muted);
  background: transparent;
  padding: 0;
}

.cart-summary {
  position: sticky;
  top: 108px;
  padding: 28px;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.summary-row strong {
  font-size: 1.02rem;
}

.summary-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0 18px;
}

.summary-note {
  margin: 18px 0 0;
}

.empty-state {
  padding: 42px 32px;
  text-align: center;
}

.empty-state__icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-family: "Bodoni 72", "Times New Roman", serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 28px;
  padding: 46px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-title {
  margin: 0 0 14px;
  color: var(--text);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-top: 10px;
}

.footer-bottom {
  padding-top: 26px;
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.toast-stack {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 80;
  pointer-events: none;
}

.toast {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 36px;
  border-radius: 20px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  text-align: center;
  max-width: min(320px, calc(100vw - 48px));
  font-size: 0.95rem;
  line-height: 1.5;
  transform: scale(0.8);
  opacity: 0;
  animation: toast-in 280ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.toast-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  display: grid;
  place-items: center;
}

.toast-icon svg {
  width: 28px;
  height: 28px;
  stroke: #0a0a0a;
  stroke-width: 3;
  fill: none;
}

.toast.is-leaving {
  animation: toast-out 220ms ease forwards;
}

@keyframes toast-in {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes toast-out {
  to {
    transform: scale(0.8);
    opacity: 0;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-banner__layout,
  .brand-layout,
  .promo-banner,
  .cart-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-copy h1,
  .page-banner h1 {
    max-width: 14ch;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }
}

@media (max-width: 780px) {
  .announcement-track {
    justify-content: start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .navbar-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: blur(18px);
  }

  .navbar-menu.is-open {
    display: flex;
  }

  .nav-links,
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
  }

  .nav-links a,
  .nav-action,
  .cart-pill {
    width: 100%;
    justify-content: space-between;
  }

  .hero-section,
  .section,
  .page-banner {
    padding: 64px 0;
  }

  .hero-image-shell {
    padding: 24px;
  }

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

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item__pricing {
    align-items: flex-start;
  }

  .section-heading--split,
  .cart-header {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 520px) {
  .hero-copy h1,
  .page-banner h1 {
    font-size: clamp(2.8rem, 15vw, 4rem);
  }

  .hero-note,
  .promo-banner,
  .brand-panel,
  .cart-summary,
  .empty-state,
  .category-card,
  .product-card {
    border-radius: 24px;
  }

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

  .product-button {
    width: 100%;
  }
}

/* ─── Discount Styles ─── */

.discount-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e53935;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.product-price--discounted {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-original {
  text-decoration: line-through;
  color: var(--muted-soft);
  font-size: 0.88rem;
  font-weight: 400;
}

.price-final {
  color: #ef5350;
  font-weight: 700;
  font-size: 1.08rem;
}

.cart-price--discounted {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cart-price--discounted .price-original {
  font-size: 0.82rem;
}

.cart-price--discounted .price-final {
  color: #ef5350;
  font-weight: 700;
}

/* ─── Promo Code Styles ─── */

.promo-code-section {
  margin: 18px 0 14px;
}

.promo-label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.promo-input-group {
  display: flex;
  gap: 8px;
}

.promo-input {
  flex: 1;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  outline: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.promo-input:focus {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.07);
}

.promo-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.promo-apply-btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  background: var(--accent);
  color: #080808;
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform 180ms ease, opacity 180ms ease;
}

.promo-apply-btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.promo-remove-btn {
  background: rgba(229, 57, 53, 0.15);
  color: #ef5350;
  border: 1px solid rgba(229, 57, 53, 0.3);
}

.promo-remove-btn:hover {
  background: rgba(229, 57, 53, 0.25);
}

.promo-message {
  margin: 8px 0 0;
  font-size: 0.84rem;
  min-height: 1.2em;
}

.promo-message.is-success {
  color: #66bb6a;
}

.promo-message.is-error {
  color: #ef5350;
}

.promo-discount-row .promo-discount-value {
  color: #66bb6a;
}

.total-row {
  padding-top: 8px;
}

.total-row strong {
  font-size: 1.15rem;
}
