:root {
  --bg: #f4f7fb;
  --bg-soft: #eef4ff;
  --bg-deep: #0f172a;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-tint: rgba(248, 251, 255, 0.88);
  --line: #e4eaf3;
  --line-strong: #d9e3f0;
  --text: #172033;
  --muted: #6f7b91;
  --muted-strong: #44526a;
  --primary: #3559e6;
  --primary-2: #5d3df2;
  --accent: #14b8c8;
  --success: #0f9f6e;
  --warning: #f59e0b;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 18px 48px rgba(18, 33, 68, 0.1);
  --shadow-soft: 0 10px 24px rgba(18, 33, 68, 0.07);
  --content-width: 1460px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(53, 89, 230, 0.14), transparent 28%),
    radial-gradient(circle at right center, rgba(20, 184, 200, 0.11), transparent 20%),
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.8), transparent 32%),
    linear-gradient(180deg, #f9fbff, #eef4ff 58%, #f5f8fc);
}

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

button,
input,
select {
  font: inherit;
}

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

.page-shell {
  min-height: 100vh;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-icon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2), var(--accent));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 18px 28px rgba(53, 89, 230, 0.22);
}

.brand-title {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: var(--muted);
}

.top-actions,
.filters,
.view-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.badge,
.stat-badge,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.tag {
  background: #fff5d9;
  color: #8a5a00;
}

.button,
.ghost,
.outline,
.primary,
.pill {
  border-radius: 16px;
  border: 0;
  cursor: pointer;
  transition: 0.18s ease;
}

.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2), var(--accent));
  color: white;
  padding: 12px 18px;
  font-weight: 700;
  box-shadow: 0 12px 22px rgba(53, 89, 230, 0.22);
}

.primary:hover {
  transform: translateY(-1px);
}

.ghost,
.outline {
  background: white;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 11px 14px;
}

.ghost:hover,
.outline:hover {
  background: #f7faff;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #0f172a;
  color: white;
}

.pill .count {
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: white;
  color: #0f172a;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  padding: 0 6px;
}

.section {
  padding: 24px 0;
}

.card {
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 24px;
  align-items: stretch;
}

.hero-copy {
  padding: 38px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(93, 61, 242, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.94));
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(53, 89, 230, 0.16), rgba(20, 184, 200, 0.02) 68%, transparent 72%);
  pointer-events: none;
}

.hero-copy h2 {
  margin: 18px 0 12px;
  font-size: clamp(38px, 6vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  max-width: 760px;
}

.features,
.info-grid,
.feature-grid,
.metrics-grid,
.admin-cards,
.quick-grid {
  display: grid;
  gap: 12px;
}

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

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

.admin-cards {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.feature,
.info-box,
.quick-card {
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfdff, #f3f8ff);
  border: 1px solid #edf2fb;
  color: #334155;
}

.login-card {
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 255, 0.96));
}

.login-grid {
  display: block;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(53, 89, 230, 0.12), transparent 26%),
    linear-gradient(135deg, #f7faff, #eef4ff);
  padding: 14px;
}

.login-stage {
  padding-top: 12px;
  min-height: calc(100vh - 130px);
  display: grid;
  align-items: center;
}

.login-stage-shell {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.public-code-entry-card {
  padding: clamp(16px, 3vw, 28px);
}

.public-code-entry-grid {
  background:
    radial-gradient(circle at 12% 0%, rgba(23, 180, 212, 0.12), transparent 34%),
    radial-gradient(circle at 100% 14%, rgba(53, 89, 230, 0.14), transparent 32%),
    linear-gradient(145deg, #f9fbff, #eef4ff);
  padding: clamp(12px, 2vw, 18px);
}

.public-code-entry-box {
  padding: clamp(18px, 4vw, 34px);
}

.public-code-entry {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.public-code-entry-head {
  justify-items: center;
}

.public-code-entry-head h2 {
  margin: 0;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.public-code-entry-head p,
.public-code-entry-help {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
}

.public-code-entry-notice {
  margin-top: 2px;
  text-align: left;
  line-height: 1.55;
}

.public-code-entry-secondary {
  margin-top: 4px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(248, 251, 255, 0.82);
  border: 1px solid rgba(217, 227, 240, 0.88);
  text-align: left;
}

.qr-box {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.98));
  padding: 14px;
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
}

.login-card-centered {
  box-shadow: 0 24px 54px rgba(18, 33, 68, 0.1);
}

.login-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.login-trust-item {
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.96));
  border: 1px solid #e5ecfb;
}

.login-trust-item strong {
  display: block;
  font-size: 17px;
}

.login-trust-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
}

.login-entry-layout {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 12px;
  align-items: start;
}

.login-side-panel {
  display: grid;
  gap: 10px;
}

.login-side-hero {
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f172a, #1d2b48);
  color: white;
  box-shadow: 0 18px 30px rgba(18, 33, 68, 0.14);
  text-align: center;
  display: grid;
  gap: 6px;
  justify-items: center;
}

.login-side-hero-wide {
  margin-bottom: 2px;
}

.login-side-hero .micro {
  color: rgba(255, 255, 255, 0.74);
}

.login-side-item {
  padding: 14px 15px;
  border-radius: 15px;
  background: linear-gradient(180deg, #fbfdff, #f4f8ff);
  border: 1px solid #e5ecfb;
  display: grid;
  align-content: center;
}

.login-side-item strong {
  display: block;
  margin-bottom: 4px;
}

.login-side-item-primary {
  min-height: 148px;
}

.login-side-item-guard {
  min-height: 220px;
}

.stack {
  display: grid;
  gap: 12px;
}

.input,
.select,
.search {
  width: 100%;
  border: 1px solid var(--line);
  background: white;
  border-radius: 18px;
  padding: 14px 15px;
  color: var(--text);
  outline: none;
}

.input:focus,
.select:focus,
.search:focus {
  border-color: #9fb3ff;
  box-shadow: 0 0 0 4px rgba(53, 89, 230, 0.08);
}

.hint,
.micro,
.subtle {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.progress-wrap,
.toolbar,
.panel-head,
.cart-head,
.page-head,
.row-between,
.table-row,
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.progress-wrap,
.toolbar,
.panel-head {
  padding: 22px 24px;
}

.steps {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: white;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.step .n {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #edf2fb;
  color: #5671c8;
  font-size: 12px;
  font-weight: 800;
}

.step.active {
  background: linear-gradient(135deg, #eef4ff, #f5f2ff);
  color: #1e2d54;
  border-color: #cddbff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.step.active .n {
  background: var(--primary);
  color: white;
}

.content-grid,
.checkout-grid,
.gallery-layout,
.admin-layout {
  display: grid;
  gap: 22px;
}

.content-grid,
.checkout-grid {
  grid-template-columns: 1fr 390px;
}

.gallery-layout {
  grid-template-columns: 1fr 360px;
}

.admin-layout {
  grid-template-columns: 280px 1fr;
  align-items: start;
}

.left-col,
.checkout-left {
  display: grid;
  gap: 22px;
}

.sticky {
  position: sticky;
  top: 102px;
}

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

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 24px 24px;
}

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

.photo-card,
.package-card,
.list-card,
.cart-item,
.review,
.admin-row,
.profile-card,
.lab-card,
.qr-card,
.modal-product,
.metric-card,
.chart-card {
  border: 1px solid #ecf1f8;
  background: white;
  border-radius: 24px;
}

.photo-card {
  overflow: hidden;
  transition: 0.18s ease;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
}

.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(18, 33, 68, 0.12);
}

.photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #dbe5f3;
}

.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-label,
.status-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.76);
  color: white;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.status-pill {
  position: static;
  background: linear-gradient(180deg, #eef4ff, #f5f2ff);
  color: #3559e6;
  border: 1px solid rgba(53, 89, 230, 0.12);
  font-size: 12px;
}

.photo-body,
.package-body,
.cart-card,
.checkout-box,
.profile-body,
.lab-body,
.qr-body,
.metric-body,
.chart-body,
.sidebar-card {
  padding: 18px;
}

.photo-title,
.panel-head h3,
.panel-head h4,
.cart-head h4,
.page-head h2,
.checkout-box h4,
.package-card h4 {
  margin: 0;
}

.photo-title {
  font-size: 22px;
  letter-spacing: -0.03em;
}

.photo-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.photo-sub {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.photo-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.gallery-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0 24px 24px;
}

.gallery-hero {
  padding: 22px 24px 24px;
  margin-bottom: 18px;
  background:
    radial-gradient(circle at top right, rgba(53, 89, 230, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.96));
}

.gallery-hero-copy h3 {
  margin: 14px 0 6px;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.gallery-hero-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
}

.gallery-overview-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
}

.parent-hero {
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(53, 89, 230, 0.1), transparent 24%),
    radial-gradient(circle at bottom left, rgba(20, 184, 200, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.96));
}

.parent-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.parent-hero-copy h3 {
  margin: 14px 0 10px;
  font-size: 50px;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.parent-hero-copy p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.hero-meta-row,
.hero-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-meta-row {
  margin-top: 18px;
}

.hero-cta-row {
  margin-top: 20px;
}

.hero-visual-card {
  position: relative;
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  background: #dbe5f3;
  box-shadow: 0 18px 34px rgba(18, 33, 68, 0.12);
}

.hero-visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.78);
  color: white;
  backdrop-filter: blur(10px);
}

.hero-visual-overlay strong {
  font-size: 24px;
  letter-spacing: -0.03em;
}

.hero-visual-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.sales-offer-card {
  padding: 22px;
  border-radius: 28px;
  border: 1px solid #e5ecfb;
  background: white;
  box-shadow: 0 14px 28px rgba(18, 33, 68, 0.08);
}

.sales-offer-card.strong {
  background: linear-gradient(135deg, #172541, #2549a2 58%, #23c0d7);
  color: white;
  border-color: transparent;
}

.sales-offer-card.package {
  background: linear-gradient(180deg, #eef4ff, #ffffff);
  border-color: #c9d9ff;
}

.sales-offer-card.soft {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.sales-offer-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.offer-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sales-offer-card.package .offer-kicker,
.sales-offer-card.soft .offer-kicker {
  background: #fff4d8;
  border-color: #efdf9c;
  color: #7a5a00;
}

.sales-offer-price {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.sales-offer-card h4 {
  margin: 14px 0 8px;
  font-size: 30px;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.sales-offer-card p {
  margin: 0;
  min-height: 74px;
  color: inherit;
  opacity: 0.9;
  line-height: 1.55;
}

.sales-offer-meta {
  margin: 14px 0 16px;
  color: inherit;
  opacity: 0.76;
  font-size: 13px;
  font-weight: 700;
}

.btn-white-action {
  width: 100%;
  border: 0;
  min-height: 52px;
  border-radius: 18px;
  background: white;
  color: #172541;
  font-weight: 900;
  cursor: pointer;
}

.folder-section {
  padding-bottom: 24px;
}

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

.child-folder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 24px;
}

.folder-card {
  padding: 18px;
  border-radius: 28px;
  border: 1px solid #e5ecfb;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
  box-shadow: 0 12px 24px rgba(18, 33, 68, 0.06);
}

.folder-card.active {
  border-color: #a9c2ff;
  box-shadow: 0 18px 30px rgba(53, 89, 230, 0.12);
  background: linear-gradient(180deg, #eef4ff, #ffffff);
}

.child-folder-card {
  padding: 18px;
  border-radius: 28px;
  border: 1px solid #e5ecfb;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
  box-shadow: 0 12px 24px rgba(18, 33, 68, 0.06);
}

.child-folder-card.active {
  border-color: #a9c2ff;
  box-shadow: 0 18px 30px rgba(53, 89, 230, 0.12);
  background: linear-gradient(180deg, #eef4ff, #ffffff);
}

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

.folder-head h5 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.folder-head p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.folder-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f5f8ff;
  border: 1px solid #dfe8fb;
  font-weight: 900;
}

.child-folder-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.child-folder-head h5 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.child-folder-head p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.folder-preview-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.folder-preview-tile {
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #dbe5f3;
}

.folder-preview-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 24px 24px;
  flex-wrap: wrap;
}

.gallery-toolbar-copy {
  display: grid;
  gap: 4px;
}

.gallery-toolbar-copy strong {
  font-size: 18px;
}

.gallery-toolbar-copy span {
  color: var(--muted);
  font-size: 14px;
}

.gallery-toolbar-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.overview-tile {
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fbfdff, #f4f8ff);
  border: 1px solid #e6eefb;
}

.overview-tile strong {
  display: block;
  font-size: 24px;
  margin-bottom: 4px;
}

.mini-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f5f8ff;
  border: 1px solid #e5ecfb;
  color: #4b5d7c;
  font-size: 12px;
  font-weight: 700;
}

.mini-chip.emphasis {
  background: linear-gradient(180deg, #eef4ff, #e7f8ff);
  color: #2a469f;
}

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

.photo-fact {
  padding: 10px 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fbfdff, #f4f8ff);
  border: 1px solid #e7eefc;
}

.photo-fact strong {
  display: block;
  margin-top: 4px;
  font-size: 15px;
}

.price-row,
.sum-row,
.list-meta,
.cart-line,
.modal-grid,
.profile-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price {
  font-size: 24px;
  font-weight: 900;
}

.price-row.compact .micro {
  color: var(--muted);
}

.price-small {
  font-size: 19px;
  line-height: 1.25;
}

.package-card.recommended {
  outline: 2px solid rgba(53, 89, 230, 0.18);
  background:
    radial-gradient(circle at top right, rgba(20, 184, 200, 0.12), transparent 22%),
    linear-gradient(180deg, #fbfdff, #f4f8ff);
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: grid;
  gap: 8px;
}

.cart-items,
.review-list,
.table-list,
.profile-stack,
.lab-stack,
.qr-stack,
.admin-nav {
  display: grid;
  gap: 12px;
}

.notice {
  background: linear-gradient(180deg, #fbfdff, #f4f8ff);
  border: 1px solid #e8eef9;
  border-radius: 18px;
  padding: 14px;
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.6;
}

.mini-checklist {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.mini-check {
  position: relative;
  padding-left: 20px;
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.5;
}

.mini-check::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1d8f6c;
  font-weight: 800;
}

.summary {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed #d7e0ee;
  display: grid;
  gap: 10px;
}

.sum-row.total {
  font-size: 24px;
  font-weight: 900;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.qty button {
  background: white;
  border: 0;
  padding: 8px 12px;
  cursor: pointer;
}

.qty span {
  padding: 8px 12px;
  min-width: 36px;
  text-align: center;
  font-weight: 800;
}

.checkout-box {
  border: 1px solid #ecf1f8;
  border-radius: 26px;
  background: white;
}

.checkout-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fbfdff, #f4f8ff);
  border: 1px solid #e5ecfb;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.checkout-intro strong {
  display: block;
  font-size: 18px;
}

.checkout-intro span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.checkout-intro-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(53, 89, 230, 0.12), rgba(23, 180, 212, 0.14));
  color: #2a469f;
  font-size: 14px;
  font-weight: 800;
}

.checkout-section {
  border-bottom: 1px solid #ecf1f8;
  padding: 22px;
}

.checkout-section:last-child {
  border-bottom: 0;
}

.checkout-trust {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.trust-item {
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfdff, #f3f8ff);
  border: 1px solid #e6eefb;
}

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

.pay-grid {
  display: grid;
  gap: 12px;
}

.pay-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: white;
  cursor: pointer;
}

.pay-option-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.pay-option-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pay-option-title {
  font-weight: 800;
  color: #111214;
}

.pay-option-sub {
  color: var(--muted);
}

.pay-option-status {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(45, 108, 223, 0.08);
  border: 1px solid rgba(45, 108, 223, 0.14);
  color: #2d6cdf;
  font-size: 12px;
  font-weight: 700;
}

.pay-option.active {
  border-color: #aac0ff;
  background: #f5f8ff;
}

.pay-option.is-disabled {
  cursor: wait;
  opacity: 0.7;
  pointer-events: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid #c4d1ea;
  display: grid;
  place-items: center;
}

.pay-option.active .checkmark {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

.checkout-trust-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.checkout-trust-note.is-ready {
  color: #516079;
}

.checkout-trust-note.is-pending {
  color: #9a6700;
}

.checkout-processing-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  padding: 15px 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(45, 108, 223, 0.1), rgba(23, 180, 212, 0.12));
  border: 1px solid rgba(45, 108, 223, 0.18);
  color: #1d2a44;
}

.checkout-processing-card strong,
.checkout-processing-card span {
  display: block;
}

.checkout-processing-card strong {
  font-size: 14px;
  font-weight: 900;
}

.checkout-processing-card span {
  margin-top: 4px;
  color: #516079;
  font-size: 13px;
  line-height: 1.45;
}

.checkout-processing-spinner {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 3px solid rgba(45, 108, 223, 0.18);
  border-top-color: #2d6cdf;
  animation: checkout-processing-spin 0.8s linear infinite;
}

@keyframes checkout-processing-spin {
  to {
    transform: rotate(360deg);
  }
}

.digital-consent-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(216, 130, 30, 0.24);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 250, 235, 0.94), rgba(255, 247, 237, 0.88));
  color: #4b3a1c;
  font-size: 12px;
  line-height: 1.45;
}

.digital-consent-box input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.digital-consent-box strong {
  display: block;
  color: #1f2937;
  font-size: 13px;
  margin-bottom: 4px;
}

.digital-consent-box em {
  display: block;
  margin-top: 6px;
  color: #7c5b14;
  font-style: normal;
  font-weight: 700;
}

.digital-consent-box-cart {
  margin-top: 14px;
}

.review-compact {
  padding: 12px 14px;
  border-radius: 16px;
}

.success-card {
  padding: 34px 24px 36px;
  text-align: center;
}

.success-icon {
  width: 82px;
  height: 82px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #11b67a, #0f9f6e);
  color: white;
  font-size: 34px;
  margin: 0 auto 18px;
  box-shadow: 0 18px 28px rgba(15, 159, 110, 0.24);
}

.order-confirmation-list {
  display: grid;
  gap: 12px;
}

.order-confirmation-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  padding: 12px;
  border: 1px solid #e1e8f4;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  text-align: left;
}

.order-confirmation-item.no-preview {
  grid-template-columns: minmax(0, 1fr);
}

.order-confirmation-preview {
  position: relative;
  width: 112px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 14px;
  background: #eef3f8;
  border: 1px solid #dbe4f1;
}

.order-confirmation-preview img,
.order-confirmation-mini-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.order-confirmation-copy {
  min-width: 0;
  display: grid;
  gap: 10px;
  align-content: center;
}

.order-confirmation-title-row {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: flex-start;
}

.order-confirmation-title-row span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.order-confirmation-components {
  display: grid;
  gap: 5px;
  color: var(--muted-strong);
  font-size: 12px;
  line-height: 1.35;
}

.order-confirmation-preview-strip {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.order-confirmation-mini-preview {
  width: 52px;
  height: 62px;
  overflow: hidden;
  border-radius: 10px;
  background: #eef3f8;
  border: 1px solid #dbe4f1;
}

@media (max-width: 760px) {
  .order-confirmation-item {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 10px;
  }

  .order-confirmation-preview {
    width: 84px;
  }

  .order-confirmation-title-row {
    display: grid;
  }
}

.page-head {
  margin-bottom: 18px;
}

.admin-summary-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.admin-summary-card {
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.96));
  border: 1px solid #e5ecfb;
}

.admin-summary-card strong {
  display: block;
  font-size: 28px;
  margin-bottom: 4px;
}

.admin-summary-card span {
  color: var(--muted);
  font-size: 14px;
}

.admin-sidebar {
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 248, 255, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.admin-nav button {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 14px 16px;
  border-radius: 18px;
  color: #475569;
  cursor: pointer;
}

.admin-nav button.active {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  box-shadow: var(--shadow-soft);
}

.admin-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.metric-card {
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(53, 89, 230, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
}

.metric-value {
  font-size: 34px;
  font-weight: 900;
  margin-top: 8px;
  letter-spacing: -0.03em;
}

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

.highlight-card {
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0f172a, #1e293b 52%, #26416a);
  color: white;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
}

.highlight-card .micro {
  color: rgba(255, 255, 255, 0.74);
}

.highlight-card strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.admin-sales-command,
.sales-job-board-shell,
.sales-panel {
  margin-top: 22px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
  border: 1px solid #e5ecfb;
  box-shadow: var(--shadow-soft);
}

.sales-command-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.sales-command-head h3,
.sales-panel h3,
.sales-job-head h4 {
  margin: 0;
}

.sales-eyebrow {
  display: block;
  margin-bottom: 6px;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sales-kpi-grid,
.sales-period-grid,
.sales-panel-grid,
.sales-job-board,
.sales-job-stats,
.sales-job-detail {
  display: grid;
  gap: 12px;
}

.sales-kpi-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.sales-period-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
}

.sales-panel-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.sales-kpi-card,
.sales-period-card,
.sales-job-card,
.sales-warning-row {
  border: 1px solid #e4eaf3;
  background: #ffffff;
  border-radius: 18px;
}

.sales-kpi-card {
  min-height: 138px;
  padding: 16px;
  display: grid;
  align-content: space-between;
}

.sales-kpi-card strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.sales-kpi-card span,
.sales-period-metrics span,
.sales-job-stat small,
.sales-job-conversion span,
.sales-compact-list span,
.sales-warning-row span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.sales-kpi-primary {
  background: linear-gradient(135deg, #111827, #1e3a5f);
  color: white;
  border-color: rgba(255, 255, 255, 0.16);
}

.sales-kpi-primary .micro,
.sales-kpi-primary span {
  color: rgba(255, 255, 255, 0.74);
}

.sales-period-card {
  padding: 16px;
}

.sales-period-card .row-between span {
  color: #0f9f6e;
  font-weight: 900;
}

.sales-period-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  margin-top: 12px;
}

.sales-period-metrics b {
  color: var(--text);
}

.sales-funnel {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.sales-funnel-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 54px;
  gap: 12px;
  align-items: center;
}

.sales-funnel-label {
  display: grid;
  gap: 2px;
}

.sales-funnel-label span {
  color: var(--muted);
  font-size: 12px;
}

.sales-funnel-track {
  height: 12px;
  border-radius: 999px;
  background: #edf2f7;
  overflow: hidden;
}

.sales-funnel-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #14b8c8, #0f9f6e);
}

.sales-warning-list,
.sales-compact-list,
.sales-hint-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.sales-warning-row,
.sales-compact-list > div,
.sales-hint-list p {
  padding: 13px 14px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e5ecfb;
}

.sales-warning-row {
  display: grid;
  gap: 4px;
  border-left: 5px solid #94a3b8;
}

.sales-level-good {
  border-left-color: #0f9f6e;
}

.sales-level-warning {
  border-left-color: #f59e0b;
}

.sales-level-danger {
  border-left-color: #dc2626;
}

.sales-job-board {
  margin-top: 14px;
}

.sales-job-board-detailed {
  gap: 16px;
}

.sales-job-card {
  padding: 18px;
  border-left: 6px solid #94a3b8;
}

.sales-job-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.sales-signal {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sales-job-conversion {
  min-width: 116px;
  text-align: right;
}

.sales-job-conversion strong {
  display: block;
  font-size: 24px;
}

.sales-job-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}

.sales-job-stat {
  min-height: 88px;
  padding: 13px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #edf2fb;
}

.sales-job-stat span,
.sales-job-stat small {
  display: block;
}

.sales-job-stat strong {
  display: block;
  margin: 6px 0 3px;
  font-size: 20px;
  line-height: 1.1;
}

.sales-job-detail {
  grid-template-columns: 0.95fr 1.05fr;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #edf2fb;
}

.sales-job-detail p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.sales-mini-timeline {
  height: 92px;
  display: flex;
  align-items: end;
  gap: 5px;
  margin-top: 12px;
  padding: 10px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #edf2fb;
}

.sales-mini-timeline span {
  flex: 1;
  min-width: 5px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, #14b8c8, #2563eb);
}

.sales-compact-list > div {
  display: grid;
  gap: 4px;
}

.sales-hint-list p {
  margin: 0;
  color: #475569;
  line-height: 1.55;
}

.sales-empty {
  padding: 16px;
  color: var(--muted);
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  background: #f8fafc;
}

.chart-box {
  margin-top: 18px;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(20, 184, 200, 0.12), transparent 22%),
    linear-gradient(135deg, #f8fafc, #eef2ff);
}

.bars {
  height: 240px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: end;
}

.bar {
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, var(--accent), var(--primary-2), var(--primary));
}

.days {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.admin-row {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94));
}

.admin-row-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.7fr 0.6fr 0.6fr;
  gap: 12px;
  align-items: center;
}

.admin-row-grid-mail {
  grid-template-columns: 1.1fr 1fr 0.8fr 0.6fr 1.2fr;
}

.profile-card,
.lab-card,
.qr-card {
  padding: 18px;
}

.profile-stack,
.lab-stack,
.qr-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 50;
}

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

.modal {
  width: min(1100px, 100%);
  max-height: min(90vh, 920px);
  overflow: auto;
  background: white;
  border-radius: 34px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.35);
}

.modal-body {
  padding: 24px;
}

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

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

.summary-tile {
  padding: 14px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fbfdff, #f3f8ff);
  border: 1px solid #e6eefb;
}

.summary-tile strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

.summary-tile span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.selection-banner {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0f172a, #1d2b48);
  color: white;
}

.selection-banner .micro {
  color: rgba(255, 255, 255, 0.72);
}

.modal-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.modal-image {
  border-radius: 28px;
  overflow: hidden;
  background: #dbe5f3;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-image-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.modal-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.modal-image-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: white;
  border: 1px solid #dde8fb;
  color: #24418f;
  font-size: 13px;
  font-weight: 700;
}

.modal-image-chip.subtle {
  color: #6980b4;
}

.modal-thumb-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.modal-thumb {
  border: 2px solid transparent;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #dbe5f3;
  cursor: pointer;
}

.modal-thumb.active {
  border-color: #3559e6;
  box-shadow: 0 10px 22px rgba(53, 89, 230, 0.18);
}

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

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

.option-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px;
  cursor: pointer;
}

.option-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.option-kind {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef4ff;
  color: #3559e6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.option-card.active {
  border-color: #9fb3ff;
  background: linear-gradient(180deg, #f6f9ff, #eef4ff);
  box-shadow: 0 10px 20px rgba(53, 89, 230, 0.08);
}

.footer-note {
  padding: 30px 0 40px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.public-shop-legal-footer {
  margin-top: 28px;
  padding: 24px 0 8px;
  border-top: 1px solid rgba(217, 227, 240, 0.9);
  display: grid;
  gap: 14px;
}

.public-shop-legal-heading {
  display: grid;
  gap: 6px;
}

.public-shop-legal-heading strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.public-shop-legal-heading span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.public-shop-legal-links,
.public-legal-inline-links,
.public-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.public-shop-legal-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(200, 214, 235, 0.95);
  background: rgba(255, 255, 255, 0.92);
  color: #1f3354;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.public-shop-legal-link:hover,
.public-shop-legal-link:focus-visible,
.public-shop-legal-link.is-active {
  border-color: rgba(53, 89, 230, 0.32);
  background: rgba(53, 89, 230, 0.08);
  color: #244dd8;
  outline: none;
}

.public-shop-legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 12px;
}

.public-shop-legal-meta a {
  color: inherit;
  text-decoration: none;
}

.public-shop-legal-meta a:hover,
.public-shop-legal-meta a:focus-visible {
  color: #244dd8;
}

.public-legal-inline-note {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(248, 251, 255, 0.96);
  border: 1px solid rgba(219, 228, 241, 0.9);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.public-legal-page-shell {
  padding-top: 30px;
}

.public-legal-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(219, 228, 241, 0.92);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.public-legal-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.public-legal-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(53, 89, 230, 0.08);
  color: #244dd8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.public-legal-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -0.04em;
}

.public-legal-intro {
  margin: 0;
  max-width: 820px;
  color: var(--muted);
  line-height: 1.75;
}

.public-legal-nav {
  margin-bottom: 24px;
}

.public-legal-content {
  display: grid;
  gap: 20px;
}

.public-legal-section {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(248, 251, 255, 0.96);
  border: 1px solid rgba(219, 228, 241, 0.88);
}

.public-legal-section h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.public-legal-section p {
  margin: 0;
  color: #334155;
  line-height: 1.75;
}

.public-legal-section p + p {
  margin-top: 6px;
}

@media (max-width: 760px) {
  .public-shop-legal-footer {
    margin-top: 22px;
    padding-top: 20px;
  }

  .public-legal-card {
    padding: 20px;
    border-radius: 22px;
  }

  .public-legal-section {
    padding: 16px 16px 18px;
    border-radius: 18px;
  }

  .public-shop-legal-link {
    width: fit-content;
    max-width: 100%;
  }
}

.headline-xl {
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.toolbar {
  border-bottom: 1px solid rgba(228, 234, 243, 0.75);
}

.filters .outline.active-filter {
  background: linear-gradient(135deg, #0f172a, #1f2d4a);
  color: #fff;
  border-color: #0f172a;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.16);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(217, 227, 240, 0.86);
  color: #405173;
  font-size: 12px;
  font-weight: 800;
}

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

.hero-stat {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(229, 236, 251, 0.9);
}

.hero-stat strong {
  display: block;
  font-size: 24px;
  margin-bottom: 4px;
}

.login-focus {
  display: grid;
  gap: 12px;
  padding: 4px 2px 2px;
}

.login-focus-top {
  align-content: start;
}

.login-focus-main {
  align-content: start;
}

.login-focus-header {
  display: grid;
  gap: 8px;
}

.code-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(53, 89, 230, 0.12), rgba(23, 180, 212, 0.14));
  color: #2a469f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selected-code-panel {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(243, 248, 255, 0.98));
  border: 1px solid #e5ecfb;
}

.selected-code-head {
  display: grid;
  gap: 4px;
}

.selected-code-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.selected-code-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px 0 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d8e3fb;
  color: #2b468d;
  font-size: 13px;
  font-weight: 800;
}

.chip-remove {
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  background: #eef4ff;
  color: #2b468d;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

.multi-code-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.code-stage {
  display: grid;
  gap: 10px;
}

.code-stage-label,
.login-secondary-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6477a8;
}

.code-field {
  height: 92px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 22px;
  border: 2px solid #b9ccff;
  box-shadow: 0 18px 34px rgba(53, 89, 230, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 1));
}

.code-field:focus {
  border-color: #3559e6;
  box-shadow: 0 0 0 5px rgba(53, 89, 230, 0.12), 0 18px 32px rgba(53, 89, 230, 0.12);
}

.email-field {
  height: 56px;
  font-size: 17px;
  border-radius: 20px;
}

.login-primary {
  min-height: 68px;
  font-size: 21px;
  font-weight: 800;
  border-radius: 22px;
}

.login-secondary {
  display: grid;
  gap: 8px;
  padding-top: 2px;
}

.registration-auth-shell,
.registration-form-shell {
  display: grid;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.registration-auth-hero,
.registration-form-hero {
  padding: 28px 30px;
  border-radius: 28px;
  color: #f8fbff;
  background:
    radial-gradient(circle at top right, rgba(83, 209, 255, 0.22), transparent 34%),
    linear-gradient(145deg, #162238, #1d2740 56%, #26365c);
  box-shadow: 0 26px 44px rgba(15, 23, 42, 0.16);
}

.registration-auth-hero h2,
.registration-form-hero h2 {
  margin: 10px 0 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.registration-auth-hero p,
.registration-form-hero p {
  margin: 14px 0 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(238, 244, 255, 0.84);
}

.registration-auth-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 240px;
  gap: 18px;
  align-items: stretch;
}

.registration-auth-side {
  padding: 24px 20px;
  border-radius: 24px;
  border: 1px solid rgba(184, 202, 242, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.registration-auth-side strong {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}

.registration-auth-side p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.registration-auth-card,
.registration-form-card,
.registration-summary-card,
.registration-children-card {
  padding: 24px;
}

.registration-form-card,
.registration-children-card {
  padding: 34px 36px;
  border: 1px solid rgba(184, 202, 242, 0.95);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 255, 0.98));
  box-shadow: 0 26px 44px rgba(53, 89, 230, 0.08);
}

.registration-auth-card-head h3,
.registration-section-head h3 {
  margin: 8px 0 0;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.registration-auth-card-head p,
.registration-section-head p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.registration-section-head h3 {
  font-size: 38px;
}

.registration-section-head p {
  max-width: 760px;
  font-size: 17px;
}

.registration-auth-code-stage {
  margin-top: 18px;
}

.registration-auth-notice,
.registration-form-notice {
  margin-top: 16px;
}

.registration-auth-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 18px;
}

.registration-auth-hint {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.registration-form-topbar {
  display: flex;
  justify-content: flex-end;
}

.registration-form-chips {
  margin-top: 18px;
}

.registration-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

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

.registration-summary-card {
  display: grid;
  gap: 18px;
  position: static;
  border: 1px solid rgba(217, 227, 240, 0.92);
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(243, 247, 255, 0.98));
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.05);
}

.registration-summary-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.registration-summary-list div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(184, 202, 242, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.registration-summary-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.registration-summary-list span {
  color: var(--muted);
}

.registration-summary-list strong {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.registration-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.registration-children-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.registration-child-card {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(184, 202, 242, 0.94);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(246, 250, 255, 0.98));
  box-shadow: 0 16px 28px rgba(53, 89, 230, 0.05);
}

.registration-child-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.registration-child-head strong {
  display: block;
  font-size: 18px;
}

.registration-child-head span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.6;
}

.registration-children-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 22px;
}

.registration-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
}

.registration-submit-note {
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
  font-size: 15px;
}

.registration-form-shell label {
  display: grid;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  color: #1c2840;
}

.registration-form-shell .input {
  min-height: 68px;
  padding: 18px 20px;
  font-size: 20px;
  border-width: 2px;
  border-color: #d7e2f6;
  border-radius: 22px;
  box-shadow: 0 12px 22px rgba(53, 89, 230, 0.05);
}

.registration-form-shell .input::placeholder {
  color: #98a6bf;
}

.registration-form-shell .input:focus {
  border-color: #3559e6;
  box-shadow: 0 0 0 6px rgba(53, 89, 230, 0.11), 0 18px 32px rgba(53, 89, 230, 0.1);
}

.registration-submit-row .login-primary {
  min-width: 300px;
  min-height: 74px;
  font-size: 22px;
}

.registration-window-page {
  position: relative;
  min-height: calc(100vh - 86px);
  overflow: hidden;
}

.registration-window-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.24) 28%, rgba(236, 242, 252, 0.88) 82%),
    linear-gradient(180deg, rgba(241, 245, 252, 0.18), rgba(228, 236, 248, 0.78));
  backdrop-filter: blur(16px);
  pointer-events: none;
}

.registration-window-scene {
  position: absolute;
  inset: 28px 0 0;
  display: grid;
  gap: 22px;
  align-content: start;
  pointer-events: none;
}

.registration-window-scene-card {
  width: min(1120px, calc(100% - 64px));
  height: 170px;
  margin: 0 auto;
  border-radius: 34px;
  border: 1px solid rgba(205, 216, 235, 0.8);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(241, 246, 253, 0.5));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.registration-window-scene-card-wide {
  height: 110px;
}

.registration-window-scene-card-tall {
  height: 240px;
}

.registration-window-stage {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 110px);
  display: grid;
  align-items: start;
  padding-top: 10px;
}

.registration-window-shell {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.registration-window-dialog {
  position: relative;
  padding: 26px 26px 30px;
  border: 1px solid rgba(224, 232, 244, 0.92);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 40px 90px rgba(15, 23, 42, 0.16);
}

.registration-window-dialog-login {
  max-width: 650px;
  margin: 0 auto;
}

.registration-window-dialog-form {
  max-width: 760px;
  margin: 0 auto;
}

.registration-window-head {
  text-align: center;
}

.registration-window-head-centered {
  display: grid;
  justify-items: center;
}

.registration-window-illustration {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 16px;
}

.registration-window-illustration svg {
  width: 112px;
  height: auto;
  stroke: #a6afc7;
  stroke-width: 2.2;
  fill: rgba(237, 240, 248, 0.7);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.registration-window-title-block h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 5vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #1a2740;
}

.registration-window-title-block p {
  margin: 12px auto 0;
  max-width: 560px;
  color: #5d6b84;
  line-height: 1.7;
  font-size: 17px;
}

.registration-window-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.registration-window-meta span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f9fbff, #eef4ff);
  border: 1px solid rgba(202, 215, 241, 0.9);
  color: #3752a4;
  font-size: 13px;
  font-weight: 800;
}

.registration-window-topbar {
  margin-bottom: 6px;
}

.registration-window-body {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.registration-window-label-row {
  display: grid;
  gap: 6px;
}

.registration-window-label {
  font-size: 15px;
  font-weight: 800;
  color: #1d2740;
}

.registration-window-help {
  color: #6e7b93;
  line-height: 1.6;
}

.registration-window-code-stage .code-field {
  height: 96px;
}

.registration-window-actions {
  justify-content: center;
}

.registration-window-actions .login-primary {
  min-width: 320px;
}

.registration-window-footnote {
  text-align: center;
  font-size: 14px;
}

.registration-window-summary {
  padding: 18px 20px;
}

.registration-window-panel {
  padding: 28px 30px;
}

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

.registration-form-grid-single label {
  grid-column: 1 / -1;
}

.registration-window-submit-row {
  align-items: flex-start;
}

.notify-window-shell {
  max-width: 960px;
}

.notify-window-dialog {
  padding: 24px;
}

.notify-window-hero {
  padding: 22px 22px 20px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(83, 209, 255, 0.2), transparent 34%),
    linear-gradient(145deg, #18253c, #1f2b47 56%, #29456f);
  color: #f8fbff;
}

.notify-window-hero .micro,
.notify-window-hero .registration-window-title-block p {
  color: rgba(232, 239, 252, 0.84);
}

.notify-window-hero .registration-window-title-block h2 {
  color: #ffffff;
}

.notify-window-hero .registration-window-meta span {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f5f8ff;
}

.notify-window-illustration svg {
  stroke: rgba(232, 239, 252, 0.92);
  fill: rgba(255, 255, 255, 0.08);
}

.notify-window-body {
  gap: 20px;
}

.notify-window-notice {
  margin-top: 2px;
}

.notify-window-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
}

.notify-window-card {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(221, 229, 241, 0.92);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 250, 255, 0.97));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.notify-window-card-form {
  background:
    radial-gradient(circle at top right, rgba(53, 89, 230, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 255, 0.98));
}

.notify-window-card-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5670b7;
}

.notify-window-card h3 {
  margin: 10px 0 0;
  font-size: clamp(24px, 3.2vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #162238;
}

.notify-window-card p,
.notify-window-form-copy,
.notify-window-footnote,
.notify-window-tip {
  color: #5f6d85;
  line-height: 1.7;
}

.notify-window-summary {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.notify-window-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff, #eef4ff);
  border: 1px solid rgba(214, 223, 239, 0.86);
}

.notify-window-summary-row span {
  color: #6d7b93;
  font-size: 14px;
}

.notify-window-summary-row strong {
  color: #162238;
  text-align: right;
}

.notify-window-tip {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(239, 245, 255, 0.9), rgba(248, 251, 255, 0.94));
  border: 1px solid rgba(216, 225, 241, 0.88);
}

.notify-window-form {
  margin-top: 18px;
}

.notify-window-form .input {
  min-height: 62px;
}

.notify-window-submit-row {
  margin-top: 18px;
}

.notify-window-submit-row .login-primary {
  width: 100%;
  min-width: 0;
}

.registration-form-page {
  padding-bottom: 54px;
}

.registration-form-stage {
  padding-top: 12px;
}

.registration-form-shell {
  max-width: 1140px;
}

.registration-form-dialog {
  max-width: 1100px;
  padding: 24px;
}

.registration-form-hero {
  padding: 24px 24px 22px;
}

.registration-form-hero-layout {
  justify-items: start;
  text-align: left;
  gap: 18px;
}

.registration-form-illustration {
  margin-bottom: 0;
}

.registration-form-title-block p {
  max-width: 720px;
}

.registration-form-meta {
  justify-content: flex-start;
}

.registration-form-body {
  gap: 20px;
}

.registration-form-access-grid,
.registration-form-grid {
  display: grid;
  gap: 18px;
}

.registration-form-main,
.registration-form-side {
  display: grid;
  gap: 18px;
}

.registration-form-pane,
.registration-form-side-pane {
  padding: 26px;
  border-radius: 28px;
}

.registration-form-pane-eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(191, 207, 237, 0.94);
  background: rgba(241, 246, 255, 0.94);
  color: #5a6984;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.registration-form-pane-head {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.registration-form-pane-head h3,
.registration-form-side-pane h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  color: #162238;
}

.registration-form-pane-head p {
  margin: 0;
  color: #5f6d85;
  line-height: 1.72;
}

.registration-form-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 4px 6px 0;
}

.registration-form-toolbar-copy {
  display: grid;
  gap: 6px;
}

.registration-form-toolbar-copy strong {
  font-size: 22px;
  letter-spacing: -0.035em;
  color: #1f2b45;
}

.registration-form-toolbar-copy span {
  color: #5f6d85;
  line-height: 1.68;
}

.registration-form-access-pane .registration-product-access-label {
  margin-top: 20px;
}

.registration-form-access-pane .code-field {
  height: 84px;
  font-size: 25px;
  letter-spacing: 0.05em;
}

.registration-form-summary {
  margin-top: 18px;
}

.registration-form-flow {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.registration-form-flow-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(214, 223, 239, 0.86);
  background: linear-gradient(180deg, #f8fbff, #eef4ff);
}

.registration-form-flow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f46e5 0%, #14b8a6 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.22);
}

.registration-form-flow-copy strong {
  display: block;
  font-size: 16px;
  color: #1f2b45;
}

.registration-form-flow-copy span {
  display: block;
  margin-top: 4px;
  color: #5f6d85;
  line-height: 1.6;
  font-size: 14px;
}

.registration-form-side-note {
  margin-top: 16px;
  color: #5f6d85;
  line-height: 1.72;
}

.registration-form-chip-row {
  margin-top: 16px;
}

.registration-form-side-pane-soft {
  background:
    radial-gradient(circle at top right, rgba(79, 70, 229, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 249, 255, 0.98));
}

.registration-form-side-footnote {
  margin-top: 18px;
  text-align: left;
}

.registration-match-shell {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 1020px;
  margin: 0 auto;
  padding-top: 18px;
}

.registration-match-side {
  padding: 20px 18px;
  border-radius: 20px;
  border: 1px solid rgba(214, 224, 241, 0.92);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 248, 255, 0.84));
  box-shadow: 0 18px 32px rgba(18, 33, 68, 0.05);
}

.registration-match-side strong {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}

.registration-match-side p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.registration-match-column {
  width: 100%;
  max-width: 620px;
  justify-self: center;
}

.registration-match-topbar {
  justify-content: flex-start;
  margin-bottom: 14px;
}

.registration-match-head {
  text-align: center;
  margin-bottom: 18px;
}

.registration-match-head h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.03em;
  color: #1d2740;
}

.registration-match-head p {
  margin: 10px auto 0;
  max-width: 520px;
  color: #687892;
  line-height: 1.6;
}

.registration-match-summary {
  padding: 18px 16px;
  border-radius: 22px;
  box-shadow: 0 12px 24px rgba(18, 33, 68, 0.05);
}

.registration-match-summary strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
  color: #1d2740;
}

.registration-match-chiplist {
  gap: 10px;
}

.registration-match-fields {
  margin-top: 8px;
}

.registration-match-section {
  margin-top: 14px;
}

.registration-match-section-head h3 {
  margin: 0;
  font-size: 20px;
  color: #1d2740;
}

.registration-match-section-head p {
  margin: 8px 0 0;
  color: #6a7892;
  line-height: 1.5;
}

.registration-match-child-card {
  border-radius: 26px;
}

.registration-match-submit-row {
  justify-content: flex-end;
}

.registration-match-submit-row .registration-submit-note {
  display: none;
}

.registration-modal-shell {
  width: 100%;
  max-width: 620px;
  margin: 20px auto 0;
}

.registration-modal-card {
  padding: 18px 22px 24px;
  border-radius: 28px;
  border: 1px solid rgba(226, 233, 243, 0.96);
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 40px 110px rgba(15, 23, 42, 0.22);
}

.registration-modal-topbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 6px;
}

.registration-modal-head {
  text-align: center;
  padding: 4px 18px 0;
}

.registration-modal-head .registration-window-illustration {
  margin-bottom: 10px;
}

.registration-modal-head h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.03em;
  color: #243049;
}

.registration-modal-head p {
  margin: 10px auto 0;
  max-width: 460px;
  color: #5d6b84;
  line-height: 1.5;
  font-size: 14px;
}

.registration-modal-deadline {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 800;
  color: #6d7991;
}

.registration-modal-body {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.registration-modal-section {
  display: grid;
  gap: 14px;
}

.registration-modal-form {
  margin-top: 0;
}

.registration-modal-card .input {
  font-size: 22px;
}

.registration-modal-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(211, 220, 236, 0.95), transparent);
}

.registration-modal-section-head h3 {
  margin: 0;
  font-size: 18px;
  color: #243049;
}

.registration-modal-section-head p {
  margin: 8px 0 0;
  color: #6a7892;
  line-height: 1.5;
}

.registration-modal-children {
  gap: 14px;
  margin-top: 4px;
}

.registration-modal-child-card {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 251, 255, 0.98));
}

.registration-modal-children-actions {
  margin-top: 4px;
}

.registration-modal-submit-row {
  justify-content: center;
  margin-top: 6px;
}

.registration-modal-note {
  text-align: left;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(88, 117, 214, 0.08);
  border: 1px solid rgba(194, 206, 238, 0.88);
}

.panel-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.98));
}

.cart-card.sticky,
.admin-sidebar.sticky {
  top: 96px;
}

@media (max-width: 1280px) {
  .metrics-grid,
  .sales-kpi-grid,
  .profile-stack,
  .lab-stack,
  .qr-stack,
  .gallery-overview,
  .gallery-overview-compact,
  .sales-offer-grid,
  .child-folder-grid,
  .folder-grid,
  .admin-highlight-grid,
  .modal-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sales-panel-grid,
  .sales-job-detail {
    grid-template-columns: 1fr;
  }

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

  .admin-layout,
  .hero,
  .parent-hero-grid,
  .registration-auth-grid,
  .registration-form-layout,
  .gallery-layout,
  .checkout-grid,
  .content-grid,
  .modal-layout,
  .admin-cards {
    grid-template-columns: 1fr;
  }

  .sticky {
    position: static;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(var(--content-width), calc(100% - 18px));
  }

  .hero-copy,
  .login-card,
  .registration-auth-card,
  .registration-form-card,
  .registration-summary-card,
  .registration-children-card,
  .cart-card,
  .modal-body {
    padding: 14px;
  }

  .login-grid,
  .login-entry-layout,
  .login-trust-row,
  .multi-code-row,
  .registration-submit-row,
  .features,
  .info-grid,
  .gallery-overview,
  .gallery-overview-compact,
  .sales-offer-grid,
  .child-folder-grid,
  .folder-grid,
  .package-grid,
  .gallery-grid,
  .product-grid,
  .form-grid,
  .metrics-grid,
  .sales-kpi-grid,
  .sales-period-grid,
  .sales-panel-grid,
  .sales-job-stats,
  .sales-job-detail,
  .profile-stack,
  .lab-stack,
  .qr-stack,
  .option-grid,
  .admin-highlight-grid,
  .modal-summary {
    grid-template-columns: 1fr;
  }

  .sales-command-head,
  .sales-job-head {
    display: grid;
  }

  .sales-job-conversion {
    min-width: 0;
    text-align: left;
  }

  .sales-funnel-row {
    grid-template-columns: 1fr;
  }

  .progress-wrap,
  .toolbar,
  .panel-head {
    padding: 18px;
  }

  .login-stage {
    min-height: auto;
    padding-top: 4px;
  }

  .login-card {
    padding: 12px;
  }

  .login-grid {
    padding: 10px;
  }

  .qr-box {
    padding: 10px;
    gap: 10px;
  }

  .login-side-hero {
    padding: 16px 14px;
  }

  .registration-auth-hero,
  .registration-form-hero {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .registration-auth-hero h2,
  .registration-form-hero h2,
  .registration-auth-card-head h3,
  .registration-section-head h3 {
    font-size: 28px;
  }

  .registration-auth-hero p,
  .registration-form-hero p {
    font-size: 16px;
  }

  .login-side-hero div[style*="font-size:22px"] {
    font-size: 18px !important;
    line-height: 1.2;
  }

  .login-focus h3 {
    font-size: 28px !important;
  }

  .code-field {
    height: 78px;
    font-size: 24px;
    letter-spacing: 0.08em;
  }

  .email-field {
    height: 50px;
    font-size: 16px;
  }

  .login-primary {
    min-height: 58px;
    font-size: 19px;
  }

  .public-code-entry-card {
    padding: 10px;
  }

  .public-code-entry-box {
    padding: 16px 12px;
  }

  .public-code-entry-head h2 {
    font-size: 36px;
  }

  .selected-code-panel,
  .login-trust-item,
  .login-side-item {
    padding: 12px 14px;
  }

  .registration-auth-side,
  .registration-child-card {
    padding: 16px 14px;
  }

  .registration-summary-card {
    position: static;
  }

  .registration-form-card,
  .registration-children-card {
    padding: 20px 18px;
  }

  .registration-match-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .registration-match-side {
    display: none;
  }

  .registration-match-column {
    max-width: 100%;
  }

  .registration-modal-shell {
    max-width: 100%;
    margin-top: 8px;
  }

  .registration-modal-card {
    padding: 16px 16px 20px;
    border-radius: 24px;
  }

  .registration-modal-card .input {
    font-size: 19px;
  }

  .registration-window-page {
    min-height: auto;
  }

  .registration-window-backdrop {
    background: linear-gradient(180deg, rgba(246, 248, 252, 0.98), rgba(238, 243, 251, 0.98));
    backdrop-filter: none;
  }

  .registration-window-scene {
    display: none;
  }

  .registration-window-dialog {
    padding: 20px 18px 22px;
    border-radius: 28px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
  }

  .registration-window-panel {
    padding: 22px 18px;
  }

  .registration-window-meta {
    justify-content: flex-start;
  }

  .notify-window-grid {
    grid-template-columns: 1fr;
  }

  .notify-window-card {
    padding: 20px 18px;
    border-radius: 22px;
  }

  .notify-window-hero {
    padding: 18px 16px 18px;
    border-radius: 24px;
  }

  .notify-window-summary-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .notify-window-summary-row strong {
    text-align: left;
  }

  .registration-summary-list {
    grid-template-columns: 1fr;
  }

  .registration-child-head {
    flex-direction: column;
    align-items: stretch;
  }

  .registration-auth-actions .login-primary,
  .registration-submit-row .login-primary {
    width: 100%;
    min-width: 0;
    min-height: 62px;
    font-size: 19px;
  }

  .registration-form-shell .input {
    min-height: 60px;
    font-size: 18px;
  }

.registration-window-actions .login-primary {
    min-width: 0;
  }

.login-side-item-primary {
    min-height: auto;
  }

.registration-fototag-page {
  padding-top: 20px;
  padding-bottom: 48px;
}

.registration-fototag-shell {
  display: grid;
  gap: 22px;
  padding: 24px;
  border-radius: 32px;
  border: 1px solid rgba(214, 224, 241, 0.96);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(247, 250, 255, 0.985));
  box-shadow: 0 24px 52px rgba(17, 36, 84, 0.08);
}

.registration-fototag-hero {
  display: grid;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 26px;
  border: 1px solid rgba(217, 227, 243, 0.96);
  background:
    radial-gradient(circle at top right, rgba(84, 173, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.98));
}

.registration-fototag-copy h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: #1f2b45;
}

.registration-fototag-copy p {
  margin: 12px 0 0;
  max-width: 840px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.registration-fototag-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.registration-fototag-meta span {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(199, 212, 236, 0.96);
  background: rgba(255, 255, 255, 0.86);
  color: #52607a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.registration-fototag-access-grid,
.registration-fototag-layout {
  display: grid;
  gap: 18px;
}

.registration-fototag-main,
.registration-fototag-side {
  display: grid;
  gap: 18px;
}

.registration-fototag-panel {
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(217, 227, 243, 0.96);
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 16px 40px rgba(17, 36, 84, 0.06);
}

.registration-fototag-panel-soft {
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(243, 248, 255, 0.98));
}

.registration-fototag-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 0 2px;
}

.registration-fototag-toolbar strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.03em;
  color: #1f2b45;
}

.registration-fototag-toolbar span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.registration-fototag-section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.registration-fototag-step {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #eef4ff;
  border: 1px solid rgba(194, 208, 236, 0.96);
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.registration-fototag-section-head h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.04em;
  color: #1f2b45;
}

.registration-fototag-section-head p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.68;
  font-size: 14px;
}

.registration-fototag-list {
  display: grid;
  gap: 12px;
}

.registration-fototag-list div {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(220, 229, 244, 0.96);
  background: rgba(255, 255, 255, 0.82);
}

.registration-fototag-list strong {
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #1f2b45;
}

.registration-fototag-list span,
.registration-fototag-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.registration-fototag-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.registration-flow-page {
  min-height: 100vh;
  padding-bottom: 64px;
  background:
    radial-gradient(circle at top left, rgba(84, 173, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #f7f9fe 0%, #edf3fb 100%);
}

.registration-flow-page .container {
  width: min(1160px, calc(100% - 40px));
}

.registration-public-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(250, 252, 255, 0.9);
  border-bottom: 1px solid rgba(216, 225, 240, 0.94);
  box-shadow: 0 10px 30px rgba(19, 36, 79, 0.04);
}

.registration-public-header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  min-height: 84px;
}

.registration-public-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(218, 227, 242, 0.94);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  color: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(24, 40, 84, 0.05);
}

.registration-public-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, #5f59ff, #2d8cff);
  color: #fff;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.03em;
  box-shadow: 0 14px 30px rgba(47, 88, 214, 0.22);
}

.registration-public-brand-copy {
  display: grid;
  gap: 3px;
}

.registration-public-brand-copy strong {
  font-size: 23px;
  letter-spacing: -0.04em;
  color: #18233c;
}

.registration-public-brand-copy small {
  color: #67758d;
  font-size: 13px;
  line-height: 1.4;
}

.registration-public-status {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.registration-public-pill,
.registration-flow-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(204, 214, 234, 0.96);
  background: rgba(255, 255, 255, 0.84);
  color: #51607b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.registration-flow-pill-soft {
  background: rgba(241, 246, 255, 0.94);
}

.registration-public-actions {
  display: flex;
  justify-content: flex-end;
}

.registration-flow-main {
  padding-top: 36px;
}

.registration-flow-shell {
  display: grid;
  gap: 24px;
  padding: 30px;
  border-radius: 36px;
  border: 1px solid rgba(214, 223, 240, 0.96);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 28px 64px rgba(19, 36, 79, 0.08);
}

.registration-flow-hero,
.registration-flow-context {
  display: grid;
  gap: 16px;
  padding: 32px 34px;
  border-radius: 32px;
  border: 1px solid rgba(214, 223, 240, 0.96);
  background:
    radial-gradient(circle at top right, rgba(84, 173, 255, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(93, 61, 242, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(247, 250, 255, 0.99));
  box-shadow: 0 20px 44px rgba(19, 36, 79, 0.07);
}

.registration-flow-kicker,
.registration-flow-step-label {
  color: #73829b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.registration-flow-title {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.01;
  letter-spacing: -0.05em;
  color: #19243d;
  max-width: 760px;
}

.registration-flow-copy {
  margin: 0;
  max-width: 760px;
  color: #5f6f88;
  font-size: 16px;
  line-height: 1.72;
}

.registration-flow-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.registration-flow-access-grid,
.registration-flow-form-layout {
  display: grid;
  gap: 20px;
}

.registration-flow-form-main,
.registration-flow-sidebar,
.registration-flow-children {
  display: grid;
  gap: 20px;
}

.registration-flow-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(214, 224, 241, 0.98);
  background: rgba(255, 255, 255, 0.995);
  box-shadow: 0 20px 44px rgba(17, 36, 84, 0.07);
}

.registration-flow-card-strong {
  background:
    radial-gradient(circle at top right, rgba(84, 173, 255, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(93, 61, 242, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 255, 0.99));
}

.registration-flow-card-soft {
  background: linear-gradient(180deg, rgba(248, 251, 255, 1), rgba(242, 247, 255, 0.99));
}

.registration-flow-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.registration-flow-card-head strong {
  display: block;
  margin-top: 4px;
  font-size: 26px;
  letter-spacing: -0.04em;
  color: #1c2741;
}

.registration-flow-card-head span {
  display: block;
  margin-top: 8px;
  color: #66758d;
  font-size: 14px;
  line-height: 1.66;
}

.registration-flow-field {
  display: grid;
  gap: 10px;
  color: #24314b;
  font-size: 14px;
  font-weight: 800;
}

.registration-flow-code-input {
  min-height: 68px;
  padding-inline: 24px;
  border-radius: 22px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1f2b45;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(179, 198, 235, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 22px rgba(36, 87, 214, 0.08);
}

.registration-flow-code-input::placeholder {
  color: #8e9cb3;
  letter-spacing: -0.02em;
}

.registration-flow-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.registration-flow-primary,
.registration-flow-ghost,
.registration-flow-quiet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.registration-flow-primary {
  background: #2457d6;
  color: #fff;
  box-shadow: 0 16px 30px rgba(36, 87, 214, 0.2);
}

.registration-flow-primary:hover:not(:disabled),
.registration-flow-ghost:hover,
.registration-flow-quiet:hover {
  transform: translateY(-1px);
}

.registration-flow-primary:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
}

.registration-flow-ghost {
  border-color: rgba(204, 214, 234, 0.96);
  background: rgba(255, 255, 255, 0.9);
  color: #21304b;
  box-shadow: 0 10px 24px rgba(20, 32, 64, 0.04);
}

.registration-flow-quiet {
  min-height: 40px;
  padding-inline: 14px;
  border-color: rgba(213, 222, 239, 0.96);
  background: rgba(246, 249, 255, 0.96);
  color: #5d6c85;
  font-size: 14px;
}

.registration-flow-caption {
  color: #6d7b93;
  font-size: 14px;
  line-height: 1.65;
}

.registration-flow-data-list {
  display: grid;
  gap: 12px;
}

.registration-flow-data-item {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(220, 229, 244, 0.98);
  background: rgba(255, 255, 255, 0.88);
}

.registration-flow-data-item strong {
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #1f2b45;
}

.registration-flow-data-item span {
  color: #66758d;
  font-size: 14px;
  line-height: 1.62;
}

.registration-flow-inline-notice {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(198, 212, 236, 0.96);
  background: rgba(242, 246, 255, 0.96);
  color: #30415f;
  font-size: 14px;
  line-height: 1.6;
}

.registration-flow-inline-notice strong {
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #1d2a43;
}

.registration-flow-inline-notice-warning {
  background: rgba(255, 244, 236, 0.96);
  border-color: rgba(247, 198, 168, 0.96);
  color: #8d4d16;
}

.registration-flow-inline-notice-danger {
  background: rgba(255, 239, 239, 0.96);
  border-color: rgba(247, 190, 190, 0.96);
  color: #9a2424;
}

.registration-flow-inline-notice-success {
  background: rgba(236, 249, 241, 0.96);
  border-color: rgba(180, 226, 197, 0.96);
  color: #17683d;
}

.registration-flow-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.registration-flow-grid-two label {
  display: grid;
  gap: 8px;
  color: #26334d;
  font-size: 14px;
  font-weight: 700;
}

.registration-flow-grid-span {
  grid-column: 1 / -1;
}

.registration-flow-child-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(218, 227, 243, 0.96);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98));
}

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

.registration-group-choice-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.registration-group-choice-button {
  min-height: 42px;
  padding-inline: 16px;
}

.registration-group-choice-button:hover {
  border-color: rgba(96, 165, 250, 0.72);
  background: rgba(239, 246, 255, 0.96);
  color: #1e3a8a;
}

.registration-group-choice-button.is-selected {
  border-color: rgba(36, 87, 214, 0.96);
  background: #2457d6;
  color: #ffffff;
  box-shadow:
    0 14px 28px rgba(36, 87, 214, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.registration-group-choice-button.is-selected:hover {
  border-color: rgba(36, 87, 214, 0.96);
  background: #1f4fc8;
  color: #ffffff;
  box-shadow:
    0 18px 34px rgba(36, 87, 214, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

@media (min-width: 900px) {
  .registration-flow-access-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  }

  .registration-flow-form-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    align-items: start;
  }
}

@media (max-width: 1024px) {
  .registration-public-header-inner {
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
    padding-block: 16px;
  }

  .registration-public-status {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .registration-flow-main {
    padding-top: 22px;
  }

  .registration-flow-shell {
    padding: 18px;
    border-radius: 28px;
  }

  .registration-flow-hero,
  .registration-flow-context,
  .registration-flow-card {
    padding: 20px;
    border-radius: 24px;
  }

  .registration-flow-title {
    font-size: 34px;
  }

  .registration-flow-copy {
    font-size: 15px;
  }

  .registration-flow-code-input {
    min-height: 56px;
    font-size: 19px;
  }

  .registration-flow-grid-two {
    grid-template-columns: 1fr;
  }

  .registration-flow-card-head {
    flex-direction: column;
    align-items: stretch;
  }

  .registration-flow-primary,
  .registration-flow-ghost {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .registration-public-brand-copy strong {
    font-size: 19px;
  }

  .registration-public-brand-copy small {
    font-size: 12px;
  }

  .registration-public-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    font-size: 19px;
  }

  .registration-flow-main {
    padding-top: 18px;
  }

  .registration-flow-shell {
    gap: 18px;
    padding: 14px;
    border-radius: 24px;
  }

  .registration-flow-hero,
  .registration-flow-context,
  .registration-flow-card {
    padding: 18px;
    border-radius: 22px;
  }

  .registration-flow-title {
    font-size: 29px;
  }

  .registration-flow-copy,
  .registration-flow-data-item span,
  .registration-flow-card-head span,
  .registration-flow-caption {
    font-size: 14px;
  }

  .registration-flow-action-row {
    flex-direction: column;
    align-items: stretch;
  }
}

.registration-product-page {
  position: relative;
  display: grid;
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 48px;
}

.registration-product-hero {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(213, 224, 242, 0.94);
  background:
    radial-gradient(circle at top right, rgba(84, 173, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.98));
  box-shadow: 0 24px 52px rgba(34, 72, 160, 0.08);
}

.registration-product-hero-copy h1 {
  margin: 8px 0 0;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.registration-product-hero-copy p {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.72;
  font-size: 16px;
}

.registration-product-trust-row,
.registration-product-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.registration-product-trust-row span,
.registration-product-chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(198, 212, 236, 0.94);
  background: rgba(255, 255, 255, 0.86);
  color: #43506a;
  font-size: 13px;
  font-weight: 700;
}

.registration-product-context-card,
.registration-product-access-card,
.registration-product-side-card,
.registration-product-step-card {
  border: 1px solid rgba(215, 225, 241, 0.96);
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 18px 42px rgba(17, 36, 84, 0.06);
}

.registration-product-context-card {
  display: grid;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 26px;
}

.registration-product-context-head {
  display: grid;
  gap: 8px;
}

.registration-product-context-head strong {
  font-size: 24px;
  letter-spacing: -0.04em;
  color: #1f2b45;
}

.registration-product-context-head span,
.registration-product-side-copy,
.registration-product-submit-copy,
.registration-product-caption {
  color: var(--muted);
  line-height: 1.66;
  font-size: 14px;
}

.registration-product-context-badge,
.registration-product-step {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(191, 207, 237, 0.94);
  background: rgba(241, 246, 255, 0.94);
  color: #5a6984;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.registration-product-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.registration-product-facts div,
.registration-product-side-list div {
  display: grid;
  gap: 5px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(223, 231, 245, 0.96);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.98));
}

.registration-product-facts span,
.registration-product-side-list span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a889f;
}

.registration-product-facts strong,
.registration-product-side-list strong {
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #1f2b45;
}

.registration-product-status-danger {
  color: #b42318;
}

.registration-product-status-warning {
  color: #b36200;
}

.registration-product-status-success {
  color: #137a43;
}

.registration-product-access {
  display: grid;
  gap: 18px;
}

.registration-product-access-card {
  padding: 24px;
  border-radius: 28px;
}

.registration-product-access-card h2 {
  margin: 10px 0 0;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.04em;
}

.registration-product-access-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.registration-product-access-label {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 800;
  color: #23304a;
}

.registration-product-access-actions {
  display: flex;
  margin-top: 18px;
}

.registration-product-access-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.registration-product-facts-inline {
  margin-top: 18px;
}

.registration-product-layout {
  display: grid;
  gap: 20px;
}

.registration-product-main,
.registration-product-side {
  display: grid;
  gap: 18px;
}

.registration-product-step-card,
.registration-product-side-card {
  padding: 22px;
  border-radius: 26px;
}

.registration-product-card-head {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.registration-product-card-head h3,
.registration-product-side-card h3 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.04em;
  color: #1f2b45;
}

.registration-product-card-head p,
.registration-product-list {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.registration-product-grid-two {
  margin-top: 18px;
  gap: 16px;
}

.registration-product-grid-two label {
  display: grid;
  gap: 10px;
  color: #22304b;
  font-weight: 800;
  font-size: 14px;
}

.registration-product-grid-two .input {
  min-height: 60px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid #d6e1f3;
  box-shadow: 0 10px 24px rgba(17, 36, 84, 0.04);
  font-size: 17px;
}

.registration-product-grid-two .input:focus {
  border-color: rgba(36, 87, 214, 0.55);
  box-shadow: 0 0 0 4px rgba(36, 87, 214, 0.12);
}

.registration-product-label-optional {
  color: #8d99af;
  font-size: 12px;
  font-weight: 700;
}

.registration-product-children {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.registration-product-child-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(218, 228, 244, 0.96);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 1));
}

.registration-product-child-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.registration-product-child-head strong {
  display: block;
  font-size: 17px;
}

.registration-product-child-head span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 13px;
}

.registration-product-child-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 16px;
}

.registration-product-checklist {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.registration-product-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(218, 228, 244, 0.96);
  background: rgba(248, 251, 255, 0.92);
  color: #2c3852;
  line-height: 1.62;
}

.registration-product-check input {
  margin-top: 3px;
}

.registration-product-submit-row {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.registration-product-side-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.registration-product-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin-top: 14px;
}

.registration-product-notice,
.registration-product-success {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(36, 87, 214, 0.12);
  background: rgba(241, 246, 255, 0.98);
}

.registration-product-notice-warning {
  background: rgba(251, 146, 60, 0.12);
  border-color: rgba(234, 88, 12, 0.18);
}

.registration-product-notice-danger {
  background: rgba(248, 113, 113, 0.1);
  border-color: rgba(220, 38, 38, 0.18);
}

.registration-product-notice-success,
.registration-product-success {
  background: rgba(21, 128, 61, 0.1);
  border-color: rgba(21, 128, 61, 0.18);
}

.registration-product-success {
  display: grid;
  gap: 8px;
}

.registration-product-success-badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #137a43;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.registration-product-success strong {
  font-size: 20px;
  letter-spacing: -0.03em;
  color: #173225;
}

.registration-product-success-copy {
  color: #446253;
}

@media (min-width: 860px) {
  .registration-fototag-hero {
    grid-template-columns: minmax(0, 1.2fr) auto;
    align-items: flex-start;
  }

  .registration-fototag-access-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    align-items: start;
  }

  .registration-fototag-layout {
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    align-items: start;
  }

  .registration-form-hero-layout {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .registration-form-access-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: start;
  }

  .registration-form-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    align-items: start;
  }

  .registration-product-hero {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    align-items: stretch;
  }

  .registration-product-access {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
    align-items: start;
  }

  .registration-product-layout {
    grid-template-columns: minmax(0, 1.22fr) minmax(300px, .78fr);
    align-items: start;
  }

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

  .registration-product-submit-row .login-primary {
    width: fit-content;
    min-width: 240px;
  }
}

@media (max-width: 859px) {
  .registration-fototag-page {
    padding-top: 14px;
    padding-bottom: 28px;
  }

  .registration-fototag-shell,
  .registration-fototag-hero,
  .registration-fototag-panel {
    padding: 18px;
    border-radius: 24px;
  }

  .registration-fototag-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .registration-fototag-actions .login-primary {
    width: 100%;
    min-height: 58px;
  }

  .registration-fototag-section-head h3 {
    font-size: 21px;
  }

  .registration-form-dialog {
    padding: 18px;
    border-radius: 28px;
  }

  .registration-form-hero {
    padding: 20px 18px 18px;
    border-radius: 24px;
  }

  .registration-form-meta {
    gap: 8px;
  }

  .registration-form-pane,
  .registration-form-side-pane {
    padding: 20px;
    border-radius: 24px;
  }

  .registration-form-toolbar {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }

  .registration-form-access-pane .code-field {
    height: 72px;
    font-size: 22px;
  }

  .registration-product-page {
    gap: 18px;
    padding-top: 18px;
    padding-bottom: 32px;
  }

  .registration-product-hero,
  .registration-product-access-card,
  .registration-product-side-card,
  .registration-product-step-card {
    padding: 18px;
    border-radius: 24px;
  }

  .registration-product-hero-copy h1 {
    font-size: 34px;
  }

  .registration-product-context-head strong,
  .registration-product-card-head h3,
  .registration-product-side-card h3 {
    font-size: 22px;
  }

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

  .registration-product-access-topbar,
  .registration-product-child-head {
    flex-direction: column;
    align-items: stretch;
  }

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

  .registration-product-access-actions .login-primary,
  .registration-product-submit-row .login-primary {
    width: 100%;
    min-height: 58px;
  }

  .registration-product-grid-two .input,
  .registration-product-access-label .input {
    font-size: 16px;
  }
}

  .login-side-item-guard {
    min-height: auto;
  }

  .gallery-grid,
  .package-grid,
  .product-grid {
    padding: 0 18px 18px;
  }

  .hero-copy h2 {
    font-size: 38px;
  }

  .parent-hero-copy h3 {
    font-size: 38px;
  }

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

  .admin-row-grid {
    grid-template-columns: 1fr;
  }
}

.package-first-page {
  background:
    radial-gradient(circle at top left, rgba(45, 108, 223, 0.08), transparent 30%),
    linear-gradient(180deg, #fbfbfc 0%, #f3f4f7 100%);
}

.package-first-main {
  padding-bottom: 120px;
}

.shop-top-action,
.shop-cta,
.shop-secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  appearance: none;
}

.shop-top-action:hover,
.shop-cta:hover,
.shop-secondary-cta:hover {
  transform: translateY(-1px);
}

.shop-cta:disabled,
.shop-secondary-cta:disabled,
.shop-top-action:disabled {
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.55;
}

.shop-top-action {
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(17, 18, 20, 0.08);
  color: #111214;
}

.shop-top-action-primary,
.shop-cta {
  background: linear-gradient(180deg, #202124, #111214);
  color: #fff;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}

.shop-top-action-secondary,
.shop-secondary-cta {
  background: rgba(45, 108, 223, 0.08);
  color: #2d6cdf;
  border-color: rgba(45, 108, 223, 0.14);
}

.gallery-hero-shell,
.gallery-offers-shell,
.gallery-quick-shell,
.gallery-browser-shell,
.single-order-shell,
.checkout-shell-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  padding: 28px;
}

.gallery-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(26px, 3.4vw, 44px);
  align-items: center;
  padding: clamp(28px, 3.4vw, 40px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 249, 255, 0.88)),
    radial-gradient(circle at 18% 20%, rgba(45, 108, 223, 0.08), transparent 34%);
}

.gallery-hero-copy-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(10px, 2vw, 26px) 0;
  max-width: 600px;
}

.gallery-hero-eyebrow,
.gallery-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 18, 20, 0.08);
  font-size: 13px;
  font-weight: 700;
  color: #445066;
}

.gallery-hero-title {
  margin: 20px 0 12px;
  font-size: clamp(31px, 3.6vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.018em;
  font-weight: 700;
  color: #111214;
  max-width: 14ch;
  text-wrap: balance;
  overflow-wrap: normal;
  hyphens: none;
}

.gallery-hero-subline {
  margin: 0;
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.66;
  color: #343b45;
  max-width: 32ch;
}

.gallery-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.gallery-hero-main-cta,
.gallery-hero-secondary-cta {
  min-height: 52px;
  padding: 0 23px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 760;
}

.gallery-hero-visual {
  position: relative;
  min-height: clamp(360px, 42vw, 540px);
  display: block;
  overflow: hidden;
  border-radius: 30px;
  background: #151a22;
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.14);
  isolation: isolate;
}

.gallery-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  transform: none;
  background: transparent;
}

.gallery-hero-visual.gallery-hero-visual-portrait {
  background: #151a22;
}

.gallery-hero-visual.gallery-hero-visual-portrait img {
  object-fit: contain;
  object-position: center center;
  transform: none;
}

.gallery-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.02) 56%);
  z-index: 1;
}

.gallery-hero-visual-label {
  position: absolute;
  left: clamp(22px, 4%, 36px);
  right: 20px;
  bottom: clamp(34px, 5%, 48px);
  z-index: 7;
  color: #fff;
  text-shadow: 0 2px 12px rgba(15, 23, 42, 0.56);
}

.gallery-hero-visual-label strong {
  display: block;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.12;
  letter-spacing: -0.018em;
  font-weight: 760;
}

.gallery-hero-visual-label span {
  display: block;
  margin-top: 8px;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
}

.gallery-offers-shell,
.gallery-quick-shell {
  margin-top: 24px;
}

.gallery-offers-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.gallery-offers-head h3 {
  margin: 14px 0 8px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #111214;
}

.gallery-offers-head p {
  margin: 0;
  max-width: 62ch;
  color: #485262;
  line-height: 1.55;
}

.gallery-hero-pills,
.gallery-offer-features,
.gallery-secondary-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-hero-pills {
  margin-top: 22px;
}

.gallery-hero-pill,
.gallery-offer-features span,
.gallery-secondary-features span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 18, 20, 0.08);
  font-size: 14px;
  font-weight: 600;
  color: #485262;
}

.coupon-countdown-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, auto);
  gap: 18px;
  align-items: center;
  margin: 18px 0 22px;
  padding: 16px 18px;
  overflow: hidden;
  border: 1px solid rgba(27, 85, 73, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 94% 12%, rgba(102, 225, 179, 0.15), transparent 28%),
    linear-gradient(105deg, #f5fbf8 0%, #ffffff 52%, #edf8f3 100%);
  color: #14201d;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.coupon-countdown-card::after {
  content: "";
  position: absolute;
  inset: -54px -34px auto auto;
  width: 250px;
  height: 250px;
  border-radius: 999px;
  background: rgba(36, 87, 214, 0.035);
}

.coupon-countdown-copy,
.coupon-countdown-clock {
  position: relative;
  z-index: 1;
}

.coupon-countdown-kicker {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(20, 83, 45, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  color: #276749;
}

.coupon-countdown-copy h3 {
  margin: 10px 0 4px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.024em;
  font-weight: 780;
}

.coupon-countdown-copy p {
  margin: 0;
  max-width: 62ch;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}

.coupon-countdown-copy p span {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.coupon-countdown-clock {
  display: grid;
  grid-template-columns: repeat(4, minmax(54px, 1fr));
  gap: 8px;
  justify-self: end;
  width: min(100%, 300px);
}

.coupon-countdown-clock div {
  min-width: 60px;
  padding: 10px 8px 9px;
  border: 1px solid rgba(20, 83, 45, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.coupon-countdown-clock strong {
  display: block;
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 820;
  color: #173f35;
}

.coupon-countdown-clock span {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gallery-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 0.9fr));
  gap: 18px;
  margin-top: 26px;
}

.package-strip-orientation {
  display: none;
  margin-top: 18px;
  color: #171b22;
  text-align: center;
}

.package-strip-orientation.is-visible {
  display: grid;
  justify-items: center;
  gap: 5px;
}

.package-strip-orientation strong {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 850;
}

.package-strip-orientation span {
  font-size: 13px;
  line-height: 1.25;
  font-weight: 750;
  color: #171b22;
}

.package-strip-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 10px;
  margin-top: 2px;
}

.package-strip-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #c8d2df;
}

.package-strip-dot.is-active {
  background: #171b22;
}

.gallery-offer-grid-single {
  grid-template-columns: minmax(280px, 560px);
  justify-content: start;
}

.gallery-primary-offer-card,
.gallery-secondary-card,
.gallery-offer-card,
.shop-order-summary-card,
.shop-form-section,
.shop-order-group,
.shop-modal-summary-box,
.shop-modal-upsell {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06);
}

.gallery-primary-offer-card,
.gallery-secondary-card,
.gallery-offer-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.9));
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.gallery-offer-card-primary {
  border-color: rgba(45, 108, 223, 0.18);
  box-shadow: 0 24px 50px rgba(45, 108, 223, 0.1);
  transform: translateY(-4px);
}

.gallery-offer-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.gallery-offer-badge,
.gallery-secondary-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: rgba(45, 108, 223, 0.08);
  color: #2d6cdf;
}

.gallery-offer-kicker,
.gallery-secondary-kicker {
  font-size: 13px;
  font-weight: 700;
  color: #5c6470;
}

.gallery-primary-offer-card h3,
.gallery-secondary-card h3,
.gallery-section-headline h3,
.single-order-head h3,
.checkout-shell-head h3 {
  margin: 14px 0 10px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 650;
  color: #111214;
}

.gallery-primary-offer-card p,
.gallery-secondary-card p,
.gallery-section-headline p,
.single-order-head p,
.checkout-shell-head p {
  margin: 0;
  color: #485262;
  line-height: 1.6;
}

.gallery-offer-price,
.gallery-secondary-price {
  margin-top: 16px;
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #111214;
}

.gallery-offer-compare {
  margin-top: 6px;
  color: #7b8594;
  font-size: 13px;
  font-weight: 700;
  text-decoration: line-through;
}

.gallery-offer-value {
  margin-top: 8px;
  display: inline-flex;
  align-self: flex-start;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(31, 169, 120, 0.12);
  color: #0f7a53;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  align-items: center;
}

.gallery-offer-features,
.gallery-secondary-features {
  margin-top: 18px;
}

.gallery-offer-cta {
  width: 100%;
  margin-top: auto;
}

.gallery-offer-note {
  margin-top: 12px;
  color: #5c6470;
  font-size: 14px;
  font-weight: 600;
}

.gallery-preview-stage {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.gallery-preview-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  flex-wrap: wrap;
}

.gallery-preview-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.gallery-preview-summary span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.05);
  color: #556071;
  font-size: 13px;
  font-weight: 700;
}

.gallery-preview-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 280px);
  gap: 14px;
  margin-top: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding-bottom: 6px;
}

.gallery-preview-tile,
.gallery-photo-card-large {
  border: 0;
  background: transparent;
  padding: 0;
  width: 100%;
  display: block;
  text-align: left;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  appearance: none;
}

.gallery-preview-tile {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 18, 20, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
  scroll-snap-align: start;
}

.shop-protected-media,
.shop-protected-image {
  -webkit-touch-callout: none;
  user-select: none;
}

.shop-protected-media,
[data-protected-media="true"],
.gallery-photo-visual,
.gallery-preview-image-shell,
.shop-modal-image-stage,
.shop-package-preview-media,
.shop-package-slot-thumb,
.shop-package-choice,
.shop-cart-entry-media,
.order-confirmation-preview,
.order-confirmation-mini-preview {
  position: relative;
}

.gallery-hero-visual::after {
  content: "";
  inset: 0;
  right: auto;
  bottom: auto;
  max-width: none;
  padding: 0;
  border-radius: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.02) 56%);
  opacity: 1;
}

.shop-protected-image {
  -webkit-user-drag: none;
  image-rendering: auto;
}

.gallery-preview-image-shell {
  position: relative;
  aspect-ratio: 1 / 1.18;
  background: #eef2f7;
}

.gallery-preview-tile[data-card-orientation="portrait"] .gallery-preview-image-shell {
  aspect-ratio: 2 / 3;
}

.gallery-preview-tile[data-card-orientation="landscape"] .gallery-preview-image-shell {
  aspect-ratio: 4 / 3;
}

.gallery-preview-tile[data-card-orientation="square"] .gallery-preview-image-shell {
  aspect-ratio: 1 / 1;
}

.gallery-preview-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.gallery-preview-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.76);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.gallery-preview-caption {
  padding: 12px 14px 14px;
}

.gallery-preview-caption strong {
  display: block;
  color: #1b212a;
  font-size: 14px;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.gallery-preview-caption small {
  display: block;
  margin-top: 6px;
  color: #5b6573;
  font-size: 13px;
  line-height: 1.45;
}

.gallery-secondary-offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.gallery-browser-shell {
  margin-top: 24px;
}

.gallery-section-headline,
.checkout-shell-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.gallery-section-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-section-meta span,
.shop-order-group-head span,
.shop-order-summary-head span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.05);
  color: #556071;
  font-size: 13px;
  font-weight: 700;
}

.gallery-filter-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.gallery-filter-chip {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: #3f4958;
  font-weight: 600;
  cursor: pointer;
}

.gallery-filter-chip.active {
  background: #111214;
  color: #fff;
  border-color: #111214;
}

.gallery-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.gallery-photo-card-large {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 18, 20, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-photo-card-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.1);
}

.gallery-photo-visual {
  position: relative;
  aspect-ratio: 1 / 1.2;
  background: #151a22;
  overflow: hidden;
}

.gallery-photo-card-large[data-card-orientation="portrait"] .gallery-photo-visual {
  aspect-ratio: 2 / 3;
}

.gallery-photo-card-large[data-card-orientation="landscape"] .gallery-photo-visual {
  aspect-ratio: 4 / 3;
}

.gallery-photo-card-large[data-card-orientation="square"] .gallery-photo-visual {
  aspect-ratio: 1 / 1;
}

.gallery-photo-visual img {
  display: block;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
  isolation: isolate;
}

.photo-frame img {
  display: block;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center center;
  background: transparent;
}

.gallery-photo-visual > .photo-frame {
  width: 100%;
  height: 100%;
}

.shop-cart-entry-media > .photo-frame,
.order-confirmation-preview > .photo-frame,
.order-confirmation-mini-preview > .photo-frame,
.shop-package-preview-media > .photo-frame,
.shop-package-slot-thumb > .photo-frame,
.shop-modal-thumb > .photo-frame {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.gallery-hero-visual > .photo-frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.gallery-hero-visual > .photo-frame img {
  position: absolute;
  inset: 0;
  object-fit: contain;
  object-position: center center;
}

.shop-package-choice > .photo-frame {
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  min-height: 0;
  border-radius: inherit;
}

.photo-frame > .shop-mug-mockup,
.photo-frame > .shop-keychain-mockup,
.photo-frame > .shop-sticker-sheet {
  width: 100%;
  height: 100%;
}

.shop-modal-stage-slide > .photo-frame {
  width: min(100%, calc(var(--photo-frame-aspect, 1) * 100%));
  height: min(100%, calc(100% / var(--photo-frame-aspect, 1)));
  max-width: var(--shop-modal-stage-image-max-width, 100%);
  max-height: 100%;
  border-radius: 0;
}

.shop-watermark-layer {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(92px, 1fr));
  align-content: center;
  justify-content: center;
  gap: clamp(56px, 8vw, 120px) clamp(42px, 6vw, 90px);
  transform: rotate(-24deg) scale(1.28) translateZ(0);
  transform-origin: center center;
  mix-blend-mode: normal;
  overflow: hidden;
}

.watermark-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shop-watermark-layer--thumb {
  opacity: 0.3;
}

.shop-watermark-layer--preview {
  opacity: 0.3;
}

.gallery-photo-visual.shop-watermark-variant1-active,
.gallery-hero-visual.shop-watermark-variant1-active,
.shop-modal-image-stage.shop-watermark-variant1-active,
[data-protected-media="true"],
.order-confirmation-preview,
.order-confirmation-mini-preview,
.shop-package-preview-media,
.shop-package-slot-thumb,
.shop-package-choice {
  isolation: isolate;
  position: relative;
  overflow: hidden;
}

.shop-watermark-line {
  display: block;
  width: 190%;
  margin-left: -45%;
  color: #ffffff;
  white-space: nowrap;
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(8px, 0.82vw, 11px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.shop-watermark-mark {
  display: block;
  justify-self: center;
  min-width: 72px;
  max-width: 126px;
  padding: 0;
  border-radius: 999px;
  color: #ffffff;
  background: transparent;
  box-shadow: none;
  text-align: center;
  white-space: nowrap;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.05;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.shop-watermark-mark strong,
.shop-watermark-mark small {
  display: block;
}

.shop-watermark-mark strong {
  font-size: clamp(8px, 0.82vw, 11px);
  font-weight: 500;
  letter-spacing: 0;
}

.shop-watermark-mark small {
  margin-top: 1px;
  font-size: clamp(5px, 0.52vw, 7px);
  font-weight: 400;
  letter-spacing: 0;
}

.shop-watermark-mark:nth-child(odd) {
  transform: none;
  opacity: 1;
}

.shop-watermark-mark:nth-child(even) {
  transform: none;
  opacity: 1;
}

.shop-watermark-mark:nth-child(3n) {
  opacity: 1;
}

.shop-watermark-layer--thumb .shop-watermark-line {
  font-size: clamp(7px, 0.72vw, 10px);
}

.shop-watermark-layer--thumb .shop-watermark-mark {
  min-width: 64px;
  padding: 0;
}

.shop-watermark-layer--thumb .shop-watermark-mark strong {
  font-size: clamp(7px, 0.72vw, 10px);
}

.shop-watermark-layer--thumb .shop-watermark-mark small {
  font-size: clamp(5px, 0.5vw, 6px);
}

.shop-watermark-line:nth-child(odd) {
  transform: translateX(-10%);
}

.shop-watermark-line:nth-child(even) {
  transform: translateX(10%);
}

.shop-package-preview-qty,
.shop-package-choice > span {
  position: relative;
  z-index: 7;
}

.shop-package-choice > .shop-watermark-layer {
  height: calc(100% - 42px);
}

.gallery-hero-visual > .shop-watermark-layer,
.shop-modal-stage-slide > .shop-watermark-layer {
  display: none;
}

@media (max-width: 760px) {
  .shop-watermark-layer {
    inset: -24%;
    grid-template-columns: repeat(4, minmax(70px, 1fr));
    gap: 42px 28px;
  }

  .shop-watermark-layer--thumb {
    opacity: 0.45;
  }

  .shop-watermark-layer--preview {
    opacity: 0.45;
  }

  .shop-watermark-line,
  .shop-watermark-mark {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  }

  .shop-watermark-layer--thumb .shop-watermark-line {
    font-size: 9px;
  }

  .shop-watermark-layer--preview .shop-watermark-line {
    font-size: 9px;
  }

  .shop-watermark-layer--thumb .shop-watermark-mark strong,
  .shop-watermark-layer--preview .shop-watermark-mark strong {
    font-size: 9px;
  }

  .shop-watermark-layer--thumb .shop-watermark-mark small,
  .shop-watermark-layer--preview .shop-watermark-mark small {
    font-size: 6px;
  }
}

.gallery-photo-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--gallery-card-backdrop);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: blur(18px) saturate(1.04);
  opacity: 0.32;
  transform: scale(1.08);
  pointer-events: none;
}

.gallery-photo-card-large[data-card-actual-orientation="landscape"] .gallery-photo-visual::before {
  opacity: 0.26;
  transform: scale(1.06);
}

.gallery-photo-card-large[data-card-actual-orientation="square"] .gallery-photo-visual::before {
  opacity: 0.24;
  transform: scale(1.06);
}

.gallery-load-more-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: #596272;
  font-size: 14px;
  font-weight: 700;
}

.gallery-load-more-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  min-height: 72px;
  margin-top: 22px;
  color: #596272;
  font-size: 14px;
  font-weight: 700;
}

.gallery-load-more-btn {
  min-width: 190px;
}

.shop-image-load-error {
  position: relative;
  background: repeating-linear-gradient(
    135deg,
    #eef2f7,
    #eef2f7 10px,
    #e4eaf3 10px,
    #e4eaf3 20px
  ) !important;
}

.shop-image-load-error img {
  opacity: 0.28;
}

.shop-image-retry-btn {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 3;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 18, 20, 0.12);
  background: #111214;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.gallery-photo-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
  padding: 16px;
}

.gallery-photo-meta strong {
  display: block;
  color: #111214;
  font-size: 13px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.gallery-photo-meta span {
  display: block;
  margin-top: 6px;
  color: #596272;
  font-size: 14px;
}

.gallery-open-label {
  color: #111214 !important;
  font-weight: 700;
  margin-top: 0 !important;
}

.single-order-shell {
  margin-top: 24px;
}

.single-order-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.single-order-step,
.single-format-preview-card {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 18, 20, 0.08);
}

.single-order-step strong {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #111214;
  color: #fff;
  font-weight: 800;
}

.single-order-step span {
  display: block;
  margin-top: 12px;
  color: #404856;
  font-weight: 600;
}

.single-format-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.single-format-preview-card strong {
  display: block;
  font-size: 18px;
  color: #111214;
}

.single-format-preview-card span {
  display: block;
  margin-top: 8px;
  color: #596272;
  font-weight: 700;
}

.single-order-footnote {
  margin-top: 16px;
  color: #5c6470;
  font-size: 14px;
  font-weight: 600;
}

.mobile-package-sticky {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 18, 20, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.14);
}

.mobile-package-sticky strong {
  display: block;
  color: #111214;
  font-size: 14px;
}

.mobile-package-sticky span {
  display: block;
  color: #596272;
  font-size: 12px;
  margin-top: 4px;
}

.shop-floating-checkout {
  position: fixed;
  right: max(18px, env(safe-area-inset-right, 0px));
  bottom: max(18px, env(safe-area-inset-bottom, 0px));
  z-index: 74;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(17, 18, 20, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(18px);
}

.shop-floating-checkout-summary,
.shop-floating-checkout-button {
  border: 0;
  min-height: 48px;
  border-radius: 18px;
  font-weight: 850;
  cursor: pointer;
}

.shop-floating-checkout-summary {
  display: grid;
  gap: 2px;
  min-width: 150px;
  padding: 8px 16px;
  background: rgba(17, 18, 20, 0.05);
  color: #111214;
  text-align: left;
}

.shop-floating-checkout-summary span {
  color: #536072;
  font-size: 13px;
}

.shop-floating-checkout-button {
  padding: 0 22px;
  background: #111214;
  color: #fff;
}

.shop-cart-drawer-shell {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
}

.shop-cart-drawer-shell.is-open {
  pointer-events: auto;
}

.shop-cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 18, 20, 0);
  transition: background 0.2s ease;
}

.shop-cart-drawer-shell.is-open .shop-cart-drawer-backdrop {
  background: rgba(17, 18, 20, 0.36);
}

.shop-cart-drawer {
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: 14px;
  width: min(460px, calc(100vw - 28px));
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.24);
  transform: translateX(calc(100% + 28px));
  transition: transform 0.24s ease;
  backdrop-filter: blur(18px);
}

.shop-cart-drawer-shell.is-open .shop-cart-drawer {
  transform: translateX(0);
}

.shop-cart-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.shop-cart-drawer-close {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 0;
  overflow: hidden;
  font-size: 0;
  border-radius: 50%;
}

.shop-cart-drawer-close::after {
  content: "X";
  font-size: 18px;
  font-weight: 900;
}

.shop-cart-drawer-head h3 {
  margin: 4px 0 0;
  font-size: 28px;
  line-height: 1;
}

.shop-cart-drawer-items {
  flex: 1;
  overflow: auto;
  padding-right: 2px;
}

.shop-cart-drawer .shop-cart-entry-main,
.shop-cart-drawer .shop-cart-entry-copy {
  min-width: 0;
}

.shop-cart-drawer .shop-cart-entry-title,
.shop-cart-drawer .shop-cart-entry-subline {
  overflow-wrap: anywhere;
}

.shop-cart-drawer .shop-cart-entry-title {
  font-size: 18px;
  line-height: 1.12;
}

.shop-cart-drawer-total {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(17, 18, 20, 0.04);
}

.shop-cart-drawer-grand-total {
  padding-top: 8px;
  border-top: 1px solid rgba(17, 18, 20, 0.08);
  font-size: 18px;
}

.shop-cart-drawer-actions {
  display: grid;
  gap: 10px;
}

.shop-order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  margin-top: 24px;
}

.shop-order-main {
  display: grid;
  gap: 18px;
}

.shop-order-group,
.shop-form-section {
  padding: 22px;
}

.shop-order-group-head,
.shop-order-summary-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.shop-order-group-head h4,
.shop-order-summary-head h4,
.shop-form-section h4 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.shop-order-summary-card {
  padding: 22px;
  position: sticky;
  top: 88px;
  align-self: start;
}

.shop-summary-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.shop-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  color: #465060;
}

.shop-summary-row.total {
  padding-top: 12px;
  border-top: 1px solid rgba(17, 18, 20, 0.08);
  color: #111214;
  font-size: 18px;
}

.shop-cart-entry {
  padding: 18px;
  border-radius: 24px;
  background: rgba(247, 248, 250, 0.9);
  border: 1px solid rgba(17, 18, 20, 0.08);
}

.shop-cart-entry.has-image {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.94));
}

.shop-cart-entry + .shop-cart-entry {
  margin-top: 12px;
}

.shop-cart-entry-top,
.shop-cart-entry-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.shop-cart-entry-top {
  align-items: flex-start;
}

.shop-cart-entry-bottom {
  margin-top: 14px;
}

.shop-cart-entry-main {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
  flex: 1 1 auto;
}

.shop-cart-entry-copy {
  min-width: 0;
}

.shop-cart-entry-media {
  flex: 0 0 92px;
  width: 92px;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: #e5ebf5;
  box-shadow: 0 14px 24px rgba(18, 33, 68, 0.08);
}

.shop-cart-entry-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.shop-cart-entry-badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(45, 108, 223, 0.08);
  color: #2d6cdf;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.shop-cart-entry-title {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #111214;
}

.shop-cart-entry-subline,
.shop-cart-entry-static {
  color: #5d6674;
  font-size: 14px;
  font-weight: 600;
}

.shop-modal-panel {
  max-width: 1280px;
  width: min(1280px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 30px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.shop-modal-backdrop {
  align-items: flex-start;
  overflow-y: auto;
  padding-top: max(16px, env(safe-area-inset-top, 0px) + 12px);
  padding-bottom: max(20px, env(safe-area-inset-bottom, 0px) + 16px);
}

.shop-modal-body {
  padding: 24px;
  max-height: calc(100vh - 24px);
  overflow: auto;
  overflow-anchor: none;
}

.shop-single-modal-body {
  --shop-single-modal-height: min(760px, calc(100vh - 24px));
  position: relative;
  padding: 0;
  overflow: hidden;
}

.shop-single-modal-body .shop-modal-head {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 20;
  margin: 0;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
}

.shop-single-modal-body .shop-modal-head-copy,
.shop-single-modal-body .shop-modal-action-overview,
.shop-single-modal-body .shop-modal-action-cart {
  display: none;
}

.shop-single-modal-body .shop-modal-action-close {
  width: 44px;
  height: 44px;
  padding: 0;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(245, 247, 250, 0.94);
  color: transparent;
  font-size: 0;
}

.shop-single-modal-body .shop-modal-action-close::after {
  content: "X";
  color: #111214;
  font-size: 18px;
  font-weight: 900;
}

.shop-modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  position: sticky;
  top: 0;
  z-index: 12;
  padding-bottom: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 72%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(10px);
}

.shop-modal-head-copy {
  display: grid;
  gap: 14px;
  min-width: 0;
  flex: 1 1 520px;
}

.shop-modal-head-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.shop-modal-head-button {
  min-height: 48px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop-modal-action-cart {
  border-radius: 999px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  box-shadow: 0 16px 30px rgba(17, 18, 20, 0.12);
}

.shop-modal-action-close {
  border-color: rgba(17, 18, 20, 0.14);
  background: rgba(255, 255, 255, 0.96);
}

.shop-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 22px;
  align-items: start;
}

.shop-single-modal-body .shop-modal-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 400px);
  gap: 0;
  min-height: var(--shop-single-modal-height);
  height: var(--shop-single-modal-height);
}

.shop-modal-image-column,
.shop-modal-order-column {
  min-width: 0;
}

.shop-modal-order-column {
  display: flex;
  flex-direction: column;
}

.shop-single-modal-body .shop-modal-order-column {
  height: var(--shop-single-modal-height);
  overflow: hidden;
  padding: 0;
  background: #fff;
}

.shop-single-modal-body .shop-modal-order-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 24px 22px 132px;
  scroll-padding-bottom: 132px;
  overscroll-behavior: contain;
}

.shop-modal-side-title {
  margin: 0 54px 10px 0;
}

.shop-modal-side-title h3 {
  margin: 0;
  color: #111827;
  font-size: 24px;
  line-height: 1.06;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.shop-modal-side-title p {
  margin: 6px 0 0;
  color: #667085;
  line-height: 1.42;
  font-weight: 650;
}

.shop-modal-image-stage {
  --shop-modal-stage-desktop-height: min(54vh, 640px);
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #e9eef4;
  min-height: var(--shop-modal-stage-desktop-height);
  height: var(--shop-modal-stage-desktop-height);
  touch-action: pan-y;
  overscroll-behavior: contain;
  display: grid;
  place-items: center;
}

.shop-single-modal-body .shop-modal-image-column {
  min-height: 0;
  height: var(--shop-single-modal-height);
  display: flex;
  flex-direction: column;
  background: #f2f5f8;
}

.shop-single-modal-body .shop-modal-image-stage {
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  border-radius: 0;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
}

.shop-single-modal-body .shop-modal-stage-slide {
  padding: 0;
  overflow: hidden;
}

.shop-single-modal-body .shop-modal-stage-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
}

.shop-single-modal-body .shop-modal-mobile-hero {
  display: none;
}

.shop-modal-image-stage[data-stage-orientation="portrait"] {
  --shop-modal-stage-desktop-height: min(82vh, 960px);
}

.shop-modal-image-stage[data-stage-orientation="square"] {
  --shop-modal-stage-desktop-height: min(56vh, 660px);
}

.shop-modal-image-stage[data-stage-orientation="landscape"] {
  --shop-modal-stage-desktop-height: min(48vh, 560px);
}

.shop-modal-stage-track {
  --modal-stage-offset: 0px;
  position: absolute;
  inset: 0;
  height: 100%;
}

.shop-modal-stage-slide {
  position: absolute;
  inset: 0;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 12px;
  box-sizing: border-box;
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.shop-modal-stage-slide .shop-watermark-layer {
  z-index: 8;
}

.shop-modal-image-stage.swiping .shop-modal-stage-slide {
  transition: none;
}

.shop-modal-stage-slide.prev {
  transform: translate3d(calc(-100% + var(--modal-stage-offset)), 0, 0);
}

.shop-modal-stage-slide.current {
  transform: translate3d(var(--modal-stage-offset), 0, 0);
}

.shop-modal-stage-slide.next {
  transform: translate3d(calc(100% + var(--modal-stage-offset)), 0, 0);
}

.shop-modal-stage-slide > img,
.shop-modal-stage-slide > .shop-mug-mockup,
.shop-modal-stage-slide > .shop-keychain-mockup,
.shop-modal-stage-slide > .shop-sticker-sheet {
  width: 100%;
  height: 100%;
}

.shop-modal-stage-slide > img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.shop-modal-image-stage[data-stage-orientation="portrait"] .shop-modal-stage-slide {
  padding: 0;
}

.shop-modal-image-stage[data-stage-orientation="portrait"] .shop-modal-stage-slide > img {
  max-width: 100%;
  max-height: 100%;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.shop-modal-image-stage img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

.shop-single-modal-body .shop-modal-image-stage .shop-modal-stage-slide > img.shop-protected-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: none;
  background: transparent;
}

.shop-modal-opening-copy {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 6px;
  padding: 24px;
  color: #41506a;
}

.shop-modal-opening-copy strong {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.05;
}

.shop-modal-opening-copy span {
  font-size: 15px;
  font-weight: 600;
}

.shop-mug-mockup {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  background-image: var(--mug-mockup-asset);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.shop-mug-mockup-print {
  position: absolute;
  left: 31.4%;
  top: 26.8%;
  width: 27.2%;
  height: 41%;
  overflow: hidden;
  border-radius: 18px;
  transform: perspective(900px) rotateY(-8deg) skewY(-1deg);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 12px 28px rgba(17, 18, 20, 0.12);
}

.shop-mug-mockup-print img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.02);
}

.shop-mug-mockup-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 44% 32%, rgba(255, 255, 255, 0.22), transparent 16%),
    linear-gradient(90deg, transparent 28%, rgba(255, 255, 255, 0.09) 45%, rgba(0, 0, 0, 0.06) 57%, transparent 66%);
}

.shop-mug-mockup-thumb .shop-mug-mockup-print {
  left: 30.8%;
  top: 27.4%;
  width: 28%;
  height: 41.5%;
  border-radius: 11px;
}

.shop-keychain-mockup {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  background-color: #f5f5f8;
  background-image: var(--keychain-mockup-asset);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.shop-keychain-mockup-print,
.shop-keychain-mockup-shine {
  position: absolute;
  inset: 0;
  -webkit-mask-image: var(--keychain-mockup-mask);
  mask-image: var(--keychain-mockup-mask);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.shop-keychain-mockup-print {
  overflow: hidden;
}

.shop-keychain-mockup-print img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  filter: saturate(0.98) contrast(1.03);
}

.shop-keychain-mockup-shine {
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 38%, rgba(0, 0, 0, 0.1) 100%),
    radial-gradient(circle at 62% 44%, rgba(255, 255, 255, 0.18), transparent 28%);
  mix-blend-mode: screen;
  opacity: 0.95;
}

.shop-modal-image-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(17, 18, 20, 0.56);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  z-index: 2;
}

.shop-modal-image-arrow.prev {
  left: 16px;
}

.shop-modal-image-arrow.next {
  right: 16px;
}

.shop-modal-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  flex-wrap: wrap;
}

.shop-single-modal-body .shop-modal-nav {
  position: absolute;
  left: 18px;
  right: 420px;
  bottom: 16px;
  z-index: 5;
  margin: 0;
  pointer-events: none;
}

.shop-single-modal-body .shop-modal-nav-btn {
  display: none;
}

.shop-single-modal-body .shop-modal-progress-pill {
  pointer-events: auto;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-weight: 900;
}

.shop-modal-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  background: rgba(255, 255, 255, 0.94);
  color: #111214;
  font-weight: 700;
  cursor: pointer;
}

.shop-modal-nav-btn-primary {
  background: #111214;
  border-color: #111214;
  color: #fff;
}

.shop-modal-progress-pill {
  flex: 0 0 auto;
}

.shop-modal-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
}

.shop-single-modal-body .shop-modal-thumbs {
  display: none;
}

.shop-modal-thumb {
  flex: 0 0 92px;
  padding: 0;
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: #eef2f7;
  cursor: pointer;
  scroll-snap-align: start;
}

.shop-modal-thumb img {
  display: block;
  width: 100%;
  height: 92px;
  object-fit: contain;
  object-position: center center;
}

.shop-modal-thumb.active {
  border-color: #111214;
  box-shadow: 0 0 0 2px rgba(17, 18, 20, 0.12);
}

.shop-modal-image-title {
  margin: 10px 0 0;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.shop-modal-order-column h4 {
  margin: 10px 0 8px;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.shop-single-modal-body .shop-modal-order-column > .gallery-section-kicker {
  align-self: flex-start;
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
  color: #667085;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-single-modal-body .shop-modal-order-column h4 {
  margin: 8px 0 6px;
  font-size: 22px;
  font-weight: 850;
}

.shop-modal-copy {
  margin: 0;
  color: #4c5564;
  line-height: 1.6;
}

.shop-single-modal-body .shop-modal-copy {
  font-size: 15px;
  line-height: 1.35;
}

.shop-modal-section {
  margin-top: 14px;
}

.shop-modal-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.shop-modal-section-head strong {
  display: block;
  color: #111214;
  font-size: 20px;
  line-height: 1.15;
}

.shop-modal-section-head small {
  color: #5d6674;
  font-size: 13px;
  line-height: 1.45;
}

.shop-modal-section-kicker {
  display: inline-block;
  margin-bottom: 4px;
  color: #556071;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.shop-single-modal-body .shop-modal-format-grid-primary,
.shop-single-modal-body .shop-modal-product-grid-single,
.shop-single-modal-body .shop-modal-product-grid {
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 10px;
}

.shop-single-modal-body .shop-modal-format-card,
.shop-single-modal-body .shop-modal-product-card {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 12px;
  min-height: 58px;
  padding: 10px 14px;
  border-radius: 18px;
  background: #fff;
}

.shop-single-modal-body .shop-modal-format-card::before,
.shop-single-modal-body .shop-modal-product-card::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #98a2b3;
}

.shop-single-modal-body .shop-modal-format-card.active,
.shop-single-modal-body .shop-modal-product-card.active {
  border-color: #1a73e8;
  box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.12);
}

.shop-single-modal-body .shop-modal-format-card.active::before,
.shop-single-modal-body .shop-modal-product-card.active::before {
  border-color: #1a73e8;
  box-shadow: inset 0 0 0 4px #fff;
  background: #1a73e8;
}

.shop-single-modal-body .shop-modal-format-card strong,
.shop-single-modal-body .shop-modal-product-card strong {
  grid-column: 2;
  font-size: 16px;
}

.shop-single-modal-body .shop-modal-format-card span,
.shop-single-modal-body .shop-modal-product-card span {
  grid-column: 3;
  grid-row: 1 / span 2;
  margin: 0;
  color: #111827;
  font-weight: 900;
}

.shop-single-modal-body .shop-modal-product-card small {
  grid-column: 2;
  margin-top: 3px;
  color: #667085;
}

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

.shop-modal-product-card {
  width: 100%;
  padding: 16px 16px 14px;
  border-radius: 22px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  background: rgba(247, 248, 250, 0.94);
  text-align: left;
  cursor: pointer;
}

.shop-modal-product-card strong {
  display: block;
  color: #111214;
  font-size: 16px;
  line-height: 1.25;
}

.shop-modal-product-card span,
.shop-modal-product-card small {
  display: block;
  margin-top: 6px;
  color: #5d6674;
}

.shop-modal-product-card small {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shop-modal-product-card.active {
  background: linear-gradient(135deg, #111214, #2d6cdf);
  border-color: transparent;
  box-shadow: 0 18px 32px rgba(17, 18, 20, 0.18);
}

.shop-modal-product-card.active strong,
.shop-modal-product-card.active span,
.shop-modal-product-card.active small {
  color: #fff;
}

.shop-modal-cart-banner {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(17, 18, 20, 0.04);
  border: 1px solid rgba(17, 18, 20, 0.08);
}

.shop-modal-cart-banner.filled {
  background: rgba(45, 108, 223, 0.07);
  border-color: rgba(45, 108, 223, 0.12);
}

.shop-modal-cart-banner.highlight {
  background: rgba(35, 178, 94, 0.1);
  border-color: rgba(35, 178, 94, 0.18);
}

.shop-modal-cart-banner-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.shop-modal-cart-banner-head strong {
  color: #111214;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.shop-modal-cart-banner-body {
  display: grid;
  gap: 4px;
}

.shop-modal-cart-banner-body span {
  color: #111214;
  font-weight: 700;
  line-height: 1.4;
}

.shop-modal-cart-banner-body small {
  color: #556071;
  font-size: 13px;
  line-height: 1.45;
}

.shop-modal-upsell {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding: 16px 18px;
}

.shop-modal-upsell strong {
  display: block;
  color: #111214;
}

.shop-modal-upsell span {
  display: block;
  margin-top: 6px;
  color: #5d6674;
  font-size: 14px;
}

.shop-modal-format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.shop-modal-format-card {
  width: 100%;
  padding: 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  background: rgba(247, 248, 250, 0.92);
  text-align: left;
  cursor: pointer;
}

.shop-modal-format-card strong {
  display: block;
  color: #111214;
  font-size: 18px;
}

.shop-modal-format-card span {
  display: block;
  margin-top: 8px;
  color: #596272;
  font-weight: 700;
}

.shop-modal-format-card.active {
  background: #111214;
  border-color: #111214;
}

.shop-modal-format-card.active strong,
.shop-modal-format-card.active span {
  color: #fff;
}

.shop-modal-format-grid-primary {
  margin-top: 14px;
}

.shop-modal-section-download-all {
  padding: 14px 0 2px;
}

.shop-modal-download-all-card {
  background: linear-gradient(135deg, rgba(45, 108, 223, 0.08), rgba(255, 255, 255, 0.98));
  border-color: rgba(45, 108, 223, 0.18);
}

.shop-single-modal-body .shop-modal-download-all-compact {
  margin: 8px 0 10px;
  min-height: 52px;
  background: linear-gradient(135deg, rgba(35, 178, 94, 0.1), rgba(45, 108, 223, 0.08));
  border-color: rgba(45, 108, 223, 0.2);
}

.shop-single-modal-body .shop-modal-download-all-compact span.shop-modal-download-all-compact-copy {
  grid-column: 2;
  grid-row: auto;
  display: grid;
  gap: 2px;
  margin: 0;
  min-width: 0;
}

.shop-single-modal-body .shop-modal-download-all-compact-copy small,
.shop-single-modal-body .shop-modal-download-all-compact-copy strong,
.shop-single-modal-body .shop-modal-download-all-compact-copy em {
  grid-column: auto;
  display: block;
  margin: 0;
  min-width: 0;
}

.shop-single-modal-body .shop-modal-download-all-compact-copy small {
  color: #1f7a44;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-single-modal-body .shop-modal-download-all-compact-copy strong {
  color: #111827;
  font-size: 15px;
  line-height: 1.1;
}

.shop-single-modal-body .shop-modal-download-all-compact-copy em {
  color: #667085;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.shop-single-modal-body .shop-modal-download-all-compact span.shop-modal-download-all-compact-price {
  grid-column: 3;
  grid-row: 1 / span 2;
  margin: 0;
  color: #111827;
  font-weight: 900;
}

.shop-single-modal-body .shop-modal-download-all-compact.active .shop-modal-download-all-compact-copy small,
.shop-single-modal-body .shop-modal-download-all-compact.active .shop-modal-download-all-compact-copy strong,
.shop-single-modal-body .shop-modal-download-all-compact.active .shop-modal-download-all-compact-copy em,
.shop-single-modal-body .shop-modal-download-all-compact.active .shop-modal-download-all-compact-price {
  color: #fff;
}

.shop-single-modal-body .shop-modal-download-all-card small {
  display: block;
  margin-top: 3px;
  color: #667085;
  letter-spacing: 0;
  text-transform: none;
}

.shop-modal-subsection-label {
  margin-top: 16px;
  color: #556071;
  font-size: 13px;
  font-weight: 700;
}

.shop-modal-summary-box {
  margin-top: 18px;
  padding: 18px;
}

.shop-modal-selection-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(45, 108, 223, 0.08);
  border: 1px solid rgba(45, 108, 223, 0.1);
}

.shop-modal-selection-note-title {
  margin-top: 6px;
  color: #111214;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.shop-modal-selection-note-variant {
  margin-top: 4px;
  color: #111214;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
}

.shop-modal-mobile-hero,
.shop-modal-mobile-sizebar,
.shop-modal-mobile-cart-compact {
  display: none;
}

.shop-modal-mobile-products {
  display: none;
  gap: 14px;
}

.shop-modal-mobile-cart-copy {
  min-width: 0;
}

.shop-modal-mobile-cart-copy strong,
.shop-modal-mobile-cart-copy span {
  display: block;
}

.shop-modal-mobile-cart-copy strong {
  color: #111214;
  font-size: 14px;
  font-weight: 800;
}

.shop-modal-mobile-cart-copy span {
  margin-top: 4px;
  color: #687386;
  font-size: 12px;
  line-height: 1.35;
}

.shop-modal-mobile-cart-link {
  width: auto;
  margin-top: 0;
}

.shop-modal-mobile-section + .shop-modal-mobile-section {
  margin-top: 14px;
}

.shop-modal-mobile-products-label {
  color: #556071;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shop-modal-mobile-products-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-top: 10px;
}

.shop-modal-mobile-section-download-all .shop-modal-mobile-products-row {
  overflow: visible;
}

.shop-modal-mobile-product-card {
  flex: 0 0 auto;
  min-width: 120px;
  padding: 14px 14px 12px;
  border-radius: 20px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  background: rgba(247, 248, 250, 0.96);
  text-align: left;
  cursor: pointer;
}

.shop-modal-mobile-download-all-card {
  width: 100%;
  min-width: 0;
  background: linear-gradient(135deg, rgba(45, 108, 223, 0.08), rgba(255, 255, 255, 0.98));
  border-color: rgba(45, 108, 223, 0.18);
}

.shop-modal-mobile-download-all-compact {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
}

.shop-modal-mobile-download-all-compact small {
  color: #1f7a44;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-modal-mobile-download-all-compact.active small {
  color: #fff;
}

.shop-modal-mobile-product-card strong {
  display: block;
  color: #111214;
  font-size: 15px;
  line-height: 1.2;
}

.shop-modal-mobile-product-card span {
  display: block;
  margin-top: 6px;
  color: #596272;
  font-size: 13px;
  font-weight: 700;
}

.shop-modal-mobile-product-card.active {
  background: #111214;
  border-color: #111214;
  box-shadow: 0 18px 32px rgba(17, 18, 20, 0.18);
}

.shop-modal-mobile-product-card.active strong,
.shop-modal-mobile-product-card.active span {
  color: #fff;
}

.shop-modal-order-actions {
  position: static;
  bottom: 0;
  flex: 0 0 auto;
  margin-top: 0;
  padding: 10px 22px 14px;
  border-top: 1px solid rgba(17, 18, 20, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.99));
}

.shop-modal-action-selection {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  padding: 7px 10px;
  border-radius: 14px;
  background: rgba(45, 108, 223, 0.07);
  border: 1px solid rgba(45, 108, 223, 0.12);
}

.shop-modal-action-selection span {
  display: none;
}

.shop-modal-action-selection strong {
  color: #111827;
  font-size: 13px;
  line-height: 1.18;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop-modal-action-selection em {
  color: #1f5fbf;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.shop-modal-order-actions .qty button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.shop-modal-order-summary-row {
  margin-top: 0;
  align-items: flex-end;
}

.shop-modal-cart-cta {
  width: 100%;
  margin-top: 10px;
}

.shop-modal-cart-view-btn {
  width: 100%;
  margin-top: 10px;
}

.shop-modal-cart-view-btn-head {
  width: auto;
  margin-top: 0;
}

.shop-modal-cart-view-btn-bottom {
  border-color: rgba(17, 18, 20, 0.14);
  background: rgba(255, 255, 255, 0.96);
  font-weight: 800;
}

.shop-cart-entry-static {
  display: grid;
  gap: 6px;
}

.shop-package-modal-body {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(45, 108, 223, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.98));
}

.shop-package-modal-body .coupon-countdown-card {
  margin: 16px 0 0;
  padding: 16px;
  border-radius: 20px;
  grid-template-columns: minmax(0, 1fr) auto;
  box-shadow: 0 14px 30px rgba(45, 108, 223, 0.1);
}

.shop-package-modal-body .coupon-countdown-copy h3 {
  font-size: 22px;
}

.shop-package-modal-body .coupon-countdown-copy p {
  font-size: 14px;
}

.shop-package-modal-body .coupon-countdown-clock {
  min-width: 248px;
}

.shop-package-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
}

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

.shop-package-preview-card,
.shop-package-slot-card,
.shop-package-choice {
  border: 1px solid rgba(17, 18, 20, 0.08);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 24px;
}

.shop-package-preview-card {
  padding: 14px;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(17, 18, 20, 0.08);
}

.shop-package-preview-card.active,
.shop-package-slot-card.active,
.shop-package-choice.active {
  border-color: rgba(45, 108, 223, 0.5);
  box-shadow: 0 0 0 2px rgba(45, 108, 223, 0.1), 0 24px 40px rgba(45, 108, 223, 0.14);
}

.shop-package-preview-media {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #e8eef8;
  aspect-ratio: 1 / 1;
}

.shop-sticker-sheet,
.shop-sticker-sheet-surface {
  width: 100%;
  height: 100%;
}

.shop-sticker-sheet {
  display: grid;
  place-items: center;
  padding: 10px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), rgba(240, 245, 255, 0.9) 52%, rgba(220, 231, 248, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(235, 242, 252, 0.98));
}

.shop-sticker-sheet-surface {
  display: grid;
  grid-template-columns: repeat(var(--sticker-columns, 4), minmax(0, 1fr));
  grid-template-rows: repeat(var(--sticker-rows, 4), minmax(0, 1fr));
  gap: 7px;
  padding: 10px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.95)),
    #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(45, 108, 223, 0.08),
    0 18px 30px rgba(17, 18, 20, 0.08);
}

.shop-sticker-tile {
  overflow: hidden;
  border-radius: 0;
  background: #dbe7f8;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.92),
    0 6px 12px rgba(17, 18, 20, 0.1);
}

.shop-sticker-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.shop-sticker-sheet-thumb {
  padding: 6px;
}

.shop-sticker-sheet-thumb .shop-sticker-sheet-surface {
  gap: 4px;
  padding: 6px;
  border-radius: 16px;
}

.shop-package-preview-media > img,
.shop-package-slot-thumb > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(232, 238, 248, 0.95));
}

.shop-package-choice img {
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  min-height: 0;
  display: block;
  object-fit: cover;
}

.shop-package-preview-placeholder,
.shop-package-slot-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #6b7280;
  font-weight: 700;
}

.shop-package-preview-qty {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111214;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 12px 24px rgba(17, 18, 20, 0.14);
}

.shop-package-preview-copy {
  margin-top: 12px;
  display: grid;
  gap: 4px;
}

.shop-package-preview-copy strong,
.shop-package-slot-copy strong {
  color: #111214;
  font-size: 16px;
}

.shop-package-preview-copy span,
.shop-package-slot-copy span,
.shop-package-selector-head span,
.shop-package-slot-card small,
.shop-package-choice span {
  color: #5d6674;
  font-size: 13px;
  line-height: 1.4;
}

.shop-package-preview-copy small {
  width: fit-content;
  margin-top: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.95);
  color: #2457d6;
  font-size: 12px;
  font-weight: 800;
}

.shop-package-slot-card small {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.95);
  color: #2457d6;
  font-weight: 800;
  white-space: nowrap;
}

.shop-package-slot-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.shop-package-slot-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  text-align: left;
  cursor: pointer;
}

.shop-package-slot-thumb {
  width: 86px;
  height: 86px;
  overflow: hidden;
  border-radius: 18px;
  background: #e8eef8;
}

.shop-package-slot-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.shop-package-selector {
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(45, 108, 223, 0.07);
  border: 1px solid rgba(45, 108, 223, 0.1);
}

.shop-package-selector-head {
  display: grid;
  gap: 4px;
}

.shop-package-selector-head strong {
  color: #111214;
  font-size: 18px;
}

.shop-package-choice-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-top: 14px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.shop-package-choice {
  flex: 0 0 120px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  scroll-snap-align: start;
  min-height: 156px;
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}

.shop-package-choice:hover {
  transform: translateY(-1px);
  border-color: rgba(45, 108, 223, 0.26);
  background: rgba(239, 246, 255, 0.98);
}

.shop-package-choice-empty {
  width: 100%;
  padding: 16px 18px;
  border: 1px dashed rgba(45, 108, 223, 0.24);
  border-radius: 18px;
  color: #5d6674;
  background: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
}

.shop-package-choice img {
  aspect-ratio: 1 / 1;
}

.shop-package-choice[data-package-image-orientation="landscape"] img,
.shop-package-choice[data-package-image-category="collage"] img,
.shop-package-choice[data-package-image-category="group"] img {
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #eef2f7;
}

.shop-package-choice span {
  flex: 1 1 auto;
  display: block;
  padding: 10px 12px 12px;
  font-weight: 700;
}

.shop-package-floating-picker {
  position: sticky;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 24;
  margin: 18px -4px 0;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -12px 32px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(12px);
}

.shop-package-floating-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.shop-package-floating-head div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.shop-package-floating-head strong {
  color: #111214;
  font-size: 15px;
}

.shop-package-floating-head span {
  color: #5d6674;
  font-size: 13px;
  line-height: 1.35;
}

.shop-package-floating-close {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.98);
  color: #334155;
  font-weight: 800;
  cursor: pointer;
}

.shop-package-choice-row-floating {
  gap: 12px;
  margin-top: 12px;
  padding: 2px 2px 8px;
}

.shop-package-choice-row-floating .shop-package-choice {
  flex-basis: 128px;
  min-height: 166px;
  border-radius: 18px;
}

.shop-package-choice-row-floating .shop-package-choice.active {
  border-color: rgba(36, 87, 214, 0.62);
  background: rgba(248, 251, 255, 0.98);
  box-shadow: 0 0 0 2px rgba(36, 87, 214, 0.12), 0 14px 28px rgba(36, 87, 214, 0.11);
}

.shop-package-note {
  background: rgba(17, 18, 20, 0.05);
  border-color: rgba(17, 18, 20, 0.08);
}

.shop-package-actions {
  position: static;
  padding-top: 18px;
  background: none;
}

@media (max-width: 1040px) {
  .gallery-hero-shell,
  .gallery-offer-grid,
  .shop-order-layout,
  .shop-modal-layout,
  .gallery-secondary-offers {
    grid-template-columns: 1fr;
  }

  .shop-package-preview-board {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-preview-grid {
    grid-auto-columns: minmax(240px, 320px);
  }

  .shop-modal-image-stage img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }
}

@media (max-width: 760px) {
  .shop-top-action {
    display: none;
  }

  .gallery-hero-shell,
  .gallery-offers-shell,
  .gallery-quick-shell,
  .gallery-browser-shell,
  .single-order-shell,
  .checkout-shell-card {
    padding: 20px;
    border-radius: 28px;
  }

  .gallery-hero-shell {
    gap: 22px;
  }

  .gallery-hero-copy-block {
    padding: 2px 0 0;
  }

  .gallery-offer-grid,
  .gallery-photo-grid,
  .single-order-steps,
  .single-format-preview-grid,
  .shop-modal-format-grid {
    grid-template-columns: 1fr;
  }

  .gallery-offer-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(78vw, 78vw);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding: 6px 6px 10px;
    margin-left: -6px;
    margin-right: -6px;
  }

  .package-strip-orientation {
    display: grid;
    justify-items: center;
    gap: 5px;
  }

  .gallery-offer-card {
    scroll-snap-align: start;
  }

  .gallery-offer-card-primary {
    min-width: 86vw;
    transform: none;
  }

  .gallery-offer-grid-single {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .coupon-countdown-card {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
    padding: 14px;
    border-radius: 20px;
  }

  .coupon-countdown-clock {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-self: stretch;
    width: 100%;
    gap: 7px;
  }

  .coupon-countdown-clock div {
    min-width: 0;
    padding: 8px 4px 7px;
    border-radius: 13px;
  }

  .gallery-offer-card {
    scroll-snap-align: start;
  }

  .gallery-preview-grid {
    grid-template-columns: none;
    grid-auto-columns: minmax(84vw, 84vw);
    gap: 12px;
  }

  .gallery-preview-summary {
    gap: 8px;
  }

  .gallery-preview-summary span {
    font-size: 12px;
    padding: 8px 12px;
  }

  .gallery-preview-caption {
    padding: 11px 12px 13px;
  }

  .gallery-preview-caption strong {
    font-size: 13px;
  }

  .gallery-preview-caption small {
    font-size: 12px;
  }

  .gallery-filter-strip {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-bottom: 6px;
    margin-right: -4px;
  }

  .gallery-filter-chip {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .gallery-hero-title {
    max-width: none;
    font-size: 28px;
    line-height: 1.16;
    letter-spacing: -0.012em;
    font-weight: 680;
  }

  .gallery-hero-subline {
    max-width: none;
    font-size: 15px;
    line-height: 1.66;
  }

  .gallery-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gallery-hero-main-cta,
  .gallery-hero-secondary-cta {
    width: 100%;
  }

  .gallery-hero-visual {
    min-height: 320px;
    border-radius: 24px;
    background: #eef2f7;
    contain: paint;
  }

  .gallery-hero-visual img {
    object-fit: contain;
    object-position: center center;
    transform: none;
  }

  .gallery-hero-visual.gallery-hero-visual-portrait img {
    object-fit: contain;
    object-position: center center;
  }

  .gallery-hero-visual-label {
    left: 18px;
    right: 16px;
    bottom: 38px;
  }

  .gallery-offers-head h3 {
    font-size: 34px;
  }

  .gallery-offer-price,
  .gallery-secondary-price {
    font-size: 34px;
  }

  .gallery-offer-compare,
  .gallery-offer-value {
    font-size: 12px;
  }

  .gallery-photo-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-photo-meta span {
    margin-top: 4px;
  }

  .gallery-photo-visual,
  .gallery-photo-card-large[data-card-orientation="portrait"] .gallery-photo-visual {
    aspect-ratio: 4 / 5;
    background: #eef2f7;
    contain: paint;
  }

  .gallery-photo-card-large[data-card-orientation="landscape"] .gallery-photo-visual {
    aspect-ratio: 3 / 2;
    background: #eef2f7;
    contain: paint;
  }

  .gallery-photo-card-large[data-card-orientation="square"] .gallery-photo-visual {
    aspect-ratio: 1 / 1;
    background: #eef2f7;
    contain: paint;
  }

  .gallery-photo-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background: #eef2f7;
  }

  .gallery-photo-visual > .photo-frame,
  .gallery-photo-visual .photo-frame img {
    width: 100%;
    height: 100%;
    background: transparent;
  }

  .gallery-photo-visual .photo-frame img {
    object-fit: cover;
  }

  .gallery-photo-card-large {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.055);
    transition: none;
    contain: paint;
  }

  .gallery-photo-card-large:hover {
    transform: none;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.055);
  }

  .gallery-photo-visual::before {
    opacity: 0.045;
    transform: none;
  }

  .gallery-photo-card-large[data-card-actual-orientation="landscape"] .gallery-photo-visual::before,
  .gallery-photo-card-large[data-card-actual-orientation="square"] .gallery-photo-visual::before {
    opacity: 0.065;
    transform: none;
  }

  .gallery-open-label {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(17, 18, 20, 0.05);
  }

  .mobile-package-sticky {
    display: none;
  }

  .shop-modal-open .mobile-package-sticky {
    display: none;
  }

  .package-first-main {
    padding-bottom: 142px;
  }

  .shop-floating-checkout {
    left: 14px;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom, 0px));
    width: auto;
    justify-content: space-between;
    border-radius: 22px;
  }

  .shop-floating-checkout-summary {
    min-width: 0;
    flex: 1;
  }

  .shop-floating-checkout-button {
    padding: 0 18px;
  }

  .shop-cart-drawer {
    top: auto;
    right: 8px;
    bottom: 8px;
    left: 8px;
    width: auto;
    max-height: min(78vh, 720px);
    border-radius: 26px;
    transform: translateY(calc(100% + 24px));
  }

  .shop-cart-drawer-head {
    align-items: center;
  }

  .shop-cart-drawer-head h3 {
    font-size: 26px;
  }

  .shop-cart-drawer .shop-cart-entry {
    padding: 12px;
  }

  .shop-cart-drawer .shop-cart-entry-media {
    width: 88px;
    min-width: 88px;
  }


  .shop-cart-drawer-shell.is-open .shop-cart-drawer {
    transform: translateY(0);
  }

  .shop-modal-body {
    padding: 18px;
    padding-bottom: calc(var(--shop-modal-mobile-footer-height, 132px) + env(safe-area-inset-bottom, 0px) + 14px);
  }

  .shop-single-modal-body {
    padding: 0;
    padding-bottom: 0;
    overflow: auto;
  }

  .shop-modal-panel,
  .shop-modal-body {
    max-height: calc(100vh - 12px);
  }

  .shop-modal-image-stage {
    min-height: var(--shop-modal-stage-height, 48vh);
    height: var(--shop-modal-stage-height, 48vh);
  }

  .shop-single-modal-body .shop-modal-layout {
    grid-template-columns: 1fr;
    min-height: calc(100vh - 12px);
    height: auto;
  }

  .shop-single-modal-body .shop-modal-image-column {
    min-height: 0;
    height: auto;
    background: #f2f5f8;
  }

  .shop-single-modal-body .shop-modal-mobile-hero {
    display: grid;
    gap: 6px;
    padding: 16px 18px 10px;
    background: #fff;
  }

  .shop-single-modal-body .shop-modal-mobile-hero .shop-modal-image-title {
    font-size: 20px;
    line-height: 1.16;
    font-weight: 850;
  }

  .shop-single-modal-body .shop-modal-mobile-sizebar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(94px, 1fr));
    overflow: visible;
  }

  .shop-single-modal-body .shop-modal-mobile-size-chip {
    min-width: 0;
    padding: 11px 10px 10px;
    text-align: center;
  }

  .shop-single-modal-body .shop-modal-mobile-size-chip strong {
    white-space: nowrap;
    font-size: 15px;
  }

  .shop-single-modal-body .shop-modal-image-stage {
    flex: 0 0 var(--shop-modal-stage-height, 48vh);
    min-height: var(--shop-modal-stage-height, 48vh);
    height: var(--shop-modal-stage-height, 48vh);
    padding: 10px 12px;
    background: linear-gradient(180deg, #f5f8fb 0%, #edf2f7 100%);
  }

  .shop-single-modal-body .shop-modal-stage-slide {
    padding: 10px 12px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .shop-single-modal-body .shop-modal-stage-slide > img,
  .shop-single-modal-body .shop-modal-image-stage .shop-modal-stage-slide > img.shop-protected-image {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    background: transparent;
    border-radius: 16px;
    transform: none;
  }

  .shop-modal-stage-track {
    touch-action: pan-y;
  }

  .shop-modal-image-stage img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    background: #eef2f7;
  }

  .shop-single-modal-body .shop-modal-image-stage .shop-modal-stage-track .shop-modal-stage-slide > img.shop-modal-stage-fit-image.shop-protected-image {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
  }

  .shop-cart-entry-top,
  .shop-cart-entry-bottom {
    flex-wrap: wrap;
  }

  .shop-cart-entry-main {
    width: 100%;
  }

  .shop-cart-entry-media {
    flex-basis: 82px;
    width: 82px;
  }

  .shop-modal-order-column {
    position: static;
    margin-top: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .shop-single-modal-body .shop-modal-order-column {
    height: auto;
    padding: 0;
    background: #fff;
  }

  .shop-single-modal-body .shop-modal-order-scroll {
    overflow: visible;
    padding: 20px 16px calc(var(--shop-modal-mobile-footer-height, 132px) + env(safe-area-inset-bottom, 0px) + 18px);
  }

  .shop-single-modal-body .shop-modal-side-title {
    display: none;
  }

  .shop-modal-order-column h4 {
    margin-top: 8px;
    font-size: 24px;
  }

  .shop-modal-image-title {
    margin: 0;
    font-size: 13px;
    line-height: 1.16;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .shop-modal-head {
    margin-bottom: 8px;
    justify-content: stretch;
    gap: 10px;
    padding-bottom: 10px;
  }

  .shop-single-modal-body .shop-modal-head {
    position: absolute;
    top: 10px;
    right: 10px;
    width: auto;
    margin: 0;
    padding: 0;
  }

  .shop-modal-head-copy,
  .shop-modal-cart-banner {
    display: none;
  }

  .shop-modal-section-desktop,
  .shop-modal-upsell-desktop {
    display: none;
  }

  .shop-single-modal-body .shop-modal-action-overview,
  .shop-single-modal-body .shop-modal-action-cart {
    display: none;
  }

  .shop-modal-format-grid,
  .shop-modal-summary-box,
  .shop-modal-selection-note {
    display: none;
  }

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

  .shop-package-layout,
  .shop-package-preview-board {
    grid-template-columns: 1fr;
  }

  .shop-package-modal-body .coupon-countdown-card {
    grid-template-columns: 1fr;
  }

  .shop-package-modal-body .coupon-countdown-clock {
    min-width: 0;
    width: 100%;
  }

  .shop-package-slot-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .shop-package-slot-card small {
    grid-column: 2;
  }

  .shop-package-floating-picker {
    margin-inline: -6px;
    padding: 10px 8px max(10px, env(safe-area-inset-bottom));
    border-radius: 20px;
  }

  .shop-package-choice-row-floating .shop-package-choice {
    flex-basis: 38vw;
    max-width: 160px;
    min-width: 124px;
    min-height: 160px;
  }

  .shop-modal-head-actions {
    position: sticky;
    top: 0;
    z-index: 16;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    align-items: stretch;
    justify-content: stretch;
    gap: 8px;
    padding: 2px 0 0;
    background: transparent;
  }

  .shop-modal-head-button,
  .shop-modal-cart-view-btn-head {
    min-width: 0;
    min-height: 42px;
    padding: 0 12px;
    font-size: 13px;
    line-height: 1.1;
    flex: 0 0 auto;
  }

  .shop-modal-action-overview,
  .shop-modal-action-cart {
    display: inline-flex;
  }

  .shop-modal-action-cart {
    color: #fff;
    background: linear-gradient(135deg, #111214, #2d6cdf);
    border-color: transparent;
  }

  .shop-modal-action-close {
    background: #fff;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
  }

  .shop-single-modal-body .shop-modal-action-close {
    width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    color: transparent;
    font-size: 0;
  }

  .shop-modal-copy {
    font-size: 14px;
  }

  .shop-modal-mobile-hero {
    display: grid;
    gap: 8px;
    margin-bottom: 8px;
  }

  .shop-modal-mobile-meta {
    display: grid;
    gap: 4px;
  }

  .shop-modal-mobile-count {
    color: #7b8594;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
  }

  .shop-modal-mobile-sizebar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0 4px;
    scroll-snap-type: x proximity;
  }

  .shop-modal-mobile-size-chip {
    flex: 0 0 auto;
    min-width: 104px;
    padding: 12px 14px 11px;
    border-radius: 18px;
    border: 1px solid rgba(17, 18, 20, 0.08);
    background: rgba(247, 248, 250, 0.96);
    text-align: left;
    scroll-snap-align: start;
  }

  .shop-modal-mobile-size-chip strong,
  .shop-modal-mobile-size-chip span {
    display: block;
  }

  .shop-modal-mobile-size-chip strong {
    color: #111214;
    font-size: 15px;
    line-height: 1.08;
  }

  .shop-modal-mobile-size-chip span {
    margin-top: 5px;
    color: #647082;
    font-size: 13px;
    font-weight: 700;
  }

  .shop-modal-mobile-size-chip.active {
    background: #111214;
    border-color: #111214;
    box-shadow: 0 18px 32px rgba(17, 18, 20, 0.18);
  }

  .shop-modal-mobile-size-chip.active strong,
  .shop-modal-mobile-size-chip.active span {
    color: #fff;
  }

  .shop-modal-image-arrow {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .shop-modal-nav {
    display: none;
  }

  .shop-single-modal-body .shop-modal-nav {
    display: none;
    left: 14px;
    right: auto;
    bottom: calc(var(--shop-modal-stage-height, 48vh) + 12px);
  }

  .shop-modal-nav-btn {
    flex: 1 1 100%;
  }

  .shop-modal-upsell {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-modal-mobile-products {
    display: grid;
    margin-top: 16px;
    gap: 14px;
  }

  .shop-modal-upsell-mobile {
    margin-top: 0;
  }

  .shop-modal-order-actions {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    z-index: 12;
    margin-top: 0;
    padding: 6px 8px 8px;
    flex: none;
    border-radius: 18px;
    border: 1px solid rgba(17, 18, 20, 0.08);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.99));
  }

  .shop-modal-action-selection {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    padding: 7px 9px;
    border-radius: 14px;
  }

  .shop-modal-action-selection span {
    display: none;
  }

  .shop-modal-action-selection strong {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .shop-modal-action-selection em {
    font-size: 12px;
  }

  .shop-modal-order-summary-row {
    margin-top: 0;
    align-items: center;
  }

  .shop-modal-order-actions .qty button,
  .shop-modal-order-actions .qty span {
    padding: 7px 10px;
  }

  .shop-modal-order-actions .price {
    font-size: 28px;
    line-height: 0.98;
  }

  .shop-modal-order-actions .micro {
    line-height: 1.15;
  }

  .shop-modal-cart-cta {
    margin-top: 10px;
    min-height: 50px;
  }

  .shop-modal-cart-view-btn {
    margin-top: 8px;
    min-height: 46px;
  }

  .shop-modal-mobile-cart-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(17, 18, 20, 0.08);
  }

  .shop-modal-mobile-cart-link {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    font-weight: 800;
  }

.shop-modal-order-column > .gallery-section-kicker,
.shop-modal-order-column > h4,
.shop-modal-order-column > .shop-modal-copy {
  display: none;
}

  .shop-order-summary-card {
    position: static;
  }
}

.general-access-header-chip-muted {
  background: rgba(17, 18, 20, 0.05);
  color: #556071;
}

.general-access-header-chip-dark {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #111214;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.general-access-hero-band {
  padding-top: 22px;
}

.general-access-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
  gap: 24px;
  align-items: start;
}

.general-access-hero-copy,
.general-access-hero-card,
.general-access-overview-tile,
.general-access-gallery-toolbar,
.general-access-folder-section,
.general-access-empty-state,
.general-access-media-card,
.general-access-viewer-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 18, 20, 0.08);
  box-shadow: var(--shadow-soft);
}

.general-access-hero-copy {
  padding: 28px;
}

.general-access-kicker {
  margin: 0 0 10px;
  color: #6a7a9a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.general-access-hero-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.general-access-hero-name {
  margin-top: 12px;
  color: #3559e6;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.general-access-hero-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.general-access-hero-meta,
.general-access-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.general-access-hero-meta {
  margin-top: 18px;
}

.general-access-hero-meta span,
.general-access-folder-count,
.general-access-view-only-note {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.05);
  color: #556071;
  font-size: 13px;
  font-weight: 700;
}

.general-access-hero-cards {
  display: grid;
  gap: 14px;
}

.general-access-hero-card {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
}

.general-access-hero-card strong {
  font-size: 16px;
}

.general-access-hero-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.general-access-contact-list {
  display: grid;
  gap: 6px;
  margin-top: 4px;
}

.general-access-contact-list a,
.general-access-contact-list span {
  color: #3559e6;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  word-break: break-word;
}

.general-access-contact-list span {
  color: #5f6b80;
}

.general-access-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.general-access-section-head h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.03em;
}

.general-access-section-head p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 780px;
}

.general-access-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.general-access-overview-tile {
  overflow: hidden;
  padding: 0;
  text-align: left;
  border: 1px solid rgba(17, 18, 20, 0.08);
  cursor: pointer;
}

.general-access-overview-tile.is-active {
  border-color: rgba(53, 89, 230, 0.45);
  box-shadow: 0 18px 36px rgba(53, 89, 230, 0.14);
}

.general-access-tile-collage {
  display: grid;
  aspect-ratio: 16 / 10;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: #d9e5fb;
}

.general-access-tile-collage-cell {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(230, 238, 250, 0.95)),
    linear-gradient(135deg, rgba(53, 89, 230, 0.08), rgba(20, 184, 200, 0.08));
}

.general-access-tile-collage-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(230, 238, 250, 0.95));
}

.general-access-tile-collage-cell.is-empty::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(53, 89, 230, 0.06), rgba(20, 184, 200, 0.04)),
    repeating-linear-gradient(135deg, rgba(209, 221, 242, 0.5), rgba(209, 221, 242, 0.5) 10px, rgba(233, 239, 249, 0.68) 10px, rgba(233, 239, 249, 0.68) 20px);
}

.general-access-tile-collage-note {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #6a7a9a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.general-access-tile-body {
  display: grid;
  gap: 10px;
  padding: 18px 18px 16px;
}

.general-access-tile-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: #6a7690;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.general-access-tile-body strong {
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.general-access-tile-body p {
  margin: 0;
  color: #5f6b80;
  font-size: 15px;
  line-height: 1.55;
}

.general-access-tile-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #5f6b80;
  font-size: 13px;
  font-weight: 700;
}

.general-access-tile-action {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2), var(--accent));
}

.general-access-gallery-band {
  padding-top: 6px;
}

.general-access-gallery-toolbar {
  display: grid;
  gap: 16px;
  padding: 20px 22px;
  margin-bottom: 18px;
}

.general-access-toolbar-copy {
  display: grid;
  gap: 6px;
}

.general-access-toolbar-copy strong {
  font-size: 26px;
  letter-spacing: -0.03em;
}

.general-access-toolbar-copy span {
  color: var(--muted);
  line-height: 1.55;
}

.general-access-toolbar-btn {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: #3f4958;
  font-weight: 700;
  cursor: pointer;
}

.general-access-toolbar-btn.is-active {
  background: #111214;
  color: #fff;
  border-color: #111214;
}

.general-access-gallery-block {
  margin-top: 20px;
}

.general-access-empty-state {
  padding: 20px 22px;
  color: #5f6b80;
  font-size: 15px;
  line-height: 1.6;
}

.general-access-empty-state-premium {
  border-style: dashed;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.94));
}

.general-access-empty-state-wide {
  min-height: 150px;
  display: grid;
  place-items: center;
  text-align: center;
}

.general-access-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.general-access-folder-stack {
  display: grid;
  gap: 18px;
}

.general-access-folder-section {
  padding: 18px;
}

.general-access-folder-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.general-access-folder-head h4 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.general-access-folder-head p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.general-access-folder-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.general-access-media-card {
  overflow: hidden;
}

.general-access-media-card-portrait {
  box-shadow: none;
}

.general-access-media-visual {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(230, 238, 250, 0.95));
  cursor: pointer;
}

.general-access-media-visual-wide {
  aspect-ratio: 4 / 3;
}

.general-access-media-visual-portrait {
  aspect-ratio: 2 / 3;
}

.general-access-media-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.general-access-media-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.74);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.general-access-media-body {
  display: grid;
  gap: 6px;
  padding: 14px 14px 16px;
}

.general-access-media-body strong {
  font-size: 16px;
  line-height: 1.18;
}

.general-access-media-body span {
  color: #5f6b80;
  font-size: 14px;
  line-height: 1.45;
}

.general-access-media-body p {
  margin: 2px 0 0;
  color: #728096;
  font-size: 13px;
  line-height: 1.55;
}

.general-access-viewer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(12px);
}

.general-access-viewer.is-open {
  display: grid;
}

.general-access-viewer-card {
  width: min(1080px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  padding: 20px;
}

.general-access-viewer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.general-access-viewer-top strong {
  font-size: 24px;
  letter-spacing: -0.02em;
}

.general-access-viewer-top button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  background: #fff;
  font-weight: 700;
  cursor: pointer;
}

.general-access-viewer-body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  margin-top: 18px;
}

.general-access-viewer-stage {
  min-height: 420px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(230, 238, 250, 0.95));
}

.general-access-viewer-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.general-access-viewer-copy {
  display: grid;
  gap: 14px;
}

.general-access-viewer-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.general-access-viewer-copy dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.general-access-viewer-copy div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(17, 18, 20, 0.04);
}

.general-access-viewer-copy dt {
  margin: 0;
  color: #6b7690;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.general-access-viewer-copy dd {
  margin: 8px 0 0;
  color: #172033;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .general-access-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 920px) {
  .general-access-hero,
  .general-access-viewer-body {
    grid-template-columns: 1fr;
  }

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

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

  .general-access-viewer-stage {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .general-access-overview-grid,
  .general-access-media-grid,
  .general-access-folder-grid {
    grid-template-columns: 1fr;
  }

  .general-access-hero-copy,
  .general-access-gallery-toolbar,
  .general-access-folder-section,
  .general-access-viewer-card {
    padding: 18px;
  }

  .general-access-toolbar-actions {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .general-access-viewer {
    padding: 14px;
  }

  .general-access-viewer-card {
    width: min(100vw - 14px, 100%);
    max-height: calc(100vh - 14px);
  }

  .general-access-viewer-top {
    align-items: start;
    flex-direction: column;
  }
}

/* Emergency shop hero: match the stable portrait presentation with light side fill. */
.gallery-hero-visual,
.gallery-hero-visual.gallery-hero-visual-portrait,
.gallery-photo-visual {
  background: #eef2f7;
}

.gallery-hero-visual img,
.gallery-hero-visual.gallery-hero-visual-portrait img {
  object-fit: contain;
  object-position: center center;
}

/* Restore 15:00 gallery cards: keep every photo in the designed tall card frame. */
.gallery-photo-visual,
.gallery-photo-card-large[data-card-orientation="portrait"] .gallery-photo-visual,
.gallery-photo-card-large[data-card-orientation="landscape"] .gallery-photo-visual,
.gallery-photo-card-large[data-card-orientation="square"] .gallery-photo-visual {
  aspect-ratio: 2 / 3;
  background: #eef2f7;
}

.gallery-photo-visual > .photo-frame {
  width: 100%;
  height: 100%;
  background: transparent;
}

.gallery-photo-visual .photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
}
