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

:root {
  --emerald-50: #eef4ff;
  --emerald-100: #d9e8ff;
  --emerald-200: #bfd8ff;
  --emerald-400: #5797ff;
  --emerald-500: #0d6efd;
  --emerald-600: #0b5ed7;
  --emerald-700: #0b3c83;
  --amber-50: #fffbeb;
  --amber-700: #b45309;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --red-400: #f87171;
  --red-500: #ef4444;
  --white: #ffffff;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes urgentBadge {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(255, 107, 87, 0.0), 0 14px 32px rgba(4, 16, 37, 0.18); }
  50% { transform: scale(1.045); box-shadow: 0 0 0 10px rgba(255, 107, 87, 0.15), 0 22px 42px rgba(255, 107, 87, 0.28); }
}
@keyframes urgentDot {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(255, 107, 87, 0.56); }
  50% { transform: scale(1.35); opacity: 0.82; box-shadow: 0 0 0 10px rgba(255, 107, 87, 0); }
}
@keyframes spotsBlink {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 87, 0.72), 0 0 12px rgba(255, 107, 87, 0.48); }
  50% { opacity: 0.42; transform: scale(1.62); box-shadow: 0 0 0 11px rgba(255, 107, 87, 0), 0 0 22px rgba(255, 107, 87, 0.78); }
}
@keyframes spotsTextPulse {
  0%, 100% { color: #fff; text-shadow: 0 0 0 rgba(255, 107, 87, 0); }
  50% { color: #ffd7cf; text-shadow: 0 0 14px rgba(255, 107, 87, 0.82); }
}
@keyframes edgeTick {
  0% { box-shadow: inset 0 0 0 0 rgba(255, 107, 87, 0.0), 0 10px 24px rgba(6,18,42,0.1); }
  50% { box-shadow: inset 0 0 0 2px rgba(255, 137, 118, 0.45), 0 16px 28px rgba(255, 107, 87, 0.2); }
  100% { box-shadow: inset 0 0 0 0 rgba(255, 107, 87, 0.0), 0 10px 24px rgba(6,18,42,0.1); }
}
@keyframes edgeMinute {
  0% { box-shadow: inset 0 0 0 0 rgba(255, 214, 0, 0), 0 10px 24px rgba(6,18,42,0.1); }
  35% { box-shadow: inset 0 0 0 3px rgba(255, 214, 0, 0.95), 0 18px 34px rgba(255, 107, 87, 0.3); }
  100% { box-shadow: inset 0 0 0 0 rgba(255, 214, 0, 0), 0 10px 24px rgba(6,18,42,0.1); }
}

html { scroll-behavior: smooth; }

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: linear-gradient(180deg, #f4f8ff 0%, #edf3fb 100%);
  color: var(--gray-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

body.special-tshirt-offer {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

body.special-tshirt-offer .page-shell,
body.special-tshirt-offer .page-main,
body.special-tshirt-offer .hero,
body.special-tshirt-offer .countdown-bar-wrap,
body.special-tshirt-offer .promo-section,
body.special-tshirt-offer .reviews-section,
body.special-tshirt-offer .order-section {
  max-width: 100%;
  overflow-x: clip;
}

body.special-tshirt-offer img,
body.special-tshirt-offer video,
body.special-tshirt-offer canvas {
  max-width: 100%;
}

@supports not (overflow: clip) {
  body.special-tshirt-offer,
  body.special-tshirt-offer .page-shell,
  body.special-tshirt-offer .page-main,
  body.special-tshirt-offer .hero,
  body.special-tshirt-offer .countdown-bar-wrap,
  body.special-tshirt-offer .promo-section,
  body.special-tshirt-offer .reviews-section,
  body.special-tshirt-offer .order-section {
    overflow-x: hidden;
  }
}

@media(max-width:767px) {
  body.special-tshirt-offer input,
  body.special-tshirt-offer select,
  body.special-tshirt-offer textarea {
    font-size: 16px !important;
  }
}

.special-tshirt-offer {

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-main {
  flex: 1;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(14px);
  background: rgba(3, 14, 34, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.site-brand img {
  width: 154px;
  max-width: 42vw;
  display: block;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 18px;
}

.site-nav a,
.site-account-links a,
.site-account-links button,
.site-cart-link,
.mobile-menu-button {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-account-links a:hover,
.site-account-links button:hover,
.site-cart-link:hover {
  color: white;
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-account-links {
  display: none;
  align-items: center;
  gap: 14px;
}

.site-account-links button {
  background: none;
  border: 0;
  cursor: pointer;
}

.site-cart-link {
  display: none;
  align-items: center;
  gap: 8px;
}

.site-header-cta,
.auth-pill,
.auth-secondary,
.mobile-nav .mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f7fbff 0%, #dce9ff 100%);
  color: #173868;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(6, 18, 42, 0.2);
  text-decoration: none;
}

.site-header-cta {
  font-size: 0.92rem;
}

.auth-secondary,
.mobile-nav .mobile-secondary {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: none;
}

.mobile-menu-button {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu-button svg {
  width: 18px;
  height: 18px;
}

.mobile-nav {
  display: none;
  background: rgba(7, 23, 46, 0.98);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px 0 18px;
}

.mobile-nav.open {
  display: block;
  animation: slideDown 0.2s ease-out;
}

.mobile-nav-links,
.mobile-nav-actions {
  display: grid;
  gap: 10px;
}

.mobile-nav-links a,
.mobile-nav-actions a,
.mobile-nav-actions button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
}

.mobile-nav-links a {
  background: rgba(255,255,255,0.06);
  color: white;
  border: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav-actions {
  margin-top: 14px;
}

@media(min-width:960px) {
  .site-nav,
  .site-account-links,
  .site-cart-link {
    display: flex;
  }

  .mobile-menu-button {
    display: none;
  }
}

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

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
input[type="number"] { -moz-appearance: textfield; }

.animate-slideDown { animation: slideDown 0.2s ease-out; }

.hero {
  position: relative; min-height: 520px; display: flex; align-items: center;
  justify-content: center; overflow: hidden; background: #0a1c3a;
}
@media(min-width:768px) { .hero { min-height: 600px; } }
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.4;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,18,42,0.82), rgba(12,54,116,0.64), rgba(7,24,48,0.9));
}
.hero-product {
  position: absolute;
  left: 73%;
  top: 52%;
  transform: translate(-50%, -42%);
  width: min(92vw, 780px);
  z-index: 6;
  pointer-events: none;
  filter: drop-shadow(0 26px 80px rgba(3, 11, 24, 0.42));
  opacity: 0.72;
}
.hero-product img {
  width: 100%;
  height: auto;
  display: block;
}
@media(min-width:900px) {
  .hero-product {
    left: 86%;
    top: 54%;
    transform: translate(-50%, -40%);
    width: min(60vw, 920px);
  }
  .hero-content {
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
  }
  .hero-actions {
    justify-content: center;
  }
}
@media(max-width:899px) {
  .hero {
    padding-bottom: 0;
  }
  .hero-product {
    top: 58%;
    left: 77%;
    width: min(98vw, 680px);
    opacity: 0.62;
  }
}
.hero-content {
  position: relative; z-index: 10; text-align: center;
  padding: 0 24px; max-width: 960px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(255,107,87,0.26), rgba(255,161,81,0.18));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,208,168,0.5); border-radius: 9999px;
  padding: 9px 18px; margin-bottom: 24px;
  font-size: 14px; color: rgba(255,255,255,0.98); font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: urgentBadge 0.95s infinite;
}
.promo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 18px;
  padding: 9px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,107,87,0.14), rgba(255,161,81,0.1));
  border: 1px solid rgba(255, 152, 115, 0.32);
  color: #9f2c1f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-badge-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #ff6b57; animation: urgentDot 0.9s infinite;
}
.hero h1 {
  font-size: 2.25rem; font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -0.02em;
}
@media(min-width:768px) { .hero h1 { font-size: 3.75rem; } }
@media(min-width:1024px) { .hero h1 { font-size: 4.5rem; } }
.hero-title-line {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.22em;
  flex-wrap: wrap;
}
.hero-price-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-price-old {
  color: rgba(255,255,255,0.62);
  font-size: 1em;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 6px;
  text-decoration-color: rgba(255, 122, 89, 0.9);
}
.hero-price-now { color: var(--emerald-400); }
.hero-sub {
  margin-top: 20px; font-size: 1.1rem; color: rgba(255,255,255,0.8);
  max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.6;
}
@media(min-width:768px) { .hero-sub { font-size: 1.25rem; } }
.hero-copy-cluster {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}
.hero-small {
  font-size: 0.82rem; color: rgba(255,255,255,0.64);
  max-width: 420px; margin-left: auto; margin-right: auto;
}
.hero-urgency-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media(min-width:768px) {
  .hero-urgency-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.hero-urgency-card {
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  text-align: left;
}

.hero-urgency-card strong {
  display: block;
  color: white;
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-urgency-card span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.72);
  font-size: 0.72rem;
  line-height: 1.45;
}
.hero-urgency-card.is-expired {
  background: rgba(255, 107, 87, 0.12);
  border-color: rgba(255, 140, 120, 0.45);
}
.hero-actions {
  margin-top: 32px; display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}
@media(min-width:640px) { .hero-actions { flex-direction: row; justify-content: center; } }
#hero-primary-cta {
  width: auto;
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  white-space: nowrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--emerald-500); color: white;
  font-weight: 600; padding: 14px 32px; border-radius: 12px;
  font-size: 1rem; border: none; cursor: pointer;
  transition: all 0.2s; text-decoration: none;
}
.btn-primary:hover {
  background: var(--emerald-400); box-shadow: 0 8px 25px rgba(13,110,253,0.25);
  transform: translateY(-2px);
}
.btn-primary.is-disabled {
  background: rgba(255,255,255,0.24);
  color: rgba(255,255,255,0.78);
  box-shadow: none;
  transform: none;
  cursor: not-allowed;
  pointer-events: none;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 4px;
}

.hero-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.hero-link:hover {
  color: white;
}

.hero-link:hover svg {
  transform: translateY(2px);
}

.countdown-bar-wrap {
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 11;
}

.countdown-bar {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: linear-gradient(90deg, #061830 0%, #0a2f63 52%, #0b3c83 100%);
  border-top: 3px solid #ff6b57;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 14px 28px rgba(6,18,42,0.12);
  border-radius: 0;
  padding: 12px 20px;
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}
.countdown-bar.is-expired {
  background: linear-gradient(90deg, #2f1017 0%, #4b1820 52%, #5d1f27 100%);
  border-top-color: #ff8c78;
}

.countdown-bar.is-ticking {
  animation: edgeTick 0.36s ease;
}

.countdown-bar.is-minute-flip {
  animation: edgeMinute 0.8s ease;
}

.countdown-bar-copy {
  min-width: 0;
}

.countdown-bar-top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown-bar-top svg {
  width: 14px;
  height: 14px;
}

.countdown-bar-copy p {
  margin-top: 3px;
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
}
.countdown-spots-line {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.spots-blink-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ff6b57;
  flex-shrink: 0;
  animation: spotsBlink 1s infinite;
}
.countdown-spots-line strong {
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
  animation: spotsTextPulse 1.05s infinite;
}
.countdown-spots-line span {
  color: rgba(255,255,255,0.7);
}
.countdown-spots-line.is-expired strong,
.countdown-bar.is-expired .countdown-spots-line strong {
  color: #ffd6d0;
}

.countdown {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px;
  min-width: min(100%, 340px);
}
.countdown-segment {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px; padding: 8px 6px; min-width: 0; text-align: center;
}
.countdown-value {
  display: block; color: white; font-size: 1.05rem; font-weight: 800;
  line-height: 1; letter-spacing: -0.03em; font-variant-numeric: tabular-nums;
}
.countdown-label {
  display: block; margin-top: 4px; color: rgba(255,255,255,0.62);
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.countdown-bar.is-expired .countdown-segment {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}
.countdown-bar.is-expired .countdown-value {
  color: #ffd6d0;
}
.countdown-bar.is-expired .countdown-label,
.countdown-bar.is-expired .countdown-bar-copy p {
  color: rgba(255,255,255,0.74);
}

@media(max-width:767px) {
  .countdown-bar {
    flex-direction: column;
    align-items: stretch;
  }
}

.icon { width: 20px; height: 20px; display: inline-block; vertical-align: middle; }
.icon-sm { width: 16px; height: 16px; }
.icon-xs { width: 14px; height: 14px; }
.icon-lg { width: 32px; height: 32px; }

.promo-section { padding: 64px 16px; background: white; }
.promo-section[hidden] {
  display: none !important;
}
.promo-section {
  transition: max-height 0.38s ease, opacity 0.28s ease, padding 0.28s ease;
  max-height: 1600px;
  opacity: 1;
  overflow: hidden;
}
.promo-section.is-collapsed {
  padding-top: 0;
  padding-bottom: 0;
  max-height: 0;
  opacity: 0;
  border: 0;
}
.promo-inner { max-width: 960px; margin: 0 auto; text-align: center; }
.promo-section h2 { font-size: 1.5rem; font-weight: 700; text-align: center; }
@media(min-width:768px) { .promo-section h2 { font-size: 1.875rem; } }
.promo-section .subtitle {
  color: var(--gray-500); text-align: center; margin-top: 8px;
  font-size: 0.875rem; max-width: 480px; margin-left: auto; margin-right: auto;
}
.promo-grid {
  margin-top: 40px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
@media(min-width:768px) { .promo-grid { grid-template-columns: repeat(3, 1fr); } }
.promo-card {
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: 16px; padding: 20px;
  min-height: 146px;
  overflow: visible;
}
.promo-card .card-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--emerald-100); color: var(--emerald-600);
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
  overflow: visible;
}
.promo-card .card-icon svg { width: 20px; height: 20px; }
.promo-card .card-title { font-weight: 600; font-size: 0.875rem; color: var(--gray-900); }
@media(min-width:768px) { .promo-card .card-title { font-size: 1rem; } }
.promo-card .card-desc { color: var(--gray-500); font-size: 0.75rem; margin-top: 2px; }
@media(min-width:768px) { .promo-card .card-desc { font-size: 0.875rem; } }
.promo-note { margin-top: 32px; text-align: center; font-size: 0.875rem; color: var(--gray-400); }

.offer-compare-section {
  padding: 20px 16px 0;
}

.offer-compare-inner {
  max-width: 1152px;
  margin: 0 auto;
}

.offer-compare-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0b2f63 0%, #123f82 55%, #0b3c83 100%);
  color: white;
  box-shadow: 0 18px 42px rgba(6,18,42,0.14);
}

@media(min-width:768px) {
  .offer-compare-strip {
    grid-template-columns: 1.3fr 0.8fr 0.8fr;
    align-items: center;
  }
}

.offer-compare-main {
  text-align: center;
}

@media(min-width:768px) {
  .offer-compare-main {
    text-align: left;
  }
}

.offer-compare-main strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.offer-compare-main p {
  margin-top: 4px;
  color: rgba(255,255,255,0.78);
  font-size: 0.8rem;
}

.offer-compare-stat {
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 16px;
  text-align: center;
}

.offer-compare-stat strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: white;
}

.offer-compare-stat span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.74);
  font-size: 0.76rem;
}

.guide-section {
  padding: 24px 16px 0;
}

.guide-inner {
  max-width: 1152px;
  margin: 0 auto;
}

.guide-shell {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,250,255,0.96));
  border: 1px solid rgba(191, 216, 255, 0.9);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(6,18,42,0.08);
  padding: 24px;
}

.guide-head {
  text-align: center;
}

.guide-head h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
}

.guide-head p {
  margin-top: 8px;
  color: var(--gray-500);
  font-size: 0.84rem;
}

.guide-steps {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media(min-width:768px) {
  .guide-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.guide-step {
  border-radius: 18px;
  border: 1px solid var(--gray-200);
  background: white;
  padding: 18px;
}

.guide-step-num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--emerald-100);
  color: var(--emerald-700);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.guide-step strong {
  display: block;
  font-size: 0.98rem;
  color: var(--gray-900);
}

.guide-step p {
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.fit-strip {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.fit-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f7fbff;
  border: 1px solid #d7e6ff;
  color: #0b3c83;
  font-size: 0.8rem;
  font-weight: 700;
}

.confidence-strip {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eefaf2 0%, #f9fffb 100%);
  border: 1px solid #c7e7d3;
  text-align: center;
  color: #1f6a46;
  font-size: 0.86rem;
  font-weight: 700;
}

.order-section { padding: 48px 16px; }
@media(min-width:768px) { .order-section { padding: 64px 16px; } }
.order-inner { max-width: 1152px; margin: 0 auto; }
.order-header h2 { font-size: 1.5rem; font-weight: 700; }
@media(min-width:768px) { .order-header h2 { font-size: 2.775rem; } }
.order-header p {
  color: var(--gray-500); margin-top: 8px; font-size: 0.875rem;
}
.order-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media(min-width:1024px) { .order-grid { grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr); } }
.form-col { display: flex; flex-direction: column; gap: 32px; }

.reviews-section {
  padding: 22px 16px 0;
}

.reviews-inner {
  max-width: 1152px;
  margin: 0 auto;
}

.reviews-shell {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(191, 216, 255, 0.9);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(6,18,42,0.08);
  overflow: hidden;
}

.reviews-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
}

.reviews-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.reviews-copy strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #0b2f63;
}

.reviews-heading-stars {
  color: #f59e0b;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.reviews-copy p {
  margin-top: 4px;
  font-size: 0.84rem;
  color: var(--gray-500);
}

.reviews-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #fff8db 0%, #ffe08a 52%, #ffc94d 100%);
  color: #6f4300;
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(255, 196, 69, 0.28);
}

.reviews-work-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(11, 47, 99, 0.12);
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 15px;
  background: white;
  color: #0b2f63;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(6,18,42,0.08);
}

.reviews-work-btn:hover {
  background: #f7fbff;
}

.reviews-work-btn svg {
  width: 15px;
  height: 15px;
}

.reviews-toggle .google-mark {
  width: 59px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviews-toggle .google-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.reviews-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.18s ease;
}

.reviews-toggle.open svg {
  transform: rotate(180deg);
}

.reviews-panel {
  display: none;
  padding: 0 20px 20px;
}

.reviews-panel.open {
  display: block;
  animation: slideDown 0.2s ease-out;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media(min-width:900px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(6,18,42,0.05);
}

.review-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.review-author strong {
  display: block;
  font-size: 0.94rem;
  color: var(--gray-900);
}

.review-meta {
  margin-top: 2px;
  font-size: 0.76rem;
  color: var(--gray-500);
}

.review-stars {
  color: #f59e0b;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.review-body {
  margin-top: 12px;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--gray-700);
}

.review-body.compact {
  color: var(--gray-500);
  font-style: italic;
}

@media(max-width:767px) {
  .reviews-top {
    flex-direction: column;
    align-items: stretch;
  }

  .reviews-actions {
    width: 100%;
    flex-direction: column;
  }

  .reviews-toggle,
  .reviews-work-btn {
    width: 100%;
    justify-content: center;
  }
}

.card {
  background: white; border-radius: 16px; border: 1px solid var(--gray-200);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05); padding: 20px;
}
@media(min-width:768px) { .card { padding: 24px; } }

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.section-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gray-900);
}
.section-status {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid var(--gray-300);
  background: white;
  color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.section-status svg {
  width: 13px;
  height: 13px;
  overflow: visible;
}
.section-status.done {
  background: #19b36b;
  border-color: #19b36b;
  color: white;
  box-shadow: 0 10px 20px rgba(25, 179, 107, 0.22);
}
.section-desc { font-size: 0.875rem; color: var(--gray-500); margin-top: 2px; }

.field-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
@media(min-width:640px) { .field-grid { grid-template-columns: 1fr 1fr; } }
.field-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.875rem; font-weight: 500; color: var(--gray-700); margin-bottom: 6px;
}
.field-label svg {
  width: 14px;
  height: 14px;
  color: var(--gray-400);
  overflow: visible;
  flex-shrink: 0;
}
.field-label .required { color: var(--red-400); }
.field-input {
  width: 100%; padding: 10px 16px; background: var(--gray-50);
  border: 1px solid var(--gray-200); border-radius: 12px;
  font-size: 0.875rem; color: var(--gray-900); outline: none; transition: all 0.2s;
}
.field-input::placeholder { color: var(--gray-400); }
.field-input:focus { border-color: var(--emerald-400); box-shadow: 0 0 0 3px rgba(13,110,253,0.15); }

.field-input.special-tshirt-attention,
.field-grid > div.special-tshirt-attention .field-input,
.notes-area.special-tshirt-attention,
.card.special-tshirt-attention {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.14);
}

.field-grid > div.special-tshirt-attention .field-label,
.card.special-tshirt-attention .section-title {
  color: #b91c1c;
}

.contact-account-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  justify-items: center;
}

.sms-opt-in {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: flex-start;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 91, 216, 0.14);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.95), rgba(240, 247, 255, 0.95));
  cursor: pointer;
}
.sms-opt-in input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.sms-opt-in-box {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 7px;
  border: 2px solid rgba(15, 91, 216, 0.32);
  background: white;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.sms-opt-in input:checked + .sms-opt-in-box {
  background: #19b36b;
  border-color: #19b36b;
  box-shadow: inset 0 0 0 4px white;
}
.sms-opt-in strong {
  display: block;
  color: var(--gray-900);
  font-size: 0.86rem;
}
.sms-opt-in em {
  display: block;
  margin-top: 2px;
  color: var(--gray-500);
  font-size: 0.76rem;
  line-height: 1.35;
  font-style: normal;
}

@media(min-width:640px) {
  .contact-account-actions {
    grid-template-columns: 1fr;
  }
}

.auth-pill,
.auth-secondary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 14px;
}

.contact-account-actions .auth-pill {
  width: min(100%, 236px);
  min-height: 44px;
  padding: 0 16px;
  justify-self: center;
  background: linear-gradient(135deg, #0f5bd8 0%, #1c78ff 100%);
  color: #fff;
  border: 1px solid rgba(10, 54, 120, 0.18);
  box-shadow: 0 12px 24px rgba(15, 91, 216, 0.24), 0 0 0 4px rgba(28, 120, 255, 0.08);
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

.contact-account-actions .auth-pill[hidden] {
  display: none;
}

.auth-helper {
  display: none !important;
}

.contact-account-actions .auth-pill:hover {
  background: linear-gradient(135deg, #0d54c6 0%, #156cf0 100%);
  transform: translateY(-1px);
}

.contact-account-actions .auth-secondary {
  background: #0b2f63;
  color: white;
  box-shadow: 0 12px 24px rgba(11,47,99,0.18);
}

.contact-account-actions .auth-secondary:hover {
  background: #0d3b7d;
}

.color-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 7px;
}
.color-card {
    background: linear-gradient(160deg, rgba(222, 238, 255, 0.98), rgba(241, 247, 255, 0.98));
    border: 1px solid #9fc5ff;
    border-radius: 18px;
    padding: 16px;
    transition: all 0.2s;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), 0 2px 15px rgba(13,110,253,0.1);
    position: relative;
}
.color-card:hover { border-color: rgba(13,110,253,0.42); }
.color-card-shell {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.color-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  padding-right: 36px;
}

.color-card-header > .btn-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 8;
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  max-width: 30px;
  max-height: 30px;
  color: var(--gray-500);
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(148,163,184,0.42);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(6,18,42,0.12);
}
.color-card-selected {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-700);
}
.color-picker-top {
  display: block;
  flex: 1;
}
.color-picker-subline {
  display: block;
  margin-top: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-700);
}
.color-picker-see-all {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #0f5bd8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  padding: 2px 0;
  white-space: nowrap;
}
.color-picker-see-all:hover {
  color: #0c4fbf;
  text-decoration: underline;
}
.color-picker-shell {
  position: relative;
  margin-bottom: 18px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.color-picker-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(159, 197, 255, 0.5);
  background: rgba(255,255,255,0.78);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 8px 18px rgba(6,18,42,0.04);
}
.color-picker-trigger:hover {
  border-color: rgba(13,110,253,0.52);
}
.color-picker-trigger-thumb {
  width: 84px;
  height: 38px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: #f8fbff;
  flex-shrink: 0;
}
.color-picker-trigger-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.color-picker-trigger-copy {
  min-width: 0;
  flex: 1;
}
.color-picker-trigger-copy strong {
  display: block;
  font-size: 0.88rem;
  color: var(--gray-900);
}
.color-picker-trigger-copy span {
  display: block;
  margin-top: 2px;
  font-size: 0.74rem;
  color: var(--gray-500);
}
.color-picker-trigger-arrow {
  width: 18px;
  height: 18px;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform 0.18s ease;
}
.color-picker-trigger.is-open .color-picker-trigger-arrow {
  transform: rotate(180deg);
}
.color-picker-panel {
  display: none;
  margin-top: 10px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  background: white;
  box-shadow: 0 18px 34px rgba(6,18,42,0.12);
  padding: 12px;
}
.color-picker-panel.open {
  display: block;
}
.color-picker-search {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  font-size: 0.82rem;
  outline: none;
}
.color-picker-search:focus {
  border-color: var(--emerald-400);
  box-shadow: 0 0 0 3px rgba(13,110,253,0.12);
}
.color-picker-list {
  display: none;
}
.color-picker-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-height: 340px;
  overflow: auto;
}
.color-picker-grid-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  cursor: pointer;
  border: 0;
  background: transparent;
}
.color-picker-grid-item-thumb {
  width: 100%;
  aspect-ratio: 4 / 2.3;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--gray-200);
  background: white;
}
.color-picker-grid-item.active .color-picker-grid-item-thumb {
  border-color: var(--emerald-500);
  box-shadow: 0 0 0 3px rgba(13,110,253,0.12);
}
.color-picker-grid-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.color-picker-grid-item-label {
  font-size: 0.68rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--gray-700);
}
.color-picker-empty {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--gray-50);
  color: var(--gray-500);
  font-size: 0.78rem;
  text-align: center;
}
.btn-remove {
  width: 28px; height: 28px; padding: 0; color: var(--gray-400); background: none; border: none;
  cursor: pointer; transition: color 0.2s; border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center; overflow: visible;
  -webkit-appearance: none;
  appearance: none;
  flex: 0 0 28px;
}
.btn-remove:hover { color: var(--red-500); }
.btn-remove svg,
.addon-icon svg,
.promo-card .card-icon svg,
.summary-header-left svg,
.summary-note svg,
.print-check svg,
.custom-check svg,
.countdown-bar-top svg {
  display: block;
  overflow: visible;
  flex-shrink: 0;
}

.btn-remove svg,
.location-option-clear svg {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  flex: 0 0 14px;
}

.swatches { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.swatch {
  width: 42px; height: 42px; border-radius: 12px; border: 2px solid var(--gray-200);
  cursor: pointer; transition: all 0.15s; position: relative;
  display: flex; align-items: center; justify-content: center;
  background: white;
  padding: 0;
  overflow: hidden;
}
.swatch:hover { transform: scale(1.06); border-color: var(--gray-400); }
.swatch.active { border-color: var(--emerald-500); box-shadow: 0 0 0 3px rgba(13,110,253,0.18); transform: scale(1.06); }
.swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: linear-gradient(180deg, #f8fbff, #eef3f9);
}
.swatch-image-missing {
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  border-style: dashed;
}
.swatch-image-missing img {
  opacity: 0;
}

.color-card-copy {
  color: var(--gray-500);
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.shirt-card-shell {
  display: block;
}

.color-card-preview-wrap {
  position: relative;
}

.color-card-preview {
  width: 100%;
  border-radius: 18px;
  padding: 10px;
  background: #f9fafb;
  border: 0px solid var(--gray-200);
  box-shadow: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  transform-origin: center center;
  position: relative;
  z-index: 1;
}

.color-card-preview img {
  display: block;
  width: 100%;
  transition: transform 0.24s ease;
}

.color-card-preview-wrap .btn-remove {
  position: absolute;
  top: 6px;
  right: -6px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  z-index: 3;
}

@media(min-width:700px) {
  .color-card-preview-wrap {
    position: relative;
    top: 31px;
    height: 100%;
    max-height: 174px;
  }

  .color-card-preview-wrap:hover {
    z-index: 12;
  }

  .color-card-preview-wrap:hover .color-card-preview {
    transform: scale(2);
    box-shadow: 0 42px 76px rgba(6,18,42,0.32);
    z-index: 20;
  }

  .color-card-preview-wrap:hover .color-card-preview img {
    transform: scale(1.1);
  }

  .color-card-preview-wrap:hover .btn-remove {
    z-index: 1;
  }
}

@media(max-width:699px) {
  .color-card-shell {
    grid-template-columns: 1fr;
  }

  .color-card-preview-wrap {
    order: 1;
    max-width: 108px;
  }

  .color-card-main {
    order: 2;
  }

  .color-picker-top {
    margin-bottom: 10px;
  }

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

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

@media(min-width:640px) {
  .size-mini-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.size-mini-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 8px 6px;
  text-align: center;
  cursor: s-resize;
}

.size-mini-item:has(.size-mini-input:focus) {
  cursor: default;
}

.size-mini-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: 100%;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  text-align: center;
}

.size-mini-label:hover {
  color: var(--emerald-700);
}

.size-mini-input {
  width: 100%;
  margin-top: 6px;
  text-align: center;
  padding: 8px 4px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--gray-900);
  outline: none;
  cursor: text;
}

.size-mini-input:focus {
  border-color: var(--emerald-400);
  box-shadow: 0 0 0 3px rgba(13,110,253,0.12);
}

.size-mini-upcharge {
  display: block;
  margin-top: 5px;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--emerald-700);
}

.btn-add-color {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  width: 100%;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--emerald-700);
  background: #f0f0f0;
  border: 2px solid rgba(11, 47, 99, 0.22);
  cursor: pointer;
  padding: 14px 16px;
  border-radius: 14px;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
  margin-top: 24px;
}
.btn-add-color svg {
  width: 18px;
  height: 18px;
  overflow: visible;
  flex-shrink: 0;
  transform-origin: center;
}
.btn-add-color:hover {
  color: #0b2f63;
  border-color: rgba(11, 47, 99, 0.48);
  background: rgba(255,255,255,0.56);
  transform: translateY(-1px);
}
.btn-add-color.attention-spin svg {
  animation: addColorSlowSpin 2.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-add-color.attention-spin {
  border-color: rgba(15, 91, 216, 0.48);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 0 0 4px rgba(28, 120, 255, 0.08);
}

@keyframes addColorSlowSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  18% {
    transform: rotate(190deg) scale(1.12);
  }
  48% {
    transform: rotate(520deg) scale(1.08);
  }
  78% {
    transform: rotate(680deg) scale(1.03);
  }
  100% {
    transform: rotate(720deg) scale(1);
  }
}

.validation-bar {
  display: flex; align-items: flex-start; gap: 10px; padding: 14px 16px;
  border-radius: 14px; font-size: 0.9rem; font-weight: 700; margin-top: 16px;
  transition: all 0.3s;
  border: 1px solid transparent;
  --bundle-progress: 0%;
}
.validation-bar.valid { background: #edf4ff; color: #0b3c83; border-color: #bfd8ff; }
.validation-bar.invalid { background: #fff4db; color: #8a4b00; border-color: #f3cd83; }
.validation-bar.bundle-exact {
  background: #e8fff0;
  color: #1b6f45;
  border-color: #9dd8b4;
}
.validation-bar.bundle-progress {
  background: linear-gradient(90deg, #e8fff0 0%, #d9f7e4 var(--bundle-progress), #edf4ff var(--bundle-progress), #edf4ff 100%);
  color: #1d5b73;
  border-color: #b8ddca;
}
.validation-bar svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.validation-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.validation-copy strong {
  font-size: 0.95rem;
  line-height: 1.25;
}
.validation-shirt-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  margin-right: 5px;
  border-radius: 999px;
  background: #0b2f63;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.validation-copy span {
  font-size: 0.8rem;
  line-height: 1.35;
  opacity: 0.88;
}

.summary-validation-bar {
  margin-top: 14px;
  margin-bottom: 18px;
}

.location-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-card {
  padding: 12px;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--gray-200);
}

.location-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.location-card-title {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.location-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.location-option-grid.is-selected {
  grid-template-columns: 1fr;
}

@media(min-width:700px) {
  .location-option-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.location-option {
  appearance: none;
  border: 1px solid var(--gray-200);
  background: white;
  border-radius: 14px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.18s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}

.location-option:hover {
  border-color: var(--emerald-300);
  transform: translateY(-1px);
}

.location-option.active {
  border-color: var(--emerald-500);
  background: #f8fbff;
  box-shadow: 0 0 0 3px rgba(13,110,253,0.12);
}

.location-option-art {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
  overflow: hidden;
}

.location-option-art img {
  display: block;
  width: 104px;
  height: auto;
}

.location-option-art img.mirror {
  transform: scaleX(-1);
}

.location-option-label {
  display: block;
  font-size: 0.82rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--gray-800);
}

.location-option-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
  justify-items: center;
}

.location-option-single {
  position: relative;
  text-align: left;
  padding-right: 44px;
}

.location-option-single-included {
  padding-right: 132px;
}

.location-option-clear {
  position: absolute;
  top: 10px;
  right: 10px;
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  cursor: pointer;
  padding: 0 9px;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.location-option-clear svg {
  width: 14px;
  height: 14px;
}

.location-option-clear-text {
  width: auto;
}

.location-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}

@media(min-width:700px) {
  .location-fields {
    grid-template-columns: minmax(0, 180px) minmax(0, 1fr);
  }
}

.location-card .field-input,
.location-card input,
.location-card textarea {
  width: 100%;
}

.location-card textarea {
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  resize: vertical;
  font-size: 0.875rem;
}

.location-card textarea:focus {
  border-color: var(--emerald-400);
  box-shadow: 0 0 0 3px rgba(13,110,253,0.15);
  outline: none;
}

.location-add-btn {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  background: white;
  color: var(--emerald-700);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}
.location-add-btn svg {
  width: 17px;
  height: 17px;
  overflow: visible;
  flex-shrink: 0;
}

.print-header { display: flex; align-items: center; gap: 10px; }
.print-header-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1;
}
.deal-includes-countdown {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgb(25 179 107 / 27%);
  border: 1px solid rgba(15, 91, 216, 0.16);
  color: #0b2f63;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.deal-includes-countdown span {
  color: #0f5bd8;
  font-variant-numeric: tabular-nums;
}
.deal-includes-countdown .countdown-unit {
  color: #0b2f63;
}
.deal-includes-countdown .deal-includes-countdown-label {
  color: #0b2f63;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-right: 4px;
  text-transform: uppercase;
}

@media(max-width:520px) {
  .deal-includes-countdown {
    font-size: 0.66rem;
    padding: 5px 7px;
  }
  .deal-includes-countdown .deal-includes-countdown-label {
    font-size: 0.6rem;
    margin-right: 2px;
  }
  .deal-includes-countdown .countdown-unit-days::after {
    content: "d";
  }
  .deal-includes-countdown .countdown-unit-hours::after {
    content: "h";
  }
  .deal-includes-countdown .countdown-unit-days,
  .deal-includes-countdown .countdown-unit-hours {
    font-size: 0;
  }
  .deal-includes-countdown .countdown-unit-days::after,
  .deal-includes-countdown .countdown-unit-hours::after {
    font-size: 0.66rem;
  }
}
.deal-includes-countdown.is-expired {
  background: rgba(220, 38, 38, 0.1);
  color: #991b1b;
}
.deal-includes-countdown.is-expired span {
  color: #dc2626;
}
.print-header > svg {
  width: 20px;
  height: 20px;
  overflow: visible;
  flex-shrink: 0;
}
.print-header .badge {
  font-size: 0.7rem; font-weight: 600; background: var(--emerald-100);
  color: var(--emerald-700); padding: 2px 10px; border-radius: 9999px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.print-header .badge.is-hidden {
  display: none;
}
.print-choice-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}
@media(min-width:640px) {
  .print-choice-row {
    grid-template-columns: 1fr 1fr;
  }
}
.print-choice {
  text-align: left;
  border: 1px solid var(--gray-200);
  background: white;
  border-radius: 14px;
  padding: 14px;
  cursor: pointer;
  transition: all 0.18s ease;
}
.print-choice strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-900);
}
.print-choice span {
  display: block;
  margin-top: 3px;
  font-size: 0.76rem;
  color: var(--gray-500);
  line-height: 1.35;
}
.print-choice.active {
  border-color: var(--emerald-500);
  box-shadow: 0 0 0 3px rgba(13,110,253,0.12);
  background: #f8fbff;
}
.print-choice-art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(235,242,255,0.9));
  margin-bottom: 10px;
}

.print-choice-art img {
  width: 54px;
  height: auto;
  display: block;
}

.print-choice-meta {
  margin-top: 6px;
  font-size: 0.72rem;
  color: var(--gray-500);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.print-add-location-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 91, 216, 0.26);
  background: rgba(255,255,255,0.78);
  color: #0f5bd8;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.print-add-location-btn svg {
  width: 16px;
  height: 16px;
}
.print-add-location-btn:hover {
  border-color: rgba(15, 91, 216, 0.46);
  background: white;
  transform: translateY(-1px);
}
.print-box {
  background: linear-gradient(160deg, rgba(222, 238, 255, 0.98), rgba(241, 247, 255, 0.98));
  border: 2px solid #62d38e;
  border-radius: 18px;
  padding: 20px;
  margin-top: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), 0 14px 28px rgba(13,110,253,0.1);
}
.print-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media(min-width:640px) { .print-grid { grid-template-columns: repeat(3, 1fr); } }
.print-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(159, 197, 255, 0.5);
  position: relative;
}

button.print-item {
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

button.print-item:hover {
  border-color: rgba(13,110,253,0.52);
  box-shadow: 0 12px 22px rgba(13,110,253,0.12);
  transform: translateY(-1px);
}

.print-item-change {
  position: absolute;
  right: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(11, 47, 99, 0.08);
  color: var(--emerald-700);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}

.print-item-change.is-hidden {
  display: none;
}

button.print-item:hover .print-item-change,
button.print-item:focus-visible .print-item-change {
  opacity: 1;
  transform: translateY(0);
}

button.print-item:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(13,110,253,0.2);
}
.print-item .label { font-size: 0.75rem; color: var(--emerald-600); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.print-item .value { font-size: 0.875rem; font-weight: 600; color: var(--gray-900); }
.print-item.is-hidden {
  display: none;
}
.print-customizer {
  margin-top: 16px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(159, 197, 255, 0.6);
}

.print-customizer[hidden] {
  display: none;
}

.print-customizer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.print-customizer-title {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--gray-900);
}

.print-customizer-copy {
  font-size: 0.76rem;
  color: var(--gray-500);
}

.print-customizer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  background: white;
  cursor: pointer;
}

.print-customizer-close svg {
  width: 16px;
  height: 16px;
}

.print-adjust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

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

.print-adjust-option {
  appearance: none;
  border: 1px solid var(--gray-200);
  background: white;
  border-radius: 14px;
  padding: 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.18s ease;
}

.print-adjust-option:hover {
  border-color: var(--emerald-300);
  transform: translateY(-1px);
}

.print-adjust-option.active {
  border-color: var(--emerald-500);
  background: #f8fbff;
  box-shadow: 0 0 0 3px rgba(13,110,253,0.12);
}

.print-adjust-option strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-900);
}

.print-adjust-option span {
  display: block;
  margin-top: 4px;
  font-size: 0.76rem;
  color: var(--gray-500);
  line-height: 1.35;
}

.print-custom-size-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.print-custom-size-fields .field-label {
  margin-bottom: 6px;
}

.print-custom-size-note {
  margin-top: 8px;
  font-size: 0.76rem;
  color: var(--gray-500);
}
.print-note {
  margin-top: 14px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(11,60,131,0.9);
  font-weight: 600;
}

.addons-list { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.addon-card {
  border-radius: 16px; border: 2px solid var(--gray-200); background: white;
  overflow: visible; transition: all 0.2s;
}
.addon-card:hover { border-color: var(--gray-300); }
.addon-card.active { border-color: var(--emerald-400); background: rgba(239,245,255,0.9); }
.addon-toggle {
  width: 100%; display: flex; align-items: center; gap: 16px;
  padding: 16px; text-align: left; background: none; border: none; cursor: pointer;
}
.addon-icon {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
  background: var(--gray-100); color: var(--gray-500); overflow: visible;
}
.addon-card.active .addon-icon { background: var(--emerald-500); color: white; }
.addon-icon svg { width: 20px; height: 20px; }
.addon-info { flex: 1; min-width: 0; }
.addon-title-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.addon-title { font-size: 0.875rem; font-weight: 600; color: var(--gray-900); }
.addon-price {
  font-size: 0.75rem; font-weight: 600; padding: 2px 8px; border-radius: 9999px;
}
.addon-price.paid { background: var(--gray-100); color: var(--gray-600); }
.addon-price.free { background: var(--emerald-100); color: var(--emerald-700); }
.addon-desc { font-size: 0.75rem; color: var(--gray-500); margin-top: 2px; }
.toggle-track {
  width: 44px; height: 24px; border-radius: 9999px; padding: 2px;
  flex-shrink: 0; transition: background 0.2s; background: var(--gray-300);
}
.addon-card.active .toggle-track { background: var(--emerald-500); }
.toggle-thumb {
  width: 20px; height: 20px; background: white; border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15); transition: transform 0.2s;
}
.addon-card.active .toggle-thumb { transform: translateX(20px); }
.addon-details { padding: 0 16px 16px; }
.addon-details .field-input { margin-top: 8px; }
.addon-details select {
  width: 100%; appearance: none; padding: 10px 16px; background: white;
  border: 1px solid var(--gray-200); border-radius: 12px; font-size: 0.875rem;
  color: var(--gray-900); outline: none; transition: all 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.addon-details select:focus { border-color: var(--emerald-400); box-shadow: 0 0 0 3px rgba(13,110,253,0.15); }
.addon-details textarea {
  width: 100%; padding: 10px 16px; background: white;
  border: 1px solid var(--gray-200); border-radius: 12px; font-size: 0.875rem;
  color: var(--gray-900); outline: none; resize: none; transition: all 0.2s;
  margin-top: 8px;
}
.addon-details textarea:focus { border-color: var(--emerald-400); box-shadow: 0 0 0 3px rgba(13,110,253,0.15); }
.addon-warning { font-size: 0.75rem; color: var(--amber-700); margin-top: 6px; }

.style-change-helper {
  color: var(--gray-600);
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
.style-change-helper a {
  color: #0f5bd8;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rush-details {
  display: grid;
  gap: 10px;
}
.rush-choice-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media(min-width:640px) {
  .rush-choice-row {
    grid-template-columns: 1fr 1fr;
  }
}
.rush-confirm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  background: #0f5bd8;
  color: white;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}
.rush-decline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: white;
  color: var(--gray-700);
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}
.rush-confirm-btn.active,
.rush-decline-btn.active {
  box-shadow: 0 0 0 3px rgba(25, 179, 107, 0.16);
  border-color: #19b36b;
}
.rush-selected {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(25, 179, 107, 0.14);
  color: #10643f;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.drop-zone {
  border: 2px dashed var(--gray-300); border-radius: 16px; padding: 32px;
  text-align: center; cursor: pointer; transition: all 0.2s; margin-top: 16px;
  background: rgba(249,250,251,0.5);
}
.drop-zone:hover { border-color: var(--gray-400); background: var(--gray-50); }
.drop-zone.dragging { border-color: var(--emerald-400); background: var(--emerald-50); }
.drop-zone svg { margin: 0 auto 12px; }
.drop-zone .dz-text { font-size: 0.875rem; font-weight: 500; color: var(--gray-700); }
.drop-zone .dz-text span { color: var(--emerald-600); text-decoration: underline; text-underline-offset: 2px; }
.drop-zone .dz-formats { font-size: 0.75rem; color: var(--gray-500); margin-top: 4px; line-height: 1.55; max-width: 620px; margin-left: auto; margin-right: auto; }
.drop-zone .dz-file-limit { font-size: 0.75rem; color: var(--blue-700); font-weight: 700; margin-top: 8px; }

.file-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.file-item {
  display: flex; flex-direction: column; gap: 8px; background: var(--gray-50);
  border: 1px solid var(--gray-200); border-radius: 14px; padding: 10px;
  position: relative; overflow: visible; min-height: 152px;
}
.file-thumb {
  height: 82px;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
}
.file-thumb-preview {
  width: 100%;
  height: 100%;
  border-radius: 9px;
  object-fit: cover;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  transform-origin: center center;
  background: white;
}
.file-thumb iframe.file-thumb-preview,
.file-thumb object.file-thumb-preview {
  border: 0;
}
.file-thumb:hover img.file-thumb-preview {
  transform: scale(2.2);
  box-shadow: 0 18px 34px rgba(6,18,42,0.22);
  position: relative;
  z-index: 24;
}
.file-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  height: 100%;
  color: var(--emerald-700);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.file-fallback svg {
  width: 28px;
  height: 28px;
}
.file-item .file-info { flex: 1; min-width: 0; }
.file-item .file-name {
  font-size: 0.75rem; font-weight: 600; color: var(--gray-800);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.file-item .file-size { font-size: 0.75rem; color: var(--gray-400); }
.file-item .btn-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--gray-200);
  z-index: 18;
}

.design-help-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid rgba(157, 216, 180, 0.8);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(232,255,240,0.62), rgba(248,251,255,0.92));
}
.design-help-avatar {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid white;
  box-shadow: 0 8px 18px rgba(6,18,42,0.14);
}
.custom-check {
  width: 20px; height: 20px; border-radius: 6px; border: 2px solid var(--gray-300);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all 0.2s;
}
.custom-check.checked { background: var(--emerald-500); border-color: var(--emerald-500); }
.custom-check svg { width: 11px; height: 11px; color: white; overflow: visible; }
.design-help-label .label-text { font-size: 0.9rem; font-weight: 700; color: var(--gray-900); }
.design-help-label .label-sub { font-size: 0.76rem; color: var(--gray-600); display: block; margin-top: 3px; line-height: 1.45; }

.notes-area {
  width: 100%; padding: 12px 16px; background: var(--gray-50);
  border: 1px solid var(--gray-200); border-radius: 12px; font-size: 0.875rem;
  color: var(--gray-900); outline: none; resize: none; transition: all 0.2s;
}
.notes-area::placeholder { color: var(--gray-400); }
.notes-area:focus { border-color: var(--emerald-400); box-shadow: 0 0 0 3px rgba(13,110,253,0.15); }

.summary-col { display: none; }
@media(min-width:1024px) {
  .summary-col {
    display: block;
    align-self: start;
    position: sticky;
    top: 32px;
  }
}
.summary-sticky { position: static; }

@media(max-width:1023px) {
  .summary-col.mobile-summary-open {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 2147483002;
    padding: 18px 14px 104px;
    background: rgba(6, 18, 42, 0.58);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .summary-col.mobile-summary-open .summary-sticky {
    max-width: 520px;
    margin: auto auto 0;
  }
  .summary-col.mobile-summary-open .summary-card {
    border-radius: 24px 24px 18px 18px;
    box-shadow: 0 24px 70px rgba(6,18,42,0.28);
  }
  .summary-col.mobile-summary-open .summary-notes {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.94);
  }
  .summary-col.mobile-summary-open .mobile-summary-close {
    display: inline-flex;
  }
  body.mobile-summary-is-open {
    overflow: hidden;
  }
}
.summary-card {
  background: white; border-radius: 16px; border: 1px solid var(--gray-200);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05); padding: 24px;
  width: 100%;
}
.summary-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; border-bottom: 1px solid var(--gray-100);
}
.summary-header-left { display: flex; align-items: center; gap: 8px; }
.summary-header-left svg { color: var(--emerald-600); }
.summary-header-left span { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); }
.mobile-summary-close {
  display: none;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  padding: 0;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: white;
  color: var(--gray-700);
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
  appearance: none;
}
.mobile-summary-close svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
}
.summary-lines { padding: 16px 0; }
.summary-line {
  display: flex; justify-content: space-between; font-size: 0.875rem; padding: 4px 0;
}
.summary-line .label { color: var(--gray-600); }
.summary-line .amount { font-weight: 500; color: var(--gray-900); }
.summary-total {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 2px solid var(--gray-200);
}
.summary-total .label { font-weight: 600; color: var(--gray-900); }
.summary-total .amount { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); }
.summary-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.summary-swatch-chip {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  position: relative;
  background: white;
  box-shadow: 0 8px 18px rgba(6,18,42,0.08);
}
.summary-swatch-chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.summary-swatch-chip-count {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: inherit;
  background: transparent;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 1px 5px rgba(0,0,0,0.82);
}
.btn-checkout {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--emerald-500); color: white; font-weight: 700;
  padding: 14px; border-radius: 12px; border: none; cursor: pointer;
  transition: all 0.2s; margin-top: 24px; font-size: 1rem;
}
.btn-checkout:hover:not(:disabled) {
  background: var(--emerald-600); box-shadow: 0 8px 25px rgba(13,110,253,0.24);
  transform: translateY(-2px);
}
.btn-checkout:disabled { background: var(--gray-300); cursor: not-allowed; }
.btn-checkout svg,
.btn-checkout-mobile svg { width: 16px; height: 16px; overflow: visible; flex-shrink: 0; }
.summary-notes {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 10px;
}
.summary-note { display: flex; align-items: flex-start; gap: 10px; }
.summary-note svg { color: var(--emerald-500); flex-shrink: 0; margin-top: 1px; width: 18px; height: 18px; }
.summary-note p { font-size: 0.75rem; color: var(--gray-600); }
.summary-note-copy {
  padding: 6px 2px;
  margin-bottom: 0rem;
}
.summary-note.is-urgent svg { color: #ff6b57; }
.summary-note.is-expired svg { color: #cf3e36; }
.summary-note.is-expired p { color: #8d2d28; font-weight: 700; }
.submit-feedback {
  margin-top: 14px;
  border-radius: 16px;
  padding: 14px 16px;
  background: #eef9f1;
  border: 1px solid #b7e3c1;
  display: none;
  gap: 10px;
  align-items: flex-start;
}
.submit-feedback.show { display: flex; }
.submit-feedback.is-error {
  background: #fff3f0;
  border-color: #ffc2b8;
}
.submit-feedback svg {
  width: 18px;
  height: 18px;
  color: #239c53;
  flex-shrink: 0;
  margin-top: 2px;
}
.submit-feedback strong {
  display: block;
  color: #155b34;
  font-size: 0.92rem;
}
.submit-feedback p {
  margin-top: 4px;
  color: #2b5d3d;
  font-size: 0.8rem;
  line-height: 1.45;
}

.submit-feedback.is-error svg {
  color: #dc2626;
}
.submit-feedback.is-error strong {
  color: #991b1b;
}
.submit-feedback.is-error p {
  color: #7f1d1d;
}

.special-confirmation-page {
  background: linear-gradient(180deg, #edf5ff 0%, #f7fbff 100%);
  min-height: calc(100vh - 120px);
  padding: 42px 16px 72px;
}
.special-confirmation-shell {
  max-width: 1120px;
  margin: 0 auto;
}
.special-confirmation-top {
  background: white;
  border: 1px solid rgba(159,197,255,0.9);
  border-radius: 24px;
  padding: 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), 0 10px 30px rgba(13,110,253,0.08);
}
.special-confirmation-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e9f8ee;
  color: #177745;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.special-confirmation-top h1 {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  color: var(--gray-900);
}
.special-confirmation-top p {
  margin-top: 14px;
  max-width: 760px;
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.65;
}
.special-confirmation-highlight {
  margin-top: 18px;
  background: linear-gradient(135deg, #0b2f63 0%, #1b63d6 100%);
  color: white;
  border-radius: 22px;
  padding: 20px 22px;
  box-shadow: 0 14px 34px rgba(11,47,99,0.18);
}
.special-confirmation-highlight strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}
.special-confirmation-highlight span {
  display: block;
  margin-top: 8px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}
.special-confirmation-grid {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}
.special-confirmation-card {
  background: white;
  border: 1px solid rgba(159,197,255,0.82);
  border-radius: 20px;
  padding: 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), 0 10px 30px rgba(13,110,253,0.06);
}
.special-confirmation-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 14px;
}
.special-confirmation-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.special-confirmation-card li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 10px;
}
.special-confirmation-card li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.special-confirmation-card li strong {
  color: var(--gray-900);
  font-weight: 700;
}
.special-confirmation-card li span {
  text-align: right;
}
.special-confirmation-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.65;
}
.special-confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
@media(min-width: 900px) {
  .special-confirmation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.summary-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
  max-height: 218px;
  overflow-y: auto;
  padding-right: 4px;
}

.summary-preview-card {
  border-radius: 14px;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  overflow: hidden;
}

.summary-preview-chip {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid white;
  box-shadow: 0 3px 10px rgba(6,18,42,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.summary-preview-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(7,23,46,0.86);
  color: white;
  font-size: 0.62rem;
  font-weight: 800;
}

.summary-preview-visual {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: linear-gradient(180deg, rgba(13,110,253,0.08), rgba(255,255,255,0.94));
}

.summary-preview-visual img {
  width: 100%;
  max-width: 56px;
  filter: var(--shirt-filter);
}

.summary-preview-meta {
  padding: 10px 12px;
}

.summary-preview-meta strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gray-900);
}

.summary-preview-meta span {
  display: block;
  margin-top: 2px;
  font-size: 0.7rem;
  color: var(--gray-500);
}

.mobile-bar {
  display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 2147483001;
  background: white; border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08); padding: 12px 16px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.mobile-bar.is-hidden-at-footer {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 18px));
}
@media(min-width:1024px) { .mobile-bar { display: none; } }
.mobile-bar-inner { display: flex; align-items: center; gap: 16px; }
.mobile-bar .bar-total {
  flex: 1;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.mobile-bar .bar-label { font-size: 0.75rem; color: var(--emerald-700); font-weight: 800; }
.mobile-bar .bar-amount { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); }
.bar-summary-hint {
  display: block;
  margin-top: 2px;
  color: #0f5bd8;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn-checkout-mobile {
  display: flex; align-items: center; gap: 8px;
  background: var(--emerald-500); color: white; font-weight: 700;
  padding: 12px 18px; border-radius: 12px; border: none; cursor: pointer;
  transition: all 0.2s; font-size: 1rem;
}
.btn-checkout-mobile:hover:not(:disabled) { background: var(--emerald-600); }
.btn-checkout-mobile:disabled { background: var(--gray-300); cursor: not-allowed; }

.proof-note-mobile {
  display: block; background: var(--emerald-50); border: 1px solid var(--emerald-200);
  border-radius: 16px; padding: 20px; text-align: center; margin-top: 32px;
}
@media(min-width:1024px) { .proof-note-mobile { display: none; } }
.proof-note-mobile p { font-size: 0.875rem; color: var(--emerald-700); font-weight: 500; }

.mobile-spacer { height: 96px; }
@media(min-width:1024px) { .mobile-spacer { display: none; } }

@media(max-width:1023px) {
  body.special-tshirt-offer .redcore-chat-model,
  body.special-tshirt-offer #support-messages,
  body.special-tshirt-offer .intercom-lightweight-app-launcher,
  body.special-tshirt-offer .intercom-launcher,
  body.special-tshirt-offer iframe[name*="intercom-launcher"] {
    bottom: 96px !important;
    right: 14px !important;
  }
}

.notes-header { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.notes-header svg {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  overflow: visible;
  flex-shrink: 0;
  display: block;
}

.site-footer {
  margin-top: auto;
  background: linear-gradient(160deg, #07172e 0%, #0e2342 54%, #13396b 100%);
  color: rgba(255,255,255,0.82);
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(4, 12, 24, 0.76);
}

.auth-modal.open {
  display: flex;
}

.auth-modal-panel {
  width: min(100%, 980px);
  height: min(88vh, 860px);
  border-radius: 24px;
  overflow: hidden;
  background: white;
  box-shadow: 0 28px 80px rgba(4, 12, 24, 0.45);
  position: relative;
}

.auth-modal-top {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: #07172e;
  color: white;
}

.auth-modal-top strong {
  font-size: 0.95rem;
}

.auth-modal-close {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: white;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
  appearance: none;
  flex: 0 0 40px;
}

.auth-modal-close svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  flex: 0 0 18px;
}

.auth-modal-frame {
  width: 100%;
  height: calc(100% - 60px);
  border: 0;
  background: white;
}

.examples-modal {
  position: fixed;
  inset: 0;
  z-index: 118;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(4, 12, 24, 0.76);
}

.examples-modal.open {
  display: flex;
}

.examples-modal-panel {
  width: min(100%, 900px);
  max-height: 88vh;
  overflow: auto;
  border-radius: 24px;
  background: white;
  box-shadow: 0 28px 80px rgba(4, 12, 24, 0.45);
}

.examples-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--gray-200);
}

.examples-modal-top h3 {
  font-size: 1.05rem;
}

.examples-modal-body {
  padding: 20px;
}

.idea-board-modal-copy {
  font-size: 0.84rem;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.idea-board-modal-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 280px);
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 8px;
  overscroll-behavior-x: contain;
  scroll-behavior: auto;
  scrollbar-width: thin;
}

.idea-board-modal-slider::-webkit-scrollbar {
  height: 8px;
}

.idea-board-modal-slider::-webkit-scrollbar-thumb {
  background: rgba(11,47,99,0.18);
  border-radius: 999px;
}

.idea-board-modal-card {
  position: relative;
  display: block;
  padding: 0;
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  overflow: hidden;
  background: var(--gray-50);
  box-shadow: 0 12px 24px rgba(6,18,42,0.06);
  text-decoration: none;
  cursor: pointer;
  aspect-ratio: 9 / 16;
}

.idea-board-modal-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.idea-board-modal-card:hover img {
  transform: scale(1.03);
}

.idea-board-modal-card::after {
  content: "Preview";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  text-align: center;
  background: rgba(7, 23, 46, 0.72);
  color: white;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.idea-board-modal-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.examples-lightbox {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 10, 22, 0.86);
}

.examples-lightbox.open {
  display: flex;
}

.examples-lightbox img {
  display: block;
  max-width: min(92vw, 980px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 22px;
  background: white;
  box-shadow: 0 34px 90px rgba(0,0,0,0.48);
}

.examples-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  max-width: 42px;
  max-height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  color: #07172e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.24);
  -webkit-appearance: none;
  appearance: none;
  flex: 0 0 42px;
}

.examples-lightbox-close svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  flex: 0 0 20px;
}

.idea-board-modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.idea-board-show-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(11, 94, 215, 0.15);
  background: linear-gradient(135deg, #f7fbff 0%, #dce9ff 100%);
  color: #0b2f63;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(13,110,253,0.12);
}

.idea-board-show-more[disabled] {
  opacity: 0.55;
  cursor: wait;
}

.idea-board-status {
  font-size: 0.76rem;
  color: var(--gray-500);
}

@media(max-width:767px) {
  .idea-board-modal-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .idea-board-show-more {
    width: 100%;
  }
}


.site-footer-surface {
  padding: 32px 0 20px;
}

.site-footer-grid {
  display: grid;
  gap: 18px;
}

.site-footer-card h4 {
  margin: 0 0 12px;
  color: white;
}

.site-footer-card p,
.site-footer-card a,
.site-footer-card small {
  color: rgba(255,255,255,0.76);
  text-decoration: none;
}

.site-footer-logo {
  width: 168px;
  margin-bottom: 12px;
}

.site-footer-links {
  display: grid;
  gap: 10px;
}

.site-footer-bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
}

@media (min-width: 900px) {
  .site-footer-grid {
    grid-template-columns: 1.1fr 0.8fr 0.9fr;
  }

  .site-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

}
