@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #ffffff;
  --panel: #f6f8f7;
  --ink: #211417;
  --muted: #705f64;
  --accent: #c62692;
  --accent-strong: #9f1f75;
  --accent-soft: #fde7f5;
  --border: rgba(198, 38, 146, 0.13);
  --shadow-md: 0 14px 30px rgba(15, 23, 42, 0.10);
  --shadow-sm: 0 6px 16px rgba(15, 23, 42, 0.07);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  opacity: 1;
  transform: none;
  transition: none;
}

body.cart-drawer-open {
  overflow: hidden;
}

body.page-loaded {
  opacity: 1;
  transform: none;
}

body.page-exiting {
  opacity: 1;
  transform: none;
  transition: none;
}

main { width: 100%; }

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent-strong); }

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

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

.ambient { display: none; }

@media (prefers-reduced-motion: reduce) {
  body { opacity: 1; transform: none; transition: none; }
  body.page-exiting { opacity: 1; transform: none; }
}

.site-shell { position: relative; max-width: 1180px; width: 100%; margin: 0 auto; padding: 32px 18px 80px; z-index: 1; display: flex; flex-direction: column; gap: 28px; }
.site-shell--content { padding-top: 32px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: var(--surface);
  color: var(--ink);
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 20;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}
.site-header--blue {
  background: var(--surface);
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.site-header--blue .header-shell {
  background: transparent;
  border-bottom: none;
}
.site-header--blue .site-branding,
.site-header--blue .site-branding small {
  color: var(--ink);
}
.site-header--blue .brand-mark {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.site-header--blue a {
  color: var(--ink);
}
.site-header--blue .header-links a {
  color: var(--ink);
}
.site-header--blue .header-links a.active {
  background: var(--accent);
  color: #fff;
}
.site-header--blue .header-links a:hover {
  background: var(--accent-soft);
}

.topbar {
  width: 100%;
  background: #17201f;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 14px;
  font-weight: 700;
  font-size: 0.9rem;
}
.topbar-inner {
  width: min(1240px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar a {
  color: #fff;
  font-weight: 700;
}

.topbar-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-right {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.topbar-promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.header-shell {
  width: min(1380px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 32px;
  flex-wrap: wrap;
  background: transparent;
  border-bottom: none;
  position: relative;
}

.site-header a {
  color: var(--ink);
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.site-branding__logo {
  display: block;
  width: auto;
  height: 54px;
  max-width: 210px;
  object-fit: contain;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.site-branding small {
  color: var(--muted);
  font-size: 0.82rem;
}

.header-nav { flex: 1; display: flex; justify-content: center; }
.header-links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.header-links a {
  color: var(--ink);
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.header-links a.active {
  background: var(--accent);
  color: #fff;
}

.header-links a:hover {
  background: var(--accent-soft);
}

.search-inline {
  flex: 0 1 240px;
  max-width: 280px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.search-inline { display: none; }

.search-animated { position: relative; display: inline-flex; align-items: center; justify-content: flex-end; min-width: 46px; height: 46px; }
.search-animated__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--accent);
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.search-animated__toggle.active {
  transform: translateX(-260px) scale(0.9);
  opacity: 0;
  pointer-events: none;
}
.search-animated__bar {
  position: absolute;
  right: 0;
  width: 0;
  opacity: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(31,27,24,0.16);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px 10px 10px 42px;
  z-index: 30;
  pointer-events: none;
}
.search-animated__bar.active {
  width: 240px;
  opacity: 1;
  pointer-events: auto;
}
.search-animated__icon {
  position: absolute;
  left: 14px;
  opacity: 0;
  transition: opacity 0.2s ease;
  color: #9a928b;
}
.search-animated__bar.active .search-animated__icon { opacity: 0.8; }
.search-animated__input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 0.95rem;
  color: var(--ink);
}
.search-animated__input::placeholder { color: #9a928b; }
.search-animated__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: none;
  background: #f0ebe4;
  cursor: pointer;
  color: var(--ink);
  flex-shrink: 0;
}


.cart-menu {
  display: inline-flex;
}
.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--ink);
  border: 1px solid var(--border);
  background: #fff;
  font: inherit;
  cursor: pointer;
}
.cart-link:hover {
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-color: rgba(198, 38, 146, 0.34);
}
.cart-link.is-open {
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-color: rgba(198, 38, 146, 0.34);
}
.cart-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: inherit;
}
.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}
.cart-popover {
  position: fixed;
  top: 0;
  right: 0;
  width: min(430px, calc(100vw - 20px));
  height: 100dvh;
  padding: 22px 18px calc(20px + env(safe-area-inset-bottom));
  border-left: 1px solid var(--border);
  border-radius: 18px 0 0 18px;
  background: var(--surface);
  box-shadow: -18px 0 34px rgba(64, 45, 34, 0.16);
  z-index: 140;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 12px;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.cart-popover.is-open {
  transform: translateX(0);
  opacity: 1;
}
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(31, 27, 24, 0.46);
  opacity: 0;
  transition: opacity 0.28s ease;
  z-index: 130;
}
.cart-drawer-backdrop.is-open {
  opacity: 1;
}
.cart-popover__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(31, 27, 24, 0.08);
}
.cart-popover__header strong {
  display: block;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}
.cart-popover__header p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.cart-popover__close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(31, 27, 24, 0.12);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
.cart-popover__close:hover {
  background: var(--panel);
}
.cart-popover__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
}
.cart-popover__footer {
  padding-top: 14px;
  border-top: 1px solid rgba(31, 27, 24, 0.08);
  display: grid;
  gap: 12px;
  background: var(--surface);
}
.cart-popover__totals {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.cart-popover__totals span {
  color: var(--muted);
  font-size: 0.9rem;
}
.cart-popover__totals strong {
  font-size: 1.2rem;
}
.cart-popover__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.cart-popover .cart-item {
  padding: 10px 12px;
  border-radius: 14px;
}
.cart-popover .cart-item__controls {
  gap: 6px;
  align-items: center;
}
.cart-popover .cart-item__step,
.cart-popover .cart-item__remove,
.cart-popover .cart-item__quick {
  min-height: 34px;
}
.cart-item--preview {
  background: var(--panel);
  border-color: rgba(198, 38, 146, 0.2);
}
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.4rem;
}
/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--bg);
  padding: 64px 0 52px;
}
.hero::before { display: none; }
.hero__inner {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 48px;
  z-index: 1;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 18px;
  width: 100%;
}
.hero__eyebrow {
  margin: 0;
  color: var(--accent-strong);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__content h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(2.45rem, 5vw, 4.55rem);
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.lead {
  margin: 0;
  color: var(--muted);
  max-width: 560px;
  font-size: 1.08rem;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 8px;
}
.hero__actions .primary {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 10px;
}
.hero__actions .secondary {
  padding: 14px 24px;
  font-size: 1rem;
  border-radius: 10px;
}
.hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.hero__notes span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}
.hero__media {
  width: 100%;
  display: grid;
  gap: 14px;
  align-self: stretch;
}
.hero__image {
  width: 100%;
  margin: 0;
  min-height: 440px;
  border-radius: 0;
  overflow: visible;
  border: 0;
  box-shadow: none;
  background: transparent;
}
.hero__image img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: contain;
  object-position: center;
  display: block;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 10px;
}
.hero__stat {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.hero__stat strong {
  font-size: 1.4rem;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}
.hero__stat span {
  color: var(--muted);
  font-size: 0.82rem;
  text-align: left;
  line-height: 1.4;
}

/* Steps */
.step-indicator { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 10px; }
.step-indicator span { border-radius: 999px; padding: 12px; text-align: center; background: var(--surface); color: var(--muted); font-weight: 700; border: 1px solid var(--border); cursor: pointer; }
.step-indicator span.active { background: var(--accent); color: #fff; border-color: var(--accent); }

.support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.support-grid article { background: var(--panel); border-radius: 16px; padding: 20px; border: 1px solid var(--border); }
.support-grid p { color: var(--muted); }
.support-card { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.support-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 62px; height: 62px; font-size: 2.1rem; }
.support-card--delivery { background: #fff; border-color: var(--border); }
.support-card--delivery h4 { color: var(--accent); }
.support-card--delivery p { color: var(--muted); }
.support-card--delivery .support-card__icon { color: var(--accent); }
.support-card--whatsapp { background: #fff; border-color: var(--border); border-radius: 16px; }
.support-card--whatsapp h4, .support-card--whatsapp p { color: #3aaa35; }
.support-card--whatsapp .support-card__icon { color: #3aaa35; }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #3aaa35;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  border: none;
  text-decoration: none;
  z-index: 400;
}
.floating-whatsapp:hover { transform: translateY(-1px); }
.floating-whatsapp:active { transform: translateY(0); }

.floating-messenger {
  position: fixed;
  right: 18px;
  bottom: 86px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent-strong);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: none;
  text-decoration: none;
  z-index: 400;
}
.floating-messenger:hover { transform: translateY(-1px); }
.floating-messenger:active { transform: translateY(0); }

.card { background: var(--panel); border-radius: var(--radius-lg); padding: 28px 32px; border: 1px solid var(--border); }
.card + .card { margin-top: 6px; }
.card-header h2 { margin: 0; font-size: 1.8rem; letter-spacing: -0.01em; }
.card-header p { margin-top: 6px; color: var(--muted); }

.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin-top: 18px; }
.upload-panel { display: flex; flex-direction: column; gap: 14px; }
#file-input { position: absolute; opacity: 0; pointer-events: none; width: 1px; height: 1px; overflow: hidden; }
.upload-zone { border-radius: 14px; border: 1px dashed rgba(31, 27, 24, 0.34); padding: 26px; background: var(--panel); text-align: center; display: flex; flex-direction: column; gap: 10px; box-shadow: none; }
.upload-zone.is-dragover { border-color: var(--accent-strong); background: var(--accent-soft); box-shadow: none; }
.upload-zone button, .upload-zone__pick {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.upload-zone button:hover, .upload-zone__pick:hover { transform: translateY(-1px); }

.preview-scroll { max-height: 400px; overflow-y: auto; border-radius: 14px; border: 1px solid rgba(31,27,24,0.08); background: #fff; padding: 10px; }
.preview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; }
.preview-card { background: var(--panel); border-radius: 14px; border: 1px solid rgba(31,27,24,0.08); padding: 12px; display: flex; flex-direction: column; gap: 10px; box-shadow: var(--shadow-sm); }
.preview-card img { width: 100%; height: 140px; border-radius: 10px; object-fit: cover; }
.info { display: flex; flex-direction: column; gap: 8px; }
.info strong { color: var(--ink); }
.info p { color: #9a928b; margin: 0; }
.info label { font-size: 0.9rem; color: var(--muted); display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.info input, .info select { width: 110px; border: 1px solid rgba(31,27,24,0.14); border-radius: 10px; padding: 6px 8px; }

.summary-panel { display: flex; flex-direction: column; gap: 14px; }
.price-card { padding: 18px; border-radius: 14px; background: var(--panel); border: 1px solid var(--border); }
.price-card__toggle { margin-top: 10px; background: var(--accent); color: #fff; border: none; border-radius: 999px; padding: 10px 18px; font-weight: 700; cursor: pointer; }
.price-card__table { margin-top: 12px; border-radius: 12px; overflow: hidden; border: 1px solid rgba(31,27,24,0.08); background: #fff; }
.price-card table { width: 100%; border-collapse: collapse; }
.price-card th, .price-card td { border: 1px solid rgba(31,27,24,0.08); padding: 8px; font-size: 0.9rem; text-align: center; }

.summary { display: flex; flex-direction: column; gap: 8px; color: var(--muted); }
.summary select { border-radius: 10px; border: 1px solid rgba(31,27,24,0.12); padding: 6px 8px; }
.note { color: var(--muted); font-size: 0.92rem; }

.album-section { margin-top: 20px; padding: 18px; border-radius: 14px; border: 1px solid var(--border); background: #fff; display: grid; gap: 12px; }
.album-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; }
.album-card { background: #fff; border-radius: 12px; border: 1px solid var(--border); padding: 12px; display: flex; flex-direction: column; gap: 8px; font-weight: 700; }
.album-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  background: var(--panel);
}
.album-card span { color: var(--muted); font-weight: 500; }
.album-card select { border-radius: 10px; border: 1px solid rgba(31,27,24,0.14); padding: 6px 8px; }
.album-card__toggle {
  align-self: flex-start;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--accent-strong);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.album-card__description {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
}
.album-card__select {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.actions { margin-top: 16px; display: flex; justify-content: flex-end; gap: 10px; }
.primary, .secondary { border-radius: 14px; padding: 11px 22px; font-weight: 800; border: none; cursor: pointer; transition: transform 0.2s ease; display: inline-flex; align-items: center; justify-content: center; gap: 6px; text-decoration: none; }
.primary { background: var(--accent); color: #fff; }
.secondary { background: var(--panel); color: var(--ink); border: 1px solid var(--border); }
.primary:hover, .secondary:hover { transform: translateY(-1px); }
.primary.is-disabled, .secondary.is-disabled, .primary:disabled, .secondary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

.modal { position: fixed; inset: 0; background: rgba(31,27,24,0.55); display: none; align-items: center; justify-content: center; padding: 20px; z-index: 250; }
.modal.show { display: flex; }
.modal-content { background: #fff; border-radius: 14px; padding: 22px; text-align: center; box-shadow: var(--shadow-md); max-width: 440px; width: min(440px, 100%); }
.modal-actions { margin-top: 12px; display: flex; justify-content: center; gap: 8px; }

.payment-options { display: flex; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.payment { flex: 1; border: 1px solid var(--border); border-radius: 12px; padding: 12px; background: var(--panel); text-align: center; font-weight: 700; cursor: pointer; }
.payment.active { border-color: var(--accent-strong); background: var(--accent-soft); }
.payment input { display: none; }

.inline { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
label { display: flex; flex-direction: column; gap: 6px; font-weight: 700; color: var(--ink); }
label input, label textarea { width: 100%; border: 1px solid rgba(31,27,24,0.1); border-radius: 12px; padding: 10px; }

.placeholder { color: var(--muted); text-align: center; }

/* Order page refresh */
.order-page {
  background: #ffffff;
}
.order-page .site-shell { max-width: 1140px; gap: 16px; }
.order-page .order-hero {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: 0 22px 44px rgba(31, 27, 24, 0.08);
}
.order-page .order-hero__eyebrow {
  margin: 0 0 8px;
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-strong);
  background: var(--accent-soft);
}
.order-page .order-hero h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.2;
}
.order-page .order-hero p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 760px;
}
.order-page .step-indicator {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.order-page .step-indicator span {
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(31, 27, 24, 0.05);
}
.order-page .step-indicator span.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.order-page .mobile-total-bar {
  display: none;
}
.order-page .card {
  border-radius: 0;
  border: 1px solid rgba(31, 27, 24, 0.08);
  box-shadow: 0 16px 36px rgba(31, 27, 24, 0.09);
}
.order-page .form-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 1fr);
  align-items: start;
}
.order-page .upload-zone {
  border: 2px dashed rgba(198, 38, 146, 0.32);
  border-radius: 14px;
  padding: 30px 22px;
  background: var(--panel);
}
.order-page .upload-zone.is-dragover {
  border-color: var(--accent-strong);
  background: var(--accent-soft);
}
.order-page .upload-zone__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: #fff;
  border: 1px solid rgba(198, 38, 146, 0.22);
  box-shadow: 0 8px 18px rgba(31, 27, 24, 0.08);
}
.order-page .upload-zone h3 {
  margin: 2px 0 0;
  font-size: 1.08rem;
}
.order-page .upload-zone__hint {
  margin: 0;
  color: var(--muted);
}
.order-page .upload-zone__subhint {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.order-page .preview-scroll {
  border-radius: 0;
  border: 1px solid var(--border);
  background: #ffffff;
}
.order-page .preview-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.order-page .preview-card {
  border-radius: 0;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 12px 24px rgba(31, 27, 24, 0.06);
}
.order-page .preview-card__media {
  position: relative;
}
.order-page .preview-card__remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 0;
  background: rgba(31, 27, 24, 0.7);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}
.order-page .preview-card__remove:hover {
  background: rgba(31, 27, 24, 0.9);
}
.order-page .summary-panel {
  gap: 12px;
  position: sticky;
  top: 92px;
}
.order-page .price-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.order-page .summary {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  color: var(--muted);
}
.order-page .summary h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--ink);
}
.order-page .summary-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(31, 27, 24, 0.1);
}
.order-page .summary-row strong {
  text-align: right;
}
.order-page .summary-paper {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}
.order-page .summary-paper select {
  margin-top: 6px;
}
.order-page .summary-row--total {
  margin-top: 8px;
  border: 1px solid var(--accent);
  padding: 12px 14px;
  border-radius: 0;
  background: var(--accent);
  box-shadow: none;
  color: #fff;
}
.order-page .summary-row--total span {
  color: rgba(255, 255, 255, 0.86);
}
.order-page .summary-row--total strong {
  color: #fff;
  font-size: 1.16rem;
  letter-spacing: 0.01em;
}
.order-page .delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.order-page .delivery-form__full {
  grid-column: 1 / -1;
}
.order-page .delivery-form__inline {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(160px, 0.7fr);
  gap: 12px;
  align-items: end;
}
.order-page .card-header p {
  color: var(--muted);
}
.order-page label input,
.order-page label textarea,
.order-page label select {
  border-radius: 0;
  border: 1px solid rgba(31, 27, 24, 0.16);
  background: #fcfdff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.order-page label input:focus,
.order-page label textarea:focus,
.order-page label select:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(198, 38, 146, 0.14);
}
.order-page .payment-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.order-page .payment {
  text-align: left;
  border: 1px solid rgba(31, 27, 24, 0.14);
  background: #fff;
  border-radius: 0;
}
.order-page .payment.active {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.order-page .album-section,
.order-page .album-card,
.order-page .album-card select,
.order-page .price-card__table,
.order-page .step-indicator span,
.order-page .primary,
.order-page .secondary {
  border-radius: 0;
}
.order-page .payment-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.order-page .payment-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--accent-soft);
  border: 1px solid rgba(198, 38, 146, 0.18);
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 700;
}
.order-page .actions {
  margin-top: 18px;
}
.order-page .primary,
.order-page .secondary {
  min-height: 46px;
}

.site-shell--shop { display: flex; flex-direction: column; gap: 22px; }
.shop-hero { background: var(--surface); border-radius: var(--radius-lg); padding: 30px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.shop-hero__content h2 { margin-top: 4px; font-size: clamp(1.9rem, 3vw, 2.5rem); }
.shop-hero__content p { color: var(--muted); }
.shop-hero__meta { display: flex; flex-direction: column; gap: 8px; }
.badge { display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; padding: 8px 12px; background: var(--accent-soft); border: 1px solid rgba(198, 38, 146, 0.2); font-weight: 700; color: var(--ink); }
.product-section { background: var(--surface); border-radius: 16px; padding: 28px; border: 1px solid var(--border); display: flex; flex-direction: column; gap: 18px; }
.section-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.section-heading p { color: var(--muted); }
.shop-toolbar { display: flex; gap: 8px; flex-wrap: wrap; }
.pill { border-radius: 10px; padding: 6px 10px; background: var(--panel); border: 1px solid var(--border); font-weight: 700; color: var(--ink); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.product-card { background: #fff; border-radius: 14px; border: 1px solid var(--border); display: flex; flex-direction: column; overflow: hidden; min-height: 300px; }
.product-card__visual { min-height: 160px; display: flex; align-items: flex-end; justify-content: flex-end; padding: 14px; background: #fde7f5; color: var(--accent-strong); font-weight: 700; }
.product-card__visual img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: 10px;
}
.product-card__body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-card__tag { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.product-card__description { color: var(--muted); line-height: 1.5; }
.product-card__footer { margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.product-card__price { font-weight: 800; font-size: 1.1rem; }
.product-card--album .product-card__visual {
  background: #fff1d8;
}
.product-card__album-picker {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
}
.product-card__album-picker select {
  min-width: 78px;
  border-radius: 10px;
  border: 1px solid rgba(31,27,24,0.14);
  padding: 7px 10px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.blog-article { max-width: 780px; margin: 0 auto; gap: 16px; }
.blog-article h1 { margin: 0; font-size: 2rem; line-height: 1.25; }
.blog-article__cover { width: 100%; max-height: 420px; object-fit: cover; border-radius: 14px; }
.blog-article__content { display: flex; flex-direction: column; gap: 16px; line-height: 1.7; color: var(--ink); }
.blog-article__content p { margin: 0; }

/* Contact page */
.contact-page {
  gap: 24px;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.contact-hero__content,
.contact-hero__panel,
.contact-card,
.contact-details {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}

.contact-hero__content {
  padding: clamp(28px, 5vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.contact-hero__content h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
}

.contact-hero__content p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.contact-hero__panel {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--panel);
}

.contact-hero__icon,
.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 1.45rem;
}

.contact-hero__panel h2,
.contact-card h2 {
  margin: 0;
  line-height: 1.2;
}

.contact-hero__panel p,
.contact-card p,
.contact-details p {
  margin: 0;
  color: var(--muted);
}

.contact-hero__panel dl,
.contact-details dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.contact-hero__panel dl div,
.contact-details dl div {
  display: grid;
  gap: 2px;
}

.contact-hero__panel dt,
.contact-details dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-hero__panel dd,
.contact-details dd {
  margin: 0;
  font-weight: 850;
  overflow-wrap: anywhere;
}

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

.contact-card {
  min-height: 320px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card > a {
  margin-top: auto;
  width: fit-content;
}

.contact-card--whatsapp .contact-card__icon {
  background: rgba(58, 170, 53, 0.13);
  color: #2f8f2d;
}

.contact-details__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 20px;
}

.contact-details address {
  margin: 0;
  padding: 18px;
  border-radius: 14px;
  background: var(--panel);
  color: var(--ink);
  font-style: normal;
  font-weight: 750;
  line-height: 1.8;
}

@media (max-width: 860px) {
  .contact-hero,
  .contact-grid,
  .contact-details__grid {
    grid-template-columns: 1fr;
  }

  .contact-hero__content,
  .contact-hero__panel,
  .contact-card {
    padding: 22px;
  }

  .contact-hero__actions .primary,
  .contact-hero__actions .secondary,
  .contact-card > a {
    width: 100%;
  }
}

/* Success page */
.success-page {
  gap: 18px;
}

.success-hero,
.success-error {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.success-hero__content,
.success-receipt,
.success-payment,
.success-metrics article,
.success-panel,
.success-next,
.success-items,
.success-error {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.success-hero__content,
.success-error {
  padding: clamp(28px, 5vw, 52px);
}

.success-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.success-icon,
.success-error__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 1.65rem;
}

.success-error__icon {
  background: #b45309;
}

.success-hero h1,
.success-error h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 1.02;
}

.success-hero__content p,
.success-error p,
.success-next p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.success-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.success-receipt {
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  background: var(--panel);
}

.success-receipt > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.success-receipt > strong {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.success-receipt dl,
.success-details {
  display: grid;
  gap: 10px;
  margin: 0;
}

.success-receipt dl div,
.success-details div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid rgba(198, 38, 146, 0.12);
}

.success-receipt dt,
.success-details dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.success-receipt dd,
.success-details dd {
  margin: 0;
  font-weight: 850;
  text-align: right;
  overflow-wrap: anywhere;
}

.success-payment {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #f7fffd;
}

.success-payment i {
  color: var(--accent-strong);
  font-size: 1.25rem;
}

.success-payment p {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
}

.success-payment--verify_failed {
  background: #fff7ed;
  border-color: rgba(180, 83, 9, 0.22);
}

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

.success-metrics article {
  min-height: 110px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.success-metrics span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.success-metrics strong {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.1;
}

.success-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 18px;
}

.success-panel,
.success-next,
.success-items {
  padding: 24px;
}

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

.success-panel__header h2,
.success-next h2,
.success-item-card h3 {
  margin: 0;
  line-height: 1.2;
}

.success-panel__header span {
  color: var(--muted);
  font-weight: 800;
  text-align: right;
}

.success-next {
  background: var(--panel);
}

.success-next ol {
  display: grid;
  gap: 10px;
  margin: 14px 0 16px;
  padding-left: 20px;
}

.success-next li {
  color: var(--ink);
  font-weight: 750;
}

.success-item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.success-item-card {
  min-height: 220px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.success-item-card > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.success-item-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 1.15rem;
}

.success-item-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.success-item-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(198, 38, 146, 0.12);
}

.success-item-card li span {
  color: var(--muted);
  font-weight: 750;
}

.success-item-card li strong {
  text-align: right;
}

@media (max-width: 900px) {
  .success-hero,
  .success-error,
  .success-layout,
  .success-metrics {
    grid-template-columns: 1fr;
  }

  .success-panel__header,
  .success-receipt dl div,
  .success-details div,
  .success-item-card li {
    flex-direction: column;
  }

  .success-panel__header span,
  .success-receipt dd,
  .success-details dd,
  .success-item-card li strong {
    text-align: left;
  }

  .success-hero__actions .primary,
  .success-hero__actions .secondary {
    width: 100%;
  }
}

.cart-summary { background: #fff; border-radius: 14px; padding: 24px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.cart-summary__content { flex: 1 1 420px; display: grid; gap: 14px; }
.cart-summary__list { display: flex; flex-direction: column; align-items: stretch; gap: 10px; }
.cart-summary__aside { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; min-width: 220px; }
.cart-summary__details { display: flex; flex-direction: column; gap: 2px; }
.cart-summary__details strong { font-size: 1.6rem; }
.cart-summary__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  width: 100%;
  min-width: 0;
  max-width: none;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 13px;
  border: 1px solid rgba(31, 27, 24, 0.08);
  background: var(--panel);
}
.cart-item--package {
  background: var(--accent-soft);
  border-color: rgba(198, 38, 146, 0.22);
}
.cart-item--album {
  background: #fff1d8;
  border-color: rgba(143, 87, 18, 0.18);
}
.cart-item__info { display: flex; flex-direction: column; gap: 2px; }
.cart-item__heading {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.cart-item__meta { display: flex; flex-wrap: wrap; gap: 5px; color: var(--muted); font-size: 0.82rem; line-height: 1.3; }
.cart-item__badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 3px 7px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 700;
}
.cart-item__controls { display: inline-flex; align-items: center; flex-wrap: wrap; justify-content: flex-end; gap: 6px; }
.cart-item__line-price {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ink);
}
.cart-item__step, .cart-item__remove {
  border: 1px solid rgba(31,27,24,0.12);
  background: #fff;
  color: var(--ink);
  border-radius: 9px;
  min-width: 30px;
  min-height: 30px;
  padding: 0 9px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.cart-item__quick {
  border: 1px solid rgba(31,27,24,0.12);
  background: #fff;
  color: var(--ink);
  border-radius: 9px;
  min-height: 30px;
  padding: 0 9px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.cart-item__qty { min-width: 20px; text-align: center; font-weight: 800; }
.shop-cart-list { display: flex; flex-direction: column; align-items: stretch; gap: 10px; }
.shop-cart-panel__summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px dashed rgba(198, 38, 146, 0.26);
  background: var(--panel);
}
.shop-cart-panel__summary span {
  display: block;
  font-size: 0.84rem;
  color: var(--muted);
}
.shop-cart-panel__summary strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
  color: var(--ink);
}
.shop-cart-panel__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; margin-top: 12px; }
.shop-cart-panel--empty .shop-cart-panel__actions { justify-content: flex-start; }

.site-footer {
  width: 100%;
  background: #1f1719;
  color: #ffffff;
  padding: 52px 0 22px;
  border-top: 0;
}
.site-footer a {
  color: inherit;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.site-shell--footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(150px, 0.7fr) minmax(260px, 1fr) minmax(220px, 0.9fr);
  align-items: start;
  gap: 34px;
  padding-top: 0;
  padding-bottom: 0;
}
.footer__intro,
.footer__nav,
.footer__company,
.footer__address {
  min-width: 0;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.footer__logo-image {
  display: block;
  width: auto;
  height: 48px;
  max-width: 220px;
  object-fit: contain;
}
.footer__logo span {
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
}
.footer__intro p {
  margin: 16px 0 18px;
  max-width: 360px;
  color: rgba(255, 248, 249, 0.74);
}
.footer__contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
.footer__contact-actions a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 248, 249, 0.9);
  font-weight: 700;
}
.footer__contact-actions a:hover,
.footer__logo:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}
.footer__contact-actions i {
  color: #f3b3bf;
}
.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__social a:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--accent-strong);
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer__heading {
  display: block;
  margin-bottom: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f3b3bf;
  font-weight: 800;
}
.footer__nav a {
  width: fit-content;
  font-weight: 700;
  color: rgba(255, 248, 249, 0.78);
}
.footer__nav a:hover {
  color: #fff;
}
.footer__company-list {
  display: grid;
  gap: 9px;
  margin: 0;
}
.footer__company-list div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  padding-bottom: 9px;
  border-bottom: 0;
}
.footer__company-list dt {
  color: rgba(255, 248, 249, 0.58);
  font-size: 0.84rem;
  font-weight: 700;
}
.footer__company-list dd {
  margin: 0;
  color: rgba(255, 248, 249, 0.9);
  font-weight: 800;
  overflow-wrap: anywhere;
}
.footer__address address {
  margin: 0;
  color: rgba(255, 248, 249, 0.82);
  font-style: normal;
  font-weight: 650;
  line-height: 1.8;
}
.footer__legal {
  max-width: 1180px;
  margin: 34px auto 0;
  padding: 18px 18px 0;
  border-top: 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 248, 249, 0.62);
}
.footer__legal small {
  display: block;
}
.footer__avora-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 14px auto 0;
}
.footer__avora-logo img {
  display: block;
  width: auto;
  height: 34px;
  max-width: 180px;
  object-fit: contain;
}

@media (max-width: 960px) {
  .site-shell--footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }
  .order-page .topbar {
    padding: 6px 10px;
  }
  .order-page .topbar-inner {
    justify-content: center;
  }
  .order-page .topbar-right {
    display: none;
  }
  .order-page .topbar-left {
    font-size: 0.84rem;
    gap: 6px;
  }
  .order-page .order-hero {
    padding: 24px 20px;
  }
  .order-page .order-hero p {
    max-width: none;
  }
  .order-page .step-indicator {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .order-page .step-indicator span {
    flex: 0 0 auto;
    min-width: 178px;
    white-space: nowrap;
    scroll-snap-align: start;
  }
  .order-page .step-indicator::-webkit-scrollbar {
    height: 6px;
  }
  .order-page .step-indicator::-webkit-scrollbar-thumb {
    background: rgba(31, 27, 24, 0.22);
    border-radius: 999px;
  }
  .cart-summary__aside {
    width: 100%;
    align-items: flex-start;
  }
  .cart-summary__actions {
    justify-content: flex-start;
  }
  .cart-item {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    max-width: none;
  }
  .cart-item__controls {
    justify-content: flex-start;
  }
  .shop-cart-panel__summary {
    grid-template-columns: 1fr;
  }
  .cart-popover {
    width: min(400px, calc(100vw - 12px));
  }
  .header-shell {
    width: 100%;
    padding: 10px 14px;
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    align-items: center;
    gap: 10px;
    position: relative;
  }
  .header-actions { justify-content: center; }
  .menu-toggle { display: inline-flex; order: 3; }
  .site-branding { order: 0; }
  .site-branding__logo { height: 42px; max-width: 150px; }
  .site-branding small { display: none; }
  .search-animated { width: auto; justify-content: flex-end; order: 1; }
  .cart-menu { order: 2; }
  .cart-link { margin-left: 0; }
  .header-nav {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    display: flex;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0 12px;
    box-shadow: 0 16px 32px rgba(31,27,24,0.18);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all 0.25s ease;
  }
  .header-nav.open {
    padding: 12px;
    max-height: 400px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .header-links { width: 100%; flex-direction: column; align-items: flex-start; }
  .header-links a { width: 100%; }
  .search-animated { width: 100%; justify-content: flex-end; position: relative; }
  .search-animated__toggle.active { transform: none; opacity: 1; pointer-events: auto; }
  .search-animated__bar {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    height: 48px;
    opacity: 0;
    padding: 0;
    transform: translateY(-8px) scaleY(0);
    transform-origin: top center;
  }
  .search-animated__bar.active {
    padding: 10px 10px 10px 42px;
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
  .search-animated__input { font-size: 0.94rem; }
  .hero { padding: 46px 0 42px; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 18px;
  }
  .hero__content { gap: 18px; max-width: 720px; }
  .hero__image,
  .hero__image img {
    min-height: 360px;
  }
  .order-page .form-grid {
    grid-template-columns: 1fr;
  }
  .order-page .summary-panel {
    position: static;
    top: auto;
  }
}

@media (max-width: 720px) {
  body { padding-bottom: 32px; }
  .order-page { padding-bottom: calc(88px + env(safe-area-inset-bottom)); }
  .cart-popover {
    width: 100vw;
    border-radius: 0;
    border-left: none;
    padding: 18px 14px calc(18px + env(safe-area-inset-bottom));
  }
  .cart-popover__actions {
    justify-content: stretch;
  }
  .cart-popover__actions .primary,
  .cart-popover__actions .secondary {
    flex: 1 1 100%;
  }
  .hero { padding: 34px 0 32px; }
  .hero__inner { padding: 0 16px; }
  .hero__content { gap: 16px; }
  .hero__content h1 { font-size: clamp(2.25rem, 11vw, 3rem); }
  .hero__actions { width: 100%; }
  .hero__actions .primary, .hero__actions .secondary { flex: 1 1 100%; padding: 13px 18px; font-size: 0.96rem; }
  .hero__notes { gap: 6px; }
  .hero__notes span { font-size: 0.82rem; }
  .hero__image,
  .hero__image img {
    min-height: 280px;
  }
  .hero__stats { grid-template-columns: 1fr; }
  .hero__stat { padding: 16px 12px; }
  .hero__stat strong { font-size: 1.3rem; }
  .actions { flex-direction: column; align-items: stretch; }
  .summary-panel { order: -1; }
  .site-shell { padding: 22px 14px 48px; }
  .site-footer { padding: 32px 0 18px; }
  .site-shell--footer {
    grid-template-columns: 1fr;
    padding: 0 18px;
    gap: 26px;
  }
  .footer__intro p {
    max-width: none;
  }
  .footer__contact-actions a {
    width: 100%;
    justify-content: flex-start;
  }
  .footer__company-list div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .footer__legal {
    margin-top: 26px;
    padding: 16px 18px 0;
  }
  .order-page .order-hero {
    padding: 22px 18px;
    border-radius: 18px;
  }
  .order-page .order-hero__eyebrow {
    font-size: 0.72rem;
    padding: 4px 8px;
  }
  .order-page .order-hero h1 {
    font-size: 1.55rem;
    line-height: 1.24;
  }
  .order-page .order-hero p {
    font-size: 0.94rem;
  }
  .order-page .mobile-total-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 240;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 14px;
    background: var(--accent);
    color: #fff;
    border: 1px solid var(--accent);
    box-shadow: 0 14px 30px rgba(64, 45, 34, 0.18);
  }
  .order-page .mobile-total-bar span {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.88);
  }
  .order-page .mobile-total-bar strong {
    font-size: 1.04rem;
    font-weight: 800;
    letter-spacing: 0.01em;
  }
  .order-page .step-indicator {
    gap: 7px;
  }
  .order-page .step-indicator span {
    min-width: 162px;
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  .order-page .topbar-left span {
    font-size: 0.8rem;
  }
  .order-page .header-shell {
    grid-template-columns: auto 1fr auto auto;
    gap: 8px;
  }
  .order-page .site-branding strong {
    font-size: 1.02rem;
    letter-spacing: 0;
  }
  .order-page .cart-link {
    padding: 9px 10px;
    gap: 6px;
  }
  .order-page .cart-link span:nth-child(2) {
    display: none;
  }
  .order-page .summary-panel {
    order: 0;
  }
  .order-page .delivery-grid {
    grid-template-columns: 1fr;
  }
  .order-page .delivery-form__full {
    grid-column: auto;
  }
  .order-page .delivery-form__inline {
    grid-template-columns: 1fr;
  }
  .order-page .payment-options {
    grid-template-columns: 1fr;
  }
}

/* Modern checkout */
.order-page {
  background: #fff;
}

.order-checkout-shell {
  max-width: 1440px;
  gap: 18px;
  padding-top: 24px;
}

.order-page .order-hero {
  padding: 24px 0 10px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.order-page .order-hero__eyebrow {
  display: inline-flex;
  width: auto;
  margin: 0 0 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
}

.order-page .order-hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.order-page .order-hero p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
}

.order-checkout-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
}

.order-steps-panel,
.order-page .summary-panel {
  position: sticky;
  top: 112px;
}

.order-page .step-indicator {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(198, 38, 146, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.order-page .step-indicator span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border-radius: 14px;
  text-align: left;
  background: transparent;
  color: #5f6b67;
  border: 1px solid transparent;
}

.order-page .step-indicator span b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef3f1;
  color: var(--accent-strong);
  font-size: 0.86rem;
}

.order-page .step-indicator span.active {
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-color: rgba(198, 38, 146, 0.18);
}

.order-page .step-indicator span.active b {
  background: var(--accent);
  color: #fff;
}

.order-flow {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.order-page .card.order-step-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.07);
  opacity: 1;
  transform: translateY(0);
}

.order-page .card.order-step-card.is-transitioning {
  animation: checkoutStepIn 180ms ease-out;
}

@keyframes checkoutStepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.order-page .card-header {
  margin-bottom: 18px;
}

.order-page .card-header h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.08;
}

.order-page .card-header p {
  margin: 8px 0 0;
  color: var(--muted);
}

.order-step-kicker {
  margin: 0 0 8px !important;
  color: var(--accent-strong) !important;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-header--compact {
  margin-bottom: 14px;
}

.order-page .upload-panel,
.order-config-section {
  display: grid;
  gap: 16px;
}

.order-page .upload-zone {
  min-height: 280px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 34px 24px;
  border: 2px dashed rgba(198, 38, 146, 0.28);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff7fc 0%, #fdebf7 100%);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.order-page .upload-zone.is-dragover {
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.order-page .upload-zone.has-validation-error {
  border-color: #dc2626;
  background: #fff7f7;
}

.order-page .upload-zone__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--accent);
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.order-page .upload-zone h3 {
  margin: 0;
  font-size: 1.4rem;
}

.order-page .upload-zone__hint,
.order-page .upload-zone__subhint {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.order-page .upload-zone__pick,
.order-page .primary,
.order-page .secondary {
  min-height: 48px;
  border-radius: 14px;
  padding: 0 20px;
  font-weight: 850;
}

.order-page .upload-zone__pick,
.order-page .primary {
  background: var(--accent);
}

.order-page .preview-scroll {
  max-height: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.order-page .preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
}

.order-page .preview-card {
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.order-page .preview-card__media {
  border-radius: 14px;
}

.order-page .preview-card img {
  height: 150px;
  border-radius: 14px;
}

.order-page .preview-card .info {
  gap: 10px;
}

.order-page .preview-card .info label {
  gap: 5px;
  font-size: 0.82rem;
}

.order-config-section,
.order-page .album-section,
.order-page .shop-cart-panel {
  margin-top: 20px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff7fc;
}

.order-page .summary-paper {
  display: grid;
  gap: 8px;
  max-width: 360px;
  font-weight: 800;
}

.order-page label input,
.order-page label textarea,
.order-page label select,
.order-page .summary-paper select {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  padding: 10px 12px;
}

.order-page label input:focus,
.order-page label textarea:focus,
.order-page label select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(198, 38, 146, 0.12);
}

.price-card {
  padding: 16px;
  border-radius: 18px;
  background: #fff;
}

.price-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-card__head h3 {
  margin: 0;
}

.price-card__toggle {
  min-height: 40px;
  border-radius: 12px;
}

.order-page .summary-panel {
  display: block;
}

.order-page .summary {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.summary__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.summary__head h3 {
  margin: 0;
}

.summary__close {
  display: none;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #eef3f1;
  color: var(--ink);
}

.order-page .summary-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.order-page .summary-row strong {
  text-align: right;
}

.order-page .summary-row--total {
  margin-top: 4px;
  padding: 14px;
  border: 0;
  border-radius: 18px;
  background: var(--accent);
  color: #fff;
}

.order-page .summary-row--total strong,
.order-page .summary-row--total span {
  color: #fff;
}

.order-page .delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.order-page .delivery-grid.has-validation-error {
  padding: 16px;
  border: 1px solid rgba(220, 38, 38, 0.24);
  border-radius: 18px;
  background: #fffafa;
}

.order-page .delivery-grid label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.order-page .delivery-form__full {
  grid-column: 1 / -1;
}

.order-page .delivery-form__inline {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(150px, 0.8fr);
  gap: 16px;
}

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

.order-page .payment {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 18px;
  background: #fff;
}

.order-page .payment.active {
  background: var(--accent-soft);
}

.order-page .actions {
  margin-top: 22px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.order-page .mobile-total-bar {
  display: none;
}

@media (max-width: 1100px) {
  .order-checkout-layout {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .order-page .summary-panel {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 86px;
    top: auto;
    z-index: 80;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .order-page .summary-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .summary__close {
    display: inline-grid;
    place-items: center;
  }

  .order-page .mobile-total-bar {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 58px;
    padding: 10px 16px;
    border: 0;
    border-radius: 18px;
    background: #17201f;
    color: #fff;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.22);
  }

  .order-page .mobile-total-bar span,
  .order-page .mobile-total-bar strong {
    color: #fff;
  }
}

@media (max-width: 760px) {
  .order-checkout-shell {
    padding: 18px 14px 110px;
  }

  .order-page .order-hero {
    padding-top: 12px;
  }

  .order-page .order-hero h1 {
    font-size: 2.35rem;
  }

  .order-checkout-layout {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .order-steps-panel {
    position: sticky;
    top: 74px;
    z-index: 12;
    width: 100%;
  }

  .order-page .step-indicator {
    display: flex;
    overflow-x: auto;
    padding: 8px;
    border-radius: 16px;
    scrollbar-width: none;
  }

  .order-page .step-indicator::-webkit-scrollbar {
    display: none;
  }

  .order-page .step-indicator span {
    flex: 0 0 auto;
    min-width: 150px;
    min-height: 44px;
    white-space: nowrap;
  }

  .order-page .card.order-step-card {
    padding: 18px;
    border-radius: 20px;
  }

  .order-page .upload-zone {
    min-height: 245px;
    padding: 26px 18px;
  }

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

  .order-config-section,
  .order-page .album-section,
  .order-page .shop-cart-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .order-page .delivery-grid,
  .order-page .delivery-form__inline,
  .order-page .payment-options {
    grid-template-columns: 1fr;
  }

  .order-page .actions {
    flex-direction: column-reverse;
  }

  .order-page .actions .primary,
  .order-page .actions .secondary {
    width: 100%;
  }
}

/* Checkout polish pass - final override */
.order-page {
  background: #fff;
  color: #1d1a1d;
}

.order-page .order-checkout-shell {
  width: min(100%, 1460px);
  max-width: 1460px;
  padding: 26px 34px 80px;
}

.order-page .order-hero {
  max-width: 820px;
  padding: 4px 0 18px;
}

.order-page .order-hero__eyebrow {
  margin-bottom: 8px;
  font-size: 0.72rem;
  letter-spacing: 0;
}

.order-page .order-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.05rem, 4vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.order-page .order-hero p {
  max-width: 720px;
  margin-top: 12px;
  font-size: 0.98rem;
}

.order-page .order-checkout-layout {
  display: grid;
  grid-template-columns: minmax(190px, 220px) minmax(760px, 1fr) minmax(285px, 320px);
  align-items: start;
  gap: 22px;
}

.order-page .order-flow {
  width: 100%;
  min-width: 0;
}

.order-page .order-steps-panel,
.order-page .summary-panel {
  position: sticky;
  top: 22px;
}

.order-page .step-indicator {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  padding: 12px;
  border: 1px solid #e4eeee;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.order-page .step-indicator span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  min-width: 0;
  min-height: 58px;
  padding: 11px 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: #556260;
  font-size: 0.94rem;
  line-height: 1.2;
  text-align: left;
  white-space: normal;
}

.order-page .step-indicator span b {
  display: inline-grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #eef7f5;
  color: #11766d;
  font-size: 0.85rem;
}

.order-page .step-indicator span.active {
  border-color: #b8ded8;
  background: #f0fbf9;
  color: #123f3b;
  box-shadow: none;
}

.order-page .step-indicator span.active b {
  background: #137f76;
  color: #fff;
}

.order-page .card.order-step-card {
  padding: 32px;
  border: 1px solid #e1ebea;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.order-page .order-step-card > h2 {
  margin-bottom: 6px;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.order-page .order-step-card > p {
  max-width: 610px;
  margin-bottom: 18px;
  color: #6c625f;
}

.order-page .upload-zone {
  min-height: 230px;
  padding: 34px 42px;
  border-radius: 20px;
  background: #fbfffe;
}

.order-page .upload-zone.is-loading {
  border-color: #9fd4ce;
  background: #f4fbfa;
}

.order-page .upload-zone__pick.is-disabled {
  opacity: 0.68;
  cursor: wait;
  transform: none;
}

.order-page .upload-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid #cce7e3;
  border-radius: 14px;
  background: #f7fffd;
  color: #123f3b;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.order-page .upload-loading[hidden] {
  display: none;
}

.order-page .upload-loading__spinner {
  width: 18px;
  height: 18px;
  border: 3px solid #cce7e3;
  border-top-color: #137f76;
  border-radius: 50%;
  animation: upload-spin 0.8s linear infinite;
}

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

.order-page .upload-zone__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  font-size: 1.7rem;
}

.order-page .upload-zone h3 {
  margin-top: 14px;
  font-size: 1.22rem;
}

.order-page .preview-grid {
  margin-top: 18px;
  gap: 14px;
}

.order-page .preview-grid .placeholder {
  grid-column: 1 / -1;
  max-width: 360px;
  margin: 0 auto;
  padding: 14px 10px;
  color: #746c69;
  text-align: center;
}

.order-page .order-config-section,
.order-page .album-section,
.order-page .shop-cart-panel {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid #e1ebea;
  border-radius: 18px;
  background: #fbfffe;
  box-shadow: none;
}

.order-page .summary {
  border: 1px solid #e1ebea;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.order-page .summary__total {
  border-radius: 14px;
}

@media (max-width: 1340px) {
  .order-page .order-checkout-layout {
    grid-template-columns: minmax(190px, 220px) minmax(0, 1fr) minmax(285px, 320px);
  }
}

@media (max-width: 1120px) {
  .order-page .order-checkout-layout {
    grid-template-columns: minmax(200px, 230px) minmax(0, 1fr);
  }

  .order-page .summary-panel {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 84px;
    top: auto;
    z-index: 80;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .order-page .summary-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .order-page .mobile-total-bar {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 58px;
    padding: 10px 16px;
    border: 0;
    border-radius: 16px;
    background: #123f3b;
    color: #fff;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.22);
  }
}

@media (max-width: 820px) {
  .order-page .order-checkout-shell {
    padding: 18px 14px 104px;
  }

  .order-page .order-hero {
    padding-bottom: 14px;
  }

  .order-page .order-hero h1 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.02;
  }

  .order-page .order-checkout-layout {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .order-page .order-steps-panel {
    position: sticky;
    top: 0;
    z-index: 12;
    width: 100%;
    padding-top: 8px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
  }

  .order-page .step-indicator {
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    padding: 8px;
    border-radius: 16px;
    scrollbar-width: none;
  }

  .order-page .step-indicator::-webkit-scrollbar {
    display: none;
  }

  .order-page .step-indicator span {
    flex: 0 0 132px;
    min-height: 46px;
    padding: 8px 10px;
    font-size: 0.82rem;
    white-space: normal;
  }

  .order-page .step-indicator span b {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
    font-size: 0.78rem;
  }

  .order-page .card.order-step-card {
    padding: 18px;
    border-radius: 18px;
  }

  .order-page .upload-zone {
    min-height: 218px;
    padding: 24px 16px;
  }

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

  .order-page .order-config-section,
  .order-page .album-section,
  .order-page .shop-cart-panel {
    padding: 16px;
  }
}

@media (max-width: 520px) {
  .order-page .preview-grid {
    grid-template-columns: 1fr;
  }
}

/* Legal pages */
.legal-page {
  max-width: 1060px;
  padding-top: 42px;
  gap: 18px;
}

.legal-hero {
  padding: 28px 0 8px;
}

.legal-eyebrow {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e7f7f4;
  color: #c62692;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.legal-hero p {
  max-width: 720px;
  margin: 12px 0 0;
  color: #4b5563;
}

.legal-card {
  padding: 26px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.legal-card h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.legal-card p {
  margin: 0;
  color: #374151;
}

.legal-card p + p {
  margin-top: 10px;
}

.legal-card a {
  color: #c62692;
  font-weight: 800;
}

.legal-company {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.legal-company div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 16px;
  padding: 11px 0;
  border-top: 1px solid #e5e7eb;
}

.legal-company dt {
  color: #6b7280;
  font-weight: 800;
}

.legal-company dd {
  margin: 0;
  color: #111827;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.withdrawal-form {
  display: grid;
  gap: 16px;
}

.withdrawal-form label {
  display: grid;
  gap: 7px;
  color: #111827;
  font-weight: 800;
}

.withdrawal-form input,
.withdrawal-form textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 12px 14px;
  background: #ffffff;
  color: #111827;
  font: inherit;
}

.withdrawal-form textarea {
  resize: vertical;
}

.withdrawal-confirm {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 700;
}

.withdrawal-confirm input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.withdrawal-submit {
  justify-self: start;
}

.withdrawal-success {
  border-color: #b8ded8;
  background: #f7fffd;
}

.legal-warning,
.legal-errors {
  color: #92400e;
}

.legal-errors {
  border-color: #fed7aa;
  background: #fff7ed;
}

.legal-errors ul {
  margin: 0;
  padding-left: 20px;
}

.header-links a[href="retragere-contract.php"] {
  border-radius: 999px;
  background: #c62692;
  color: #ffffff;
  padding: 8px 12px;
}

.header-links a[href="retragere-contract.php"]:hover,
.header-links a[href="retragere-contract.php"].active {
  background: #9f1f75;
  color: #ffffff;
}

@media (max-width: 720px) {
  .legal-page {
    padding-top: 24px;
  }

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

  .legal-company div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .withdrawal-submit {
    width: 100%;
  }
}

/* White footer override */
.site-footer {
  background: #ffffff;
  color: #111827;
  border-top: 0;
}

.site-footer a,
.footer__logo,
.footer__contact-actions a,
.footer__nav a,
.footer__company-list dd,
.footer__address address {
  color: #111827;
}

.footer__intro p,
.footer__company-list dt,
.footer__legal {
  color: #4b5563;
}

.footer__heading,
.footer__contact-actions i {
  color: #c62692;
}

.footer__logo,
.footer__contact-actions a,
.footer__social a {
  background: #ffffff;
  border: 0;
}

.footer__contact-actions a:hover,
.footer__logo:hover,
.footer__social a:hover {
  background: #f8fafc;
  color: #c62692;
}

.footer__company-list div,
.footer__legal {
  border-color: transparent;
}

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-bottom: 12px;
}

.footer__legal-links a {
  color: #111827;
  font-weight: 800;
}

.footer__legal-links a:hover {
  color: #c62692;
}

.footer__withdrawal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #c62692;
  color: #ffffff !important;
  font-weight: 900;
}

.footer__withdrawal-button:hover {
  background: #9f1f75;
  color: #ffffff !important;
}

/* Member auth */
.auth-page {
  max-width: 760px;
  padding-top: 46px;
  padding-bottom: 72px;
}

.auth-card {
  width: 100%;
  padding: 30px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.auth-card__header {
  margin-bottom: 22px;
}

.auth-card__header h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.auth-card__header p {
  margin: 10px 0 0;
  color: #4b5563;
}

.auth-form {
  display: grid;
  gap: 15px;
}

.auth-form label {
  display: grid;
  gap: 7px;
  color: #111827;
  font-weight: 800;
}

.auth-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 11px 13px;
  background: #ffffff;
  color: #111827;
  font: inherit;
}

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

.auth-message {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 800;
}

.auth-message--error {
  background: #fff7ed;
  color: #92400e;
  border: 1px solid #fed7aa;
}

.auth-message--success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.auth-switch {
  margin: 18px 0 0;
  text-align: center;
  color: #4b5563;
}

.auth-switch a {
  color: #c62692;
  font-weight: 900;
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.auth-profile {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
}

.auth-profile div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid #e5e7eb;
}

.auth-profile dt {
  color: #6b7280;
  font-weight: 800;
}

.auth-profile dd {
  margin: 0;
  color: #111827;
  font-weight: 700;
}

.auth-empty {
  margin: 0;
  padding: 14px;
  border-radius: 12px;
  background: #f8fafc;
  color: #4b5563;
  font-weight: 800;
}

.account-orders {
  display: grid;
  gap: 12px;
}

.account-order-card {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(110px, auto) minmax(90px, auto) auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
}

.account-order-card div {
  display: grid;
  gap: 3px;
}

.account-order-card span {
  color: #6b7280;
  font-size: 0.86rem;
}

.account-order-card strong {
  color: #111827;
}

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

.affiliate-stat,
.affiliate-link-box {
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #f8fafc;
}

.affiliate-stat {
  display: grid;
  gap: 5px;
}

.affiliate-stat span,
.affiliate-link-box label,
.affiliate-referral-card span {
  color: #6b7280;
  font-size: 0.86rem;
  font-weight: 800;
}

.affiliate-stat strong {
  color: #c62692;
  font-size: 1.35rem;
}

.affiliate-link-box {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
}

.affiliate-link-box > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.affiliate-link-box input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 10px 12px;
  background: #ffffff;
  color: #111827;
  font: inherit;
}

.affiliate-referrals {
  margin-top: 22px;
}

.affiliate-referrals h3 {
  margin: 0 0 12px;
}

.affiliate-referral-list {
  display: grid;
  gap: 10px;
}

.affiliate-referral-card {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(180px, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
}

.affiliate-referral-card strong {
  color: #111827;
}

.account-page {
  max-width: 1180px;
  padding-top: 42px;
  padding-bottom: 76px;
}

.account-dashboard {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.account-sidebar,
.account-panel {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.account-sidebar {
  position: sticky;
  top: 92px;
  padding: 18px;
}

.account-user {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.account-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #c62692;
  color: #ffffff;
  font-weight: 900;
}

.account-user strong,
.account-user span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-user span {
  margin-top: 3px;
  color: #6b7280;
  font-size: 0.9rem;
}

.account-nav {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.account-nav button {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  background: transparent;
  color: #374151;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.account-nav button:hover,
.account-nav button.is-active {
  background: #ecfdf5;
  color: #c62692;
}

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

.account-sidebar-actions .primary,
.account-sidebar-actions .secondary {
  width: 100%;
  justify-content: center;
}

.account-content {
  min-width: 0;
}

.account-panel {
  display: none;
  padding: 30px;
}

.account-panel.is-active {
  display: block;
  animation: accountPanelIn 180ms ease;
}

.account-panel__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.account-panel__header h1,
.account-panel__header h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.05;
}

.account-panel__header p:not(.legal-eyebrow) {
  margin: 9px 0 0;
  color: #6b7280;
}

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

.account-profile-grid div {
  min-width: 0;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #f8fafc;
}

.account-profile-grid dt {
  margin-bottom: 6px;
  color: #6b7280;
  font-size: 0.85rem;
  font-weight: 900;
}

.account-profile-grid dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: #111827;
  font-weight: 900;
}

.account-profile-form {
  max-width: 780px;
}

.account-profile-form input:disabled {
  background: #f3f4f6;
  color: #6b7280;
  cursor: not-allowed;
}

.account-inline-summary {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #f8fafc;
}

.account-inline-summary span {
  color: #6b7280;
  font-weight: 900;
}

.account-inline-summary strong {
  color: #c62692;
  font-size: 1.25rem;
}

.account-security-form {
  max-width: 680px;
}

@keyframes accountPanelIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .account-page {
    padding-top: 24px;
  }

  .account-dashboard {
    grid-template-columns: 1fr;
  }

  .account-sidebar {
    position: static;
  }

  .account-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow-x: auto;
  }

  .account-nav button {
    min-width: 130px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .auth-page {
    padding-top: 24px;
  }

  .auth-card {
    padding: 22px;
  }

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

  .auth-profile div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .account-order-card {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .account-order-card .button-link {
    width: 100%;
  }

  .affiliate-panel,
  .affiliate-link-box > div,
  .affiliate-referral-card {
    grid-template-columns: 1fr;
  }

  .account-panel {
    padding: 22px;
  }

  .account-panel__header {
    display: grid;
  }

  .account-profile-grid {
    grid-template-columns: 1fr;
  }
}
