:root {
  --bg: #fbf8f6;
  --surface: #ffffff;
  --surface-2: #f1ece8;
  --text: #251f1a;
  --muted: #6f655d;
  --line: rgba(37, 31, 26, 0.12);
  --accent: #0f0f10;
  --pink: #ef93d8;
  --green: #2f8f6d;
  --blue: #6ab9ff;
  --red: #ee8395;
  --shadow: 0 24px 60px rgba(34, 26, 22, 0.08);
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #ffffff;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.announcement-bar {
  overflow: hidden;
  padding: 10px 0;
  background: #171514;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.announcement-track {
  display: flex;
  gap: 48px;
  width: max-content;
  padding-left: 32px;
  animation: marquee 22s linear infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(251, 248, 246, 0.8);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.brand {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.header-nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-weight: 600;
}

.header-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 56px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.header-cart__icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
}

.header-cart__icon svg {
  width: 100%;
  height: 100%;
}

.header-cart__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.8rem;
  line-height: 1;
}

.product-hero {
  padding: 44px 0 72px;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 36px;
  align-items: start;
}

.gallery-card,
.purchase-panel,
.detail-card,
.compare-table,
.newsletter-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
}

.gallery-card {
  padding: 18px;
  border-radius: 34px;
}

.gallery-main {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #f3efec 100%);
}

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

.mobile-gallery {
  display: none;
}

.mobile-gallery__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border-radius: 24px;
  scrollbar-width: none;
}

.mobile-gallery__track::-webkit-scrollbar {
  display: none;
}

.mobile-gallery__slide {
  min-width: 100%;
  scroll-snap-align: start;
}

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

.mobile-gallery__meta {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.thumb {
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease;
}

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

.thumb:hover,
.thumb.is-active {
  transform: translateY(-2px);
  border-color: rgba(37, 31, 26, 0.18);
}

.purchase-panel {
  padding: 34px;
  border-radius: 30px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2.25rem, 3vw, 3.45rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(1.9rem, 2.4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  color: var(--muted);
  font-weight: 700;
}

.rating-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface-2);
}

.price-block {
  margin-top: 28px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fff7fc 0%, #fff 100%);
  border: 1px solid rgba(239, 147, 216, 0.28);
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
}

.current-price {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.old-price {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 1.1rem;
  font-weight: 700;
}

.badge-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.badge {
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-sale {
  background: #171514;
  color: #fff;
}

.badge-stock {
  background: #ecf8ef;
  color: var(--green);
}

.quantity-row,
.promo-box,
.trust-list {
  margin-top: 22px;
}

.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.quantity-label {
  font-weight: 700;
}

.quantity-box {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.quantity-box button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--surface-2);
  cursor: pointer;
}

.promo-box {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: #1a1715;
  color: #fff;
}

.promo-title {
  font-weight: 800;
  font-size: 1.05rem;
}

.promo-box p + p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.countdown div {
  display: grid;
  gap: 4px;
  padding: 16px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.countdown strong {
  font-size: 1.55rem;
}

.countdown span {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.primary-cta,
.buy-now-cta,
.newsletter-form button,
.checkout-link {
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.primary-cta {
  min-width: 180px;
  padding: 16px 24px;
  background: var(--accent);
}

.buy-now-cta {
  min-width: 160px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ef93d8 0%, #d65fb6 100%);
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
}

.purchase-message {
  min-height: 24px;
  margin-top: 14px;
  color: var(--green);
  font-weight: 700;
}

.secure-checkout {
  margin-top: 22px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(37, 31, 26, 0.08);
  background: #ffffff;
}

.secure-checkout__header {
  display: grid;
  gap: 8px;
}

.checkout-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff2fb 0%, #ffffff 100%);
  border: 1px solid rgba(239, 147, 216, 0.32);
}

.checkout-card__copy {
  display: grid;
  gap: 8px;
}

.checkout-card__copy h3 {
  font-size: 1.1rem;
}

.checkout-card__copy strong {
  display: inline-block;
  margin-left: 8px;
}

.checkout-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 16px 22px;
  background: var(--accent);
}

.delivery-form {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.delivery-form label {
  display: grid;
  gap: 8px;
}

.delivery-form label span {
  font-size: 0.9rem;
  font-weight: 700;
}

.delivery-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(37, 31, 26, 0.12);
  background: #fff;
}

.form-span-2 {
  grid-column: span 2;
}

.payment-panel,
.checkout-summary {
  padding: 18px;
  border-radius: 20px;
  background: #fbfbfb;
  border: 1px solid rgba(37, 31, 26, 0.08);
}

.payment-panel {
  display: grid;
  gap: 14px;
}

.payment-panel__copy {
  display: grid;
  gap: 8px;
}

.payment-panel__copy h4 {
  margin: 0;
  font-size: 1.05rem;
}

.payment-panel__copy p {
  color: var(--muted);
  line-height: 1.6;
}

.payment-options {
  display: grid;
  gap: 10px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(37, 31, 26, 0.08);
}

.payment-option input {
  width: 16px;
  height: 16px;
  margin: 0;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  color: var(--muted);
}

.summary-row strong {
  color: var(--text);
}

.summary-total {
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(37, 31, 26, 0.08);
  font-weight: 800;
}

.checkout-actions {
  display: grid;
  gap: 10px;
}

.submit-order {
  width: 100%;
  padding: 16px 22px;
  border: 0;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.checkout-feedback {
  min-height: 24px;
  color: var(--green);
  font-weight: 700;
}

.payment-pending-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(10, 17, 31, 0.48);
  backdrop-filter: blur(10px);
}

.payment-pending-overlay[hidden] {
  display: none;
}

.payment-pending-overlay__card {
  width: min(420px, 100%);
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 32px 90px rgba(10, 17, 31, 0.24);
  text-align: center;
}

.payment-pending-overlay__card h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.payment-pending-overlay__card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.payment-pending-overlay__spinner {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 4px solid rgba(11, 89, 167, 0.15);
  border-top-color: var(--accent);
  animation: payment-pending-spin 0.9s linear infinite;
}

@keyframes payment-pending-spin {
  to {
    transform: rotate(360deg);
  }
}

.payment-confirmation {
  margin-top: 18px;
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(37, 31, 26, 0.08);
}

.payment-otp {
  padding: 30px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(207, 160, 74, 0.18);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.payment-otp__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(207, 160, 74, 0.16);
  color: #8a6116;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.payment-otp h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.payment-otp p {
  color: var(--muted);
  line-height: 1.65;
}

.payment-otp__form {
  margin-top: 18px;
}

.payment-otp__summary {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff9ee 0%, #fffdf7 100%);
  border: 1px solid rgba(207, 160, 74, 0.18);
}

.hosted-field--otp input {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-align: center;
}

.payment-otp--inline .hosted-block__head {
  align-items: center;
}

.payment-submit--otp {
  margin-top: 14px;
}

.delivery-form input:focus {
  outline: none;
  border-color: rgba(29, 78, 216, 0.6);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.payment-confirmation__badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #111827;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-confirmation h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.payment-confirmation p {
  color: var(--muted);
  line-height: 1.65;
}

.payment-confirmation__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.confirmation-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 18px;
  background: #fbfbfb;
  border: 1px solid rgba(37, 31, 26, 0.08);
}

.confirmation-card span {
  color: var(--muted);
  font-size: 0.82rem;
}

.trust-list,
.check-list,
.feature-bullets {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.trust-list li,
.check-list li,
.feature-bullets li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.trust-list li::before,
.check-list li::before,
.feature-bullets li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 800;
}

.details-strip,
.feature-section,
.compare-section,
.results-section,
.faq-section,
.newsletter-section {
  padding: 24px 0 80px;
}

.detail-cards,
.compare-grid,
.results-grid {
  display: grid;
  gap: 24px;
}

.detail-cards {
  grid-template-columns: 1.1fr 0.9fr;
}

.detail-card {
  display: grid;
  gap: 20px;
  padding: 22px;
  border-radius: 28px;
}

.detail-card-wide {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
}

.detail-card img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.detail-card p:not(.section-kicker),
.compare-copy p,
.results-copy p,
.faq-list p,
.newsletter-card p,
.footer-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 28px;
}

.feature-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.feature-copy,
.feature-visual,
.results-image {
  border-radius: 30px;
  overflow: hidden;
}

.feature-copy {
  padding: 30px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(37, 31, 26, 0.08);
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.mode-card {
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(37, 31, 26, 0.08);
}

.mode-card h3 {
  margin-top: 22px;
  font-size: 1rem;
}

.mode-card p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.mode-dot {
  display: inline-block;
  width: 18px;
  height: 72px;
  border-radius: 999px;
}

.mode-blue {
  background: var(--blue);
}

.mode-green {
  background: #7dd9ae;
}

.mode-red {
  background: var(--red);
}

.feature-visual img,
.results-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-grid,
.results-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.compare-table {
  padding: 24px;
  border-radius: 28px;
}

.compare-header,
.compare-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 16px;
  align-items: center;
}

.compare-header {
  padding-bottom: 12px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.compare-row {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.compare-icons {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
}

.compare-icons strong {
  color: var(--green);
}

.compare-icons em {
  color: #bb8175;
  font-style: normal;
}

.results-image {
  box-shadow: var(--shadow);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(37, 31, 26, 0.08);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin-top: 12px;
}

.newsletter-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 28px;
  border-radius: 30px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  min-width: min(360px, 50vw);
  padding: 16px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
}

.newsletter-form button {
  padding: 16px 22px;
  background: var(--accent);
}

.site-footer {
  padding: 0 0 44px;
}

.flow-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(239, 147, 216, 0.12), transparent 28%),
    linear-gradient(180deg, #fffdfc 0%, #f7f2ee 100%);
}

.checkout-shell {
  padding: 48px 0 88px;
}

.flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.flow-card,
.flow-summary {
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.flow-title {
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.flow-copy {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.flow-summary {
  position: sticky;
  top: 110px;
}

.flow-summary__title {
  font-size: 1.4rem;
  line-height: 1.15;
}

.payment-method-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #111827 0%, #1d4ed8 100%);
  color: #ffffff;
}

.payment-method-banner span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.payment-method-banner strong {
  font-size: 1rem;
}

.flow-layout--payment {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
}

.flow-card--payment {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.payment-hosted {
  display: grid;
  gap: 20px;
}

.payment-stage {
  display: grid;
}

.payment-stage[hidden] {
  display: none;
}

.payment-hosted__header,
.payment-hosted__form,
.flow-summary--payment {
  padding: 30px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.payment-section__title {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.2;
}

.payment-section__copy {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.payment-hosted__form {
  display: grid;
  gap: 18px;
}

.hosted-block,
.payment-billing-card {
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.hosted-block {
  display: grid;
  gap: 16px;
}

.hosted-block--muted {
  background: #fbfbfd;
}

.hosted-block__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.payment-card-brands {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: none;
}

.brand-badge--visa {
  min-width: 70px;
}

.brand-badge__visa {
  color: #1a1f71;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.brand-badge--mastercard {
  gap: 8px;
  min-width: 122px;
}

.brand-badge__mc-circles {
  position: relative;
  display: inline-flex;
  width: 32px;
  height: 18px;
}

.brand-badge__mc-circles i {
  position: absolute;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.brand-badge__mc-circles i:first-child {
  left: 0;
  background: #eb001b;
}

.brand-badge__mc-circles i:last-child {
  right: 0;
  background: #f79e1b;
  opacity: 0.92;
}

.brand-badge__mc-text {
  color: #111827;
  font-size: 0.76rem;
  font-weight: 800;
}

.brand-badge--amex {
  min-width: 74px;
}

.brand-badge__amex {
  color: #2e77bb;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.card-stack {
  display: grid;
  gap: 0;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
}

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

.hosted-field {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  background: #ffffff;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.hosted-field:first-child {
  border-top: 0;
}

.card-stack__row .hosted-field + .hosted-field {
  border-left: 1px solid rgba(15, 23, 42, 0.1);
}

.hosted-field span {
  font-size: 0.78rem;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.02em;
}

.hosted-field input {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111827;
  font-size: 1rem;
  line-height: 1.4;
}

.hosted-field input:focus {
  outline: none;
}

.payment-billing-card {
  display: grid;
  gap: 2px;
  padding: 0;
  background: transparent;
  border: 0;
}

.payment-submit {
  display: grid;
  gap: 10px;
}

.submit-order--payment {
  min-height: 54px;
  border-radius: 14px;
  background: #111827;
  box-shadow: none;
}

.payment-submit__meta {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.order-line {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.order-line div {
  display: grid;
  gap: 6px;
}

.order-line span {
  color: var(--muted);
  font-size: 0.88rem;
}

.order-security {
  margin-top: 12px;
  padding: 18px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.order-security strong {
  display: block;
  margin-bottom: 8px;
  color: #111827;
}

.order-security p {
  color: var(--muted);
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 20px;
  padding: 28px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 12px;
}

.site-footer h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

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

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  max-width: 320px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #171514;
  color: #fff;
  box-shadow: var(--shadow);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}

@media (max-width: 980px) {
  .product-grid,
  .detail-cards,
  .feature-layout,
  .compare-grid,
  .results-grid,
  .flow-layout,
  .flow-layout--payment,
  .newsletter-card,
  .footer-grid,
  .checkout-card {
    grid-template-columns: 1fr;
  }

  .detail-card-wide {
    grid-template-columns: 1fr;
  }

  .purchase-panel {
    padding: 28px 22px;
  }

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

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    min-width: 100%;
  }

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

  .card-stack__row {
    grid-template-columns: 1fr;
  }

  .form-span-2 {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .header-nav {
    display: none;
  }

  .product-hero {
    padding-top: 24px;
  }

  .gallery-card,
  .purchase-panel,
  .detail-card,
  .compare-table,
  .newsletter-card {
    border-radius: 24px;
  }

  .gallery-card {
    padding: 12px;
  }

  .desktop-gallery,
  .gallery-thumbs {
    display: none;
  }

  .mobile-gallery {
    display: block;
  }

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

  .compare-header,
  .compare-row {
    grid-template-columns: minmax(0, 1fr) 92px;
  }

  .payment-confirmation__grid {
    grid-template-columns: 1fr;
  }

  .secure-checkout {
    padding: 18px;
  }

  .checkout-shell {
    padding: 28px 0 64px;
  }

  .flow-card,
  .flow-summary {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .payment-hosted__header,
  .payment-hosted__form,
  .flow-summary--payment,
  .payment-otp {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .payment-method-banner {
    flex-direction: column;
    align-items: start;
  }

  .hosted-block,
  .payment-billing-card,
  .order-security {
    padding: 16px;
  }

  .hosted-block__head {
    flex-direction: column;
  }
}
