/* 撮影 LP — 白基調・ポップ */

.dot-grid {
  min-height: 100vh;
  background-color: var(--bg);
  background-image: radial-gradient(rgba(148, 163, 184, 0.28) 1px, transparent 1px);
  background-size: 16px 16px;
}

.product-shell {
  width: min(94vw, 920px);
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 20px 36px;
}

.product-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Hero ── */
.page-head-split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}

.page-head-copy {
  flex: 1;
  min-width: min(100%, 260px);
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 8px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #be185d;
  background: linear-gradient(135deg, #fdf2f8, #fce7f3);
  border: 1px solid #fbcfe8;
}

.page-title {
  margin: 0;
  font-size: clamp(20px, 4.5vw, 28px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.page-lead {
  margin: 10px 0 0;
  font-size: clamp(13px, 2.8vw, 15px);
  font-weight: 600;
  line-height: 1.55;
}

.head-camera-stack {
  flex-shrink: 0;
  width: min(160px, 38vw);
  height: 130px;
}

.camera-stage {
  position: relative;
  height: 120px;
  display: grid;
  place-items: center;
}

.cam-frame {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  border: 2px solid var(--line);
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  display: grid;
  place-items: center;
}

.cam-frame--1 {
  transform: rotate(-12deg) translate(-28px, -8px);
  z-index: 1;
}

.cam-frame--2 {
  transform: rotate(8deg) translate(30px, 4px);
  z-index: 2;
}

.cam-swatch {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.cam-swatch--white { background: #fff; }
.cam-swatch--gray { background: #94a3b8; }

.cam-icon-wrap {
  position: relative;
  z-index: 3;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--primary), #60a5fa);
  color: #fff;
  font-size: 22px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.system-prompt-panel {
  margin-bottom: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f8fafc, #fff);
  border: 1px solid var(--line);
}

.system-prompt-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
  font-weight: 600;
}

.t-divider {
  width: 100%;
  height: 1px;
  background: var(--line);
  margin: 0 0 20px;
}

/* ── Form sections ── */
.order-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-section {
  padding: 18px 0 20px;
  border-radius: 0;
}

.order-form .form-section.card {
  background: transparent;
  border: none;
  box-shadow: none;
}

.section-h {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.sec-step {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.sec-title-text {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.sec-badge {
  margin-left: auto;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.sec-badge--soft {
  color: #64748b;
  background: #f1f5f9;
  border-color: #e2e8f0;
}

.sec-lead {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
}

.section-h + .sec-lead {
  margin-top: -4px;
}

/* ── Choice cards ── */
.choice-grid {
  display: grid;
  gap: 10px;
}

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

.choice-grid--delivery .choice-body {
  min-height: 108px;
  justify-content: center;
  padding: 14px 10px;
}

.choice-grid--delivery .choice-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.choice-grid--delivery .choice-title {
  font-size: 13px;
}

.choice-grid--delivery .choice-example {
  font-size: 10px;
  line-height: 1.35;
}

@media (max-width: 560px) {
  .choice-grid--delivery .choice-icon {
    font-size: 22px;
  }

  .choice-grid--delivery .choice-title {
    font-size: 12px;
  }

  .choice-grid--delivery .choice-example {
    font-size: 9px;
  }
}

.choice-grid--2 { grid-template-columns: 1fr; }
.choice-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
.choice-grid--4 { grid-template-columns: repeat(2, 1fr); }

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

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

@media (max-width: 560px) {
  .choice-grid--3,
  .choice-grid--4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 380px) {
  .choice-grid--3,
  .choice-grid--4 {
    grid-template-columns: 1fr;
  }
}

.choice-card {
  cursor: pointer;
}

.choice-sr {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 12px;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: #fff;
  text-align: center;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  min-height: 100%;
}

.choice-card--size {
  display: flex;
  height: 100%;
}

.choice-card--size .choice-body {
  flex: 1;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 4px;
}

/* サイズ例アイコン — エリア高さは統一、中のサイズだけ差をつける */
.size-icon-cluster {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 76px;
  margin-bottom: 6px;
  flex-shrink: 0;
}

.size-icon-cluster--small {
  --icon-a: clamp(20px, 3vw, 26px);
  --icon-b: clamp(18px, 2.6vw, 24px);
  gap: 7px;
}

.size-icon-cluster--medium {
  --icon-a: clamp(34px, 5vw, 44px);
  --icon-b: clamp(32px, 4.6vw, 42px);
  gap: 10px;
}

.size-icon-cluster--large {
  --icon-a: clamp(46px, 6.5vw, 58px);
  --icon-b: clamp(42px, 6vw, 54px);
  gap: 12px;
}

.choice-card--size .choice-title {
  margin-top: 2px;
}

.choice-card--size .choice-sub {
  min-height: 1.2em;
}

.choice-card--size .choice-example {
  min-height: 2.7em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.size-icon-cluster .size-icon:first-child {
  font-size: var(--icon-a);
}

.size-icon-cluster .size-icon:last-child {
  font-size: var(--icon-b);
}

.size-icon {
  line-height: 1;
  filter: drop-shadow(0 3px 6px rgba(15, 23, 42, 0.12));
  transition: transform 0.15s ease;
}

.choice-card:hover .size-icon {
  transform: translateY(-2px);
}

.size-icon-cluster--small .size-icon {
  color: #10b981;
}

.size-icon-cluster--medium .size-icon {
  color: #f59e0b;
}

.size-icon-cluster--large .size-icon {
  color: var(--primary);
}

.choice-sr:checked + .choice-body .size-icon {
  transform: scale(1.04);
}

.choice-card:hover .choice-body {
  border-color: #bfdbfe;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.1);
}

.choice-sr:checked + .choice-body {
  border-color: var(--primary);
  background: linear-gradient(180deg, #eff6ff 0%, #fff 100%);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
  transform: translateY(-1px);
}

.choice-sr:focus-visible + .choice-body {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 2px;
}

.choice-icon {
  font-size: 22px;
  margin-bottom: 4px;
}

.choice-icon--pink { color: #ec4899; }
.choice-icon--blue { color: var(--primary); }
.choice-icon--mint { color: #10b981; }
.choice-icon--orange { color: #f97316; }

.choice-title {
  font-size: 15px;
  font-weight: 900;
  color: var(--text);
}

.choice-sub {
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
}

.choice-example {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.4;
}

.choice-card--wide .choice-body {
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 12px;
  padding: 14px 14px;
}

.choice-card--wide .choice-icon {
  margin-bottom: 0;
  flex-shrink: 0;
  margin-top: 2px;
}

.choice-card--wide .choice-title,
.choice-card--wide .choice-example {
  display: block;
}

/* Swatches */
.swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 4px;
}

.swatch--white { background: #fff; box-shadow: inset 0 0 0 1px #e2e8f0; }
.swatch--gray { background: #94a3b8; }
.swatch--beige { background: #d6c4a8; }
.swatch--black { background: #1e293b; }

/* ── アングル（立方体＋矢印） ── */
.angle-grid {
  display: grid;
  gap: 10px;
}

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

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

.angle-card {
  cursor: pointer;
}

.angle-sr {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.angle-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 8px 10px;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: #fff;
  text-align: center;
  transition: all 0.15s ease;
  min-height: 100%;
}

.angle-card:hover .angle-body {
  border-color: #bfdbfe;
  background: #f8fafc;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.08);
}

.angle-sr:checked + .angle-body {
  border-color: var(--primary);
  background: linear-gradient(180deg, #eff6ff 0%, #fff 100%);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
}

.angle-sr:focus-visible + .angle-body {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 2px;
}

.angle-label {
  font-size: 12px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.3;
}

.angle-sr:checked + .angle-body .angle-label {
  color: #1e40af;
}

.angle-viz {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
}

.angle-cube {
  font-size: 32px;
  color: #94a3b8;
}

.angle-cube--tilt {
  transform: rotate(-18deg);
  color: #64748b;
}

.angle-cube--small {
  font-size: 24px;
}

.angle-dir {
  font-size: 18px;
  font-weight: 900;
}

.angle-dir--front {
  color: var(--primary);
  margin-right: 6px;
}

.angle-dir--back {
  color: var(--primary);
  margin-left: 6px;
}

.angle-dir--top {
  color: var(--primary);
  margin-bottom: 4px;
}

.angle-dir--oblique {
  color: var(--primary);
  margin-right: 4px;
  font-size: 16px;
}

.angle-zoom {
  font-size: 22px;
  color: var(--primary);
  margin-left: 6px;
}

.angle-spin360 {
  font-size: 22px;
  color: var(--primary);
  margin-left: 6px;
}

.angle-viz--front,
.angle-viz--back,
.angle-viz--oblique,
.angle-viz--closeup,
.angle-viz--spin360 {
  flex-direction: row;
}

.angle-viz--top {
  flex-direction: column;
  gap: 2px;
}

.angle-sr:checked + .angle-body .angle-cube {
  color: #64748b;
}

.angle-sr:checked + .angle-body .angle-dir--front,
.angle-sr:checked + .angle-body .angle-zoom,
.angle-sr:checked + .angle-body .angle-spin360 {
  color: #db2777;
}

.angle-sr:checked + .angle-body .angle-dir--back {
  color: #7c3aed;
}

.angle-sr:checked + .angle-body .angle-dir--top {
  color: #059669;
}

.angle-sr:checked + .angle-body .angle-dir--oblique {
  color: #d97706;
}

.field-err {
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--danger);
}

/* ── 撮影点数（1・2・3・n） ── */
.qty-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 8px 12px 4px;
  text-align: center;
}

.qty-panel .sec-lead {
  margin-bottom: 4px;
}

.qty-picks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 320px;
}

.qty-pick {
  cursor: pointer;
}

.qty-pick-sr {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.qty-pick-body {
  display: grid;
  place-items: center;
  min-height: 52px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-size: 20px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  transition: all 0.15s ease;
}

.qty-pick:hover .qty-pick-body {
  border-color: #bfdbfe;
  background: #f8fafc;
}

.qty-pick-sr:checked + .qty-pick-body {
  border-color: var(--primary);
  background: linear-gradient(180deg, #eff6ff 0%, #fff 100%);
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15);
}

.qty-pick-sr:focus-visible + .qty-pick-body {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 2px;
}

.qty-pick--input {
  cursor: text;
}

.qty-pick--input .qty-input {
  width: 100%;
  height: 52px;
  margin: 0;
  padding: 0 8px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  font-family: inherit;
  transition: all 0.15s ease;
}

.qty-pick--input .qty-input::placeholder {
  color: var(--muted);
  font-style: italic;
  font-weight: 800;
}

.qty-pick--input .qty-input:hover {
  border-color: #bfdbfe;
  background: #f8fafc;
}

.qty-pick--input.is-selected .qty-input,
.qty-pick--input .qty-input:focus {
  outline: none;
  border-color: var(--primary);
  background: linear-gradient(180deg, #eff6ff 0%, #fff 100%);
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15);
}

.price-hint {
  margin: 0;
  font-size: 13px;
}

.price-hint strong {
  color: var(--primary);
  font-size: 15px;
}

/* ── 返却オプション ── */
.return-options {
  display: grid;
  gap: 10px;
}

.return-option {
  cursor: pointer;
}

.return-sr {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.return-body {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: all 0.15s ease;
}

.return-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 16px;
  background: #f1f5f9;
  color: var(--muted);
}

.return-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  text-align: left;
}

.return-title {
  font-size: 14px;
  font-weight: 800;
}

.return-desc {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.return-price {
  font-size: 14px;
  font-weight: 900;
  color: var(--primary);
  flex-shrink: 0;
  align-self: center;
}

.return-price--free {
  color: var(--success);
}

.return-sr:checked + .return-body {
  border-color: var(--primary);
  background: linear-gradient(90deg, #eff6ff, #fff);
  box-shadow: 0 3px 12px rgba(37, 99, 235, 0.12);
}

.return-sr:checked + .return-body .return-icon {
  background: var(--primary);
  color: #fff;
}

/* ── Estimate banner ── */
.estimate-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eff6ff 0%, #fff 50%, #fdf2f8 100%);
  border: 2px solid #bfdbfe;
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.1);
}

.estimate-banner-copy {
  flex: 1;
  min-width: 160px;
}

.est-cap {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.estimate-detail {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

.estimate-coins-hero {
  margin: 0;
  font-size: clamp(32px, 6vw, 42px);
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

.estimate-coins-hero small {
  font-size: 0.45em;
  font-weight: 800;
}

/* ── CTA ── */
.cta-section {
  padding-top: 4px;
}

.order-btn {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 900;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

.ship-notice {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #fffbeb;
  border-color: #fde68a;
}

.ship-notice-title {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 900;
  color: #92400e;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ship-notice-list {
  margin: 0;
  padding-left: 1.2em;
  font-size: 13px;
  line-height: 1.7;
  color: #78350f;
}

.ship-notice-list li {
  margin-bottom: 6px;
}

.ship-notice-list li:last-child {
  margin-bottom: 0;
}

.cta-note {
  margin: 14px 0 0;
  font-size: 12px;
  text-align: center;
}

/* ── Modal ── */
.order-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 8500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(15, 23, 42, 0.55);
}

.order-modal-backdrop.open {
  display: flex;
}

.return-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 8600;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(15, 23, 42, 0.62);
}

.return-modal-backdrop.open {
  display: flex;
}

.return-modal {
  width: min(520px, 100%);
  max-height: min(92vh, 640px);
  overflow-y: auto;
  padding: 20px 18px 18px;
}

.return-ship-lead {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.65;
}

.return-ship-block {
  margin-bottom: 8px;
}

.order-modal {
  width: min(640px, 100%);
  max-height: min(92vh, 760px);
  overflow-y: auto;
  padding: 20px 18px 18px;
}

.order-modal-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.order-modal-title {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 8px;
}

.order-close-btn {
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  padding: 0 4px;
}

.inset-card {
  padding: 14px;
  margin-bottom: 12px;
  background: #f8fafc;
}

.summary-card {
  font-size: 13px;
  line-height: 1.65;
}

.summary-card dl {
  margin: 0;
  display: grid;
  gap: 8px;
}

.summary-row {
  display: grid;
  grid-template-columns: 7.5em 1fr;
  gap: 8px;
}

.summary-row dt {
  margin: 0;
  font-weight: 800;
  color: var(--muted);
  font-size: 12px;
}

.summary-row dd {
  margin: 0;
  font-weight: 700;
  color: var(--text);
}

.estimate-inset .estimate-yen {
  margin: 6px 0 0;
  font-size: 26px;
  font-weight: 900;
  color: var(--primary);
}

.estimate-inset .estimate-yen small {
  font-size: 0.55em;
  font-weight: 800;
}

.estimate-fine {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

.modal-row {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 16px;
}

.btn-accent {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-text, #422006);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.return-ship-block {
  margin-top: 4px;
}

.return-ship-q {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.return-ship-hint {
  margin: 0 0 8px;
  font-size: 12px;
}

.lbl {
  font-size: 13px;
  font-weight: 800;
}

.zip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.zip-row .input {
  flex: 1 1 160px;
}

.zip-btn {
  flex: 0 0 auto;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

/* ── Complete modal ── */
.complete-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
  background: rgba(15, 23, 42, 0.55);
}

.complete-backdrop.open {
  display: flex;
}

.complete-modal {
  width: min(720px, calc(100vw - 24px));
  max-height: min(92vh, 680px);
  padding: 24px 22px 20px;
  overflow-y: auto;
}

.complete-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 20px 28px;
  align-items: center;
}

.complete-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.complete-camera-art {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 52px;
  color: #fff;
  background: linear-gradient(145deg, var(--primary), #818cf8);
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.35);
}

.complete-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.complete-sparkles i {
  position: absolute;
  font-size: 14px;
  color: #fbbf24;
}

.complete-sparkles i:nth-child(1) { top: 8px; right: 12px; }
.complete-sparkles i:nth-child(2) { bottom: 16px; left: 4px; font-size: 10px; }
.complete-sparkles i:nth-child(3) { top: 50%; right: -8px; font-size: 12px; }

.complete-copy {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.complete-ship-priority {
  order: -1;
  margin: 0 0 12px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 900;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.complete-title {
  margin: 0;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 950;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}

.complete-lead {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 700;
}

.complete-email-note {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--primary);
  font-weight: 800;
}

.complete-guide {
  margin-top: 16px;
}

.complete-guide-text {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 700;
}

.complete-address {
  margin: 0;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 800;
  font-style: normal;
  line-height: 1.7;
  white-space: pre-line;
  text-align: center;
  background: #fff;
  border: 2px dashed var(--primary);
}

.complete-deadline {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.complete-actions {
  margin-top: 20px;
}

.complete-close-btn {
  min-width: 140px;
}

.product-main {
  padding-top: 20px;
  padding-bottom: 48px;
}

@media (max-width: 640px) {
  .complete-layout {
    grid-template-columns: 1fr;
  }

  .complete-camera-art {
    width: 100px;
    height: 100px;
    font-size: 38px;
  }
}
