[hidden] {
  display: none !important;
}

.product {
  padding: 116px var(--gutter) 72px;
  background:
    radial-gradient(ellipse 70% 55% at 85% 5%, rgba(201, 184, 216, 0.32), transparent),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.product-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 16px;
}

.product-stage {
  --tone: #b76e79;
  margin: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, color-mix(in srgb, var(--tone) 22%, transparent), transparent),
    linear-gradient(180deg, #ffffff, var(--bg-soft));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 40px) clamp(16px, 3vw, 36px);
  aspect-ratio: 4 / 3;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px color-mix(in srgb, var(--tone) 30%, transparent));
  transition: opacity 0.18s ease;
}

.product-photo.is-swapping img {
  opacity: 0.35;
}

.product-stage figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 18px;
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.product-stage-color {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--lavender-deep);
}

.product-stage-note {
  font-size: 0.82rem;
  color: var(--muted);
}

.product-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.product-thumb {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

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

.product-thumb figcaption {
  padding: 10px 14px;
  font-size: 0.84rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.product-panel h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: var(--lavender-deep);
  font-weight: 600;
}

.product-panel h1 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--lavender), var(--rose-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.product-lead {
  color: var(--ink-soft);
  margin: 0 0 24px;
  font-size: 1.03rem;
}

.product-price {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px 22px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 26px;
}

.product-price-main {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.product-price-main .amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--rose-dark);
  line-height: 1;
}

.product-price-main .unit {
  color: var(--muted);
  font-size: 0.92rem;
}

.product-price-alt {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.config-block {
  border: none;
  margin: 0 0 22px;
  padding: 0;
}

.config-block legend {
  padding: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 12px;
}

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

.swatch {
  --swatch: #b76e79;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 12px 6px 10px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}

.swatch:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.swatch input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.swatch-dot {
  display: block;
  width: 100%;
  max-width: 96px;
  margin-inline: auto;
  aspect-ratio: 1051 / 919;
  border-radius: 10px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%,
      color-mix(in srgb, var(--swatch) 18%, transparent), transparent),
    var(--bg-soft);
}

.swatch-dot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swatch-label {
  font-size: 0.76rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.2;
}

.swatch:has(input:checked) {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(255, 107, 138, 0.16);
}

.swatch:has(input:checked) .swatch-label {
  color: var(--text);
  font-weight: 600;
}

.swatch.is-unavailable {
  opacity: 0.58;
  cursor: not-allowed;
}

.swatch.is-unavailable:hover {
  transform: none;
  border-color: var(--line);
  box-shadow: none;
}

.swatch.is-unavailable .swatch-dot img {
  filter: grayscale(0.85);
  opacity: 0.72;
}

.swatch-status {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rose-dark);
  text-align: center;
}

.swatch-status.is-low {
  color: #a97b1f;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.74rem;
}

.swatch:has(input:focus-visible) {
  outline: 2px solid var(--lavender);
  outline-offset: 2px;
}

.recap-payment-note {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--tone, #b76e79) 8%, transparent);
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--muted);
}

.config-note {
  margin: 10px 0 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.qty-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.qty-option {
  position: relative;
  cursor: pointer;
}

.qty-option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.qty-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  height: 100%;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.qty-body strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--lavender-deep);
}

.qty-body em {
  font-style: normal;
  font-weight: 600;
  color: var(--rose-dark);
}

.qty-body small {
  color: var(--muted);
  font-size: 0.8rem;
}

.qty-option input:checked + .qty-body {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(255, 107, 138, 0.16);
}

.qty-option input:focus-visible + .qty-body {
  outline: 2px solid var(--lavender);
  outline-offset: 2px;
}

.btn-block {
  width: 100%;
}

.product-reassure {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.product-reassure li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.product-reassure span {
  color: var(--rose);
  font-size: 0.7rem;
  line-height: 1.9;
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pack-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
}

.pack-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.pack-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 123, 175, 0.16), rgba(232, 93, 117, 0.12));
  color: var(--lavender-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(24px, 4vw, 48px);
  margin: 0;
}

.spec {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.spec dt {
  font-weight: 600;
  color: var(--lavender-deep);
  font-size: 0.92rem;
}

.spec dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.tariff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}

.tariff {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.tariff.is-featured {
  border-color: var(--rose);
  box-shadow: 0 18px 48px rgba(232, 93, 117, 0.14);
}

.tariff-flag {
  position: absolute;
  top: -13px;
  left: 26px;
  padding: 5px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose-bright), var(--rose));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.tariff h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 6px;
  color: var(--lavender-deep);
}

.tariff-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--rose-dark);
  margin: 0 0 6px;
  line-height: 1;
}

.tariff-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 16px;
}

.tariff ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 8px;
  flex: 1;
}

.tariff li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.tariff li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender), var(--rose));
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.delivery-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-soft);
}

.delivery-card.is-highlight {
  border-color: var(--rose);
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255, 107, 138, 0.09), transparent),
    var(--surface);
}

.delivery-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lavender), var(--rose));
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}

.delivery-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: var(--lavender-deep);
}

.delivery-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.shipping-table-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 28px);
  box-shadow: var(--shadow-soft);
}

.shipping-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.shipping-table caption {
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--lavender-deep);
  margin-bottom: 14px;
}

.shipping-table th,
.shipping-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.shipping-table thead th {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lavender);
  font-weight: 600;
}

.shipping-table tbody th {
  font-weight: 600;
  color: var(--text);
}

.shipping-table tbody td {
  color: var(--ink-soft);
}

.shipping-table tr:last-child th,
.shipping-table tr:last-child td {
  border-bottom: none;
}

.shipping-table .is-muted th,
.shipping-table .is-muted td {
  color: var(--muted);
  font-weight: 500;
}

.country-code {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.shipping-note {
  margin: 16px 0 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 820px;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 20px;
  box-shadow: var(--shadow-soft);
}

.faq summary {
  cursor: pointer;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--lavender-deep);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq summary::after {
  content: "+";
  color: var(--rose);
  font-size: 1.3rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.centered-actions {
  justify-content: center;
}

.preorder {
  padding: 116px var(--gutter) 72px;
  background:
    radial-gradient(ellipse 60% 45% at 85% 0%, rgba(201, 184, 216, 0.28), transparent),
    var(--bg);
}

.preorder-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.preorder-head {
  max-width: 620px;
  margin-bottom: 32px;
}

.preorder-head h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--lavender-deep);
  font-weight: 600;
}

.preorder-lead {
  margin: 0;
  color: var(--ink-soft);
}

.preorder-steps {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 0 0 28px;
  padding: 0;
  counter-reset: none;
}

.preorder-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--muted);
}

.preorder-steps li span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
}

.preorder-steps li.is-current {
  color: var(--text);
  font-weight: 600;
}

.preorder-steps li.is-current span {
  border-color: var(--rose);
  color: var(--rose);
  box-shadow: 0 0 0 4px rgba(255, 107, 138, 0.12);
}

.preorder-steps li.is-done span {
  border-color: var(--success);
  background: rgba(61, 154, 114, 0.1);
  color: var(--success);
}

.preorder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}

.preorder-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 38px);
  box-shadow: var(--shadow-soft);
}

.preorder-step {
  display: none;
}

.preorder-step.is-current {
  display: block;
}

.preorder-step h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 8px;
  color: var(--lavender-deep);
}

.preorder-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 26px 0 12px;
  color: var(--lavender-deep);
}

.step-hint {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.mode-choice {
  display: grid;
  gap: 12px;
}

.mode-option {
  position: relative;
  cursor: pointer;
}

.mode-option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.mode-body {
  display: block;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color 0.18s, box-shadow 0.18s;
}

.mode-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--lavender-deep);
  margin-bottom: 4px;
}

.mode-body span {
  color: var(--muted);
  font-size: 0.9rem;
}

.mode-option input:checked + .mode-body {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(255, 107, 138, 0.16);
}

.mode-option input:focus-visible + .mode-body {
  outline: 2px solid var(--lavender);
  outline-offset: 2px;
}

.preorder-form label,
.invite-form label {
  display: block;
  margin-bottom: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.preorder-form .swatch,
.preorder-form .qty-option,
.preorder-form .mode-option,
.preorder-form .check-field {
  margin-bottom: 0;
  font-weight: 400;
}

.preorder-form input[type="text"],
.preorder-form input[type="email"],
.preorder-form select,
.invite-form input[type="text"] {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  color: var(--text);
  font: inherit;
  font-weight: 400;
}

.preorder-form input:focus,
.preorder-form select:focus,
.invite-form input:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(255, 107, 138, 0.14);
}

.preorder-form input.is-invalid,
.invite-form input.is-invalid {
  border-color: var(--rose-dark);
  background: rgba(232, 93, 117, 0.05);
}

.field-hint {
  display: inline;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.82rem;
  margin-left: 6px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

.address-block {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 4px;
}

.check-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 22px 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.check-field input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--rose);
  flex: none;
}

.form-error {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(232, 93, 117, 0.1);
  border: 1px solid rgba(232, 93, 117, 0.28);
  color: var(--rose-dark);
  font-size: 0.9rem;
}

.step-error {
  margin-bottom: 0;
}

.recap-list {
  margin: 0;
  display: grid;
  gap: 0;
}

.recap-list > div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.recap-list dt {
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  color: var(--lavender);
  font-weight: 600;
}

.recap-list dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.recap-total dt {
  color: var(--lavender-deep);
}

.recap-total dd {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--rose-dark);
}

.recap-total dd small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--muted);
}

.preorder-summary {
  position: sticky;
  top: 96px;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 184, 216, 0.22), transparent),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
}

.preorder-summary h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 18px;
  color: var(--lavender-deep);
}

.summary-boxes {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.summary-boxes li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.summary-dot {
  --swatch: #b76e79;
  width: 52px;
  aspect-ratio: 1051 / 919;
  border-radius: 8px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%,
      color-mix(in srgb, var(--swatch) 20%, transparent), transparent),
    var(--surface);
  border: 1px solid var(--line);
  flex: none;
  overflow: hidden;
}

.summary-dot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.summary-boxes strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
}

.summary-boxes em {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted);
}

.summary-promo {
  margin: 16px 0 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.summary-promo label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.summary-promo-row {
  display: flex;
  gap: 8px;
}

.summary-promo input {
  flex: 1;
  min-width: 0;
  font: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 9px 12px;
}

.summary-promo input:focus {
  outline: 2px solid var(--rose-bright);
  outline-offset: 1px;
  border-color: var(--rose-bright);
}

.btn-small {
  padding: 9px 14px;
  font-size: 0.86rem;
  white-space: nowrap;
}

.summary-promo-feedback {
  margin: 8px 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--muted);
}

.summary-promo-feedback:empty {
  display: none;
}

.summary-promo-feedback.is-error { color: var(--rose-dark); }
.summary-promo-feedback.is-success { color: var(--success); }

.summary-lines {
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

#summary-discount dd,
#summary-discount {
  color: var(--success);
}

.summary-lines > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.summary-lines dt,
.summary-lines dd {
  margin: 0;
}

.summary-total {
  margin-top: 8px;
  padding-top: 12px !important;
  border-top: 1px solid var(--line);
}

.summary-total dt {
  font-weight: 600;
  color: var(--lavender-deep);
}

.summary-total dd {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--rose-dark);
}

.summary-note {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.confirm-section,
.invite-section {
  padding-top: 132px;
}

.confirm-card,
.invite-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow-soft);
}

.confirm-card h1,
.invite-card h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 0 0 16px;
  color: var(--lavender-deep);
  font-weight: 600;
}

.confirm-card p,
.invite-card p {
  color: var(--ink-soft);
}

.confirm-number {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 0.94rem;
}

.confirm-number strong {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  color: var(--rose-dark);
}

.confirm-next,
.invite-facts {
  list-style: none;
  margin: 22px 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.confirm-next li,
.invite-facts li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.confirm-next li::before,
.invite-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender), var(--rose));
}

.invite-card .lead {
  font-size: 1.02rem;
}

.invite-form {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.invite-country {
  margin: 4px 0 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 1120px) {
  .product-inner {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    order: 2;
  }

  .product-panel {
    order: 1;
  }

  .product-mock {
    aspect-ratio: 16 / 10;
  }

  .preorder-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

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

@media (max-width: 960px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }

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

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

  .preorder-layout {
    grid-template-columns: 1fr;
  }

  .preorder-summary {
    position: static;
    order: -1;
  }

  .preorder-steps {
    gap: 6px 16px;
  }
}

@media (max-width: 720px) {
  .product,
  .preorder {
    padding-top: 96px;
  }

  .confirm-section,
  .invite-section {
    padding-top: 112px;
  }

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

  .spec {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .recap-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .preorder-steps li {
    font-size: 0.8rem;
  }

  .preorder-steps li span {
    width: 24px;
    height: 24px;
    font-size: 0.74rem;
  }
}

@media (max-width: 480px) {
  .swatches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qty-choice,
  .field-row {
    grid-template-columns: 1fr;
  }

  .field-row {
    gap: 0;
  }

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

  .step-actions .btn {
    width: 100%;
  }

  .product-mock {
    aspect-ratio: 1 / 1;
    padding: 24px 16px;
  }

  .product-stage figcaption {
    flex-direction: column;
  }

  .shipping-table th,
  .shipping-table td {
    padding: 10px 8px;
    font-size: 0.88rem;
  }

  .preorder-steps {
    gap: 6px 12px;
  }
}
