/* AmsterdamPhotograph.com — main stylesheet */

:root {
  --bg: #ffffff;
  --ink: #000000;
  --gray-line: #e2e2e2;
  --gray-soft: #f5f5f5;
  --gray-mid: #767676;
}

* { border-radius: 0 !important; }
.rounded-full,
.rounded-full * { border-radius: 9999px !important; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background-color: #ffffff;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  user-select: none;
}

.font-noto-serif { font-family: 'Noto Serif', serif; }
.font-manrope { font-family: 'Manrope', sans-serif; }
.font-allura { font-family: 'Allura', cursive; }

.display-lg {
  font-family: 'Noto Serif', serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.headline-md {
  font-family: 'Noto Serif', serif;
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.2;
}
.headline-sm {
  font-family: 'Noto Serif', serif;
  font-size: 22px;
  line-height: 1.3;
}
.ui-label {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
}

/* ---------- LOGO ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  line-height: 0;
}
.logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 70vw;
  object-fit: contain;
  mix-blend-mode: multiply;
}
@media (min-width: 768px) {
  .logo-img { height: 64px; }
}
@media (min-width: 1024px) {
  .logo-img { height: 72px; }
}

.rule { border-top: 1px solid #000000; }

/* Print card hover */
.print-card .img-wrap {
  position: relative;
  border: 1px solid transparent;
  transition: border-color .35s ease;
}
.print-card:hover .img-wrap { border-color: #000; }
.print-card .img-wrap img { transition: transform .8s ease; }
.print-card:hover .img-wrap img { transform: scale(1.04); }

/* Zoom hint badge bottom-right of image on hover */
.print-card .img-wrap::after {
  content: "↗";
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid #000;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.print-card:hover .img-wrap::after { opacity: 1; }

/* Buttons */
.btn-ghost {
  border: 1px solid #000;
  padding: 14px 22px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
  background: transparent;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color .25s, color .25s;
  cursor: pointer;
}
.btn-ghost:hover { background: #000; color: #fff; }

.btn-solid {
  background: #000;
  color: #fff;
  padding: 16px 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid #000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background-color .25s, color .25s;
}
.btn-solid:hover { background: #fff; color: #000; }

.bilingual-sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #767676;
  text-transform: uppercase;
}

.mono { filter: grayscale(100%) contrast(1.05); }

/* Nav links */
.nav-link {
  position: relative;
  font-family: 'Noto Serif', serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #000;
  text-decoration: none;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1px;
  width: 0;
  background: #000;
  transition: width .3s ease;
}
.nav-link:hover::after,
.nav-link.is-active::after { width: 100%; }
.nav-link.is-active { font-weight: 700; }

/* Lang toggle */
[data-lang-en],
[data-lang-nl] { display: inline; }
html[lang="en"] [data-lang-nl] { display: none; }
html[lang="nl"] [data-lang-en] { display: none; }
[data-lang-en-block],
[data-lang-nl-block] { display: block; }
html[lang="en"] [data-lang-nl-block] { display: none; }
html[lang="nl"] [data-lang-en-block] { display: none; }

/* Drawer */
#drawer {
  transform: translateX(-100%);
  transition: transform .35s ease;
}
#drawer.is-open { transform: translateX(0); }
#drawer-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
#drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Forms */
.field {
  border-bottom: 1px solid #000;
  padding-bottom: 8px;
}
.field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #767676;
  margin-bottom: 8px;
  font-weight: 600;
}
.field input,
.field textarea {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: #000;
  padding: 4px 0;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #c2c2c2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13px;
}

.hero-overlay { mix-blend-mode: difference; color: #fff; }

.archive-no {
  font-family: 'Noto Serif', serif;
  font-style: italic;
  font-size: 12px;
  color: #767676;
}

footer a { text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

.section-pad { padding-left: 40px; padding-right: 40px; }
@media (max-width: 768px) {
  .section-pad { padding-left: 20px; padding-right: 20px; }
}

.container-max { max-width: 1440px; margin-left: auto; margin-right: auto; }

/* ---------- LIGHTBOX ---------- */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
#lightbox.is-open { display: flex; pointer-events: auto; }

#lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

#lightbox-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 92vw;
  max-height: 92vh;
}

#lightbox-img-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#lightbox-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 92vw;
  max-height: 80vh;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.05);
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: opacity .3s ease;
  opacity: 1;
}
#lightbox-img-wrap.is-loading #lightbox-img { opacity: 0; }

#lightbox-spinner {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
}
#lightbox-img-wrap.is-loading #lightbox-spinner { display: flex; }
#lightbox-spinner::after {
  content: "";
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top-color: #fff;
  border-radius: 9999px !important;
  animation: lb-spin 0.9s linear infinite;
}
@keyframes lb-spin { to { transform: rotate(360deg); } }

#lightbox-caption {
  color: #f0f1f1;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  max-width: 80vw;
}

#lightbox-close,
#lightbox-prev,
#lightbox-next {
  position: absolute;
  z-index: 2;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color .2s, color .2s;
  padding: 0;
}
#lightbox-close .material-symbols-outlined,
#lightbox-prev  .material-symbols-outlined,
#lightbox-next  .material-symbols-outlined { font-size: 22px; }
#lightbox-close:hover,
#lightbox-prev:hover,
#lightbox-next:hover { background: #fff; color: #000; }

#lightbox-close { top: 24px; right: 24px; }
#lightbox-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
#lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); }

@media (max-width: 640px) {
  #lightbox-close,
  #lightbox-prev,
  #lightbox-next { width: 40px; height: 40px; }
  #lightbox-close { top: 14px; right: 14px; }
  #lightbox-prev  { left: 8px; }
  #lightbox-next  { right: 8px; }
  #lightbox-img { max-height: 72vh; }
}

/* ---------- WATERMARK ---------- */
.apg-wm-host { position: relative; }
.apg-watermark {
  position: absolute;
  bottom: 10px;
  right: 12px;
  width: 64px;
  height: 34px;
  background-image: url('../img/logo.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  filter: grayscale(1) invert(1) brightness(1.4)
          drop-shadow(0 1px 3px rgba(0,0,0,0.7));
  opacity: 0.78;
  pointer-events: none;
  z-index: 5;
  user-select: none;
}
@media (max-width: 640px) {
  .apg-watermark { width: 48px; height: 26px; bottom: 8px; right: 8px; }
}

/* Hero watermark sits outside the .img-wrap, in the absolute hero overlay */
.hero-wm {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 6;
}

/* Small clean-print note */
.clean-print-note {
  font-family: 'Noto Serif', serif;
  font-style: italic;
  font-size: 13px;
  color: #767676;
  letter-spacing: 0.01em;
}

/* ---------- TOAST ---------- */
.apg-toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #000; color: #fff;
  font-family: 'Manrope', sans-serif; font-size: 13px;
  letter-spacing: 0.05em; font-weight: 600;
  padding: 14px 22px; z-index: 10000;
  opacity: 0; transition: transform .35s ease, opacity .35s ease;
  pointer-events: none;
}
.apg-toast.is-shown { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ---------- CART DRAWER ---------- */
#cart-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.5); opacity: 0;
  pointer-events: none; transition: opacity .25s ease;
}
#cart-overlay.is-open { opacity: 1; pointer-events: auto; }

#cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 9999;
  width: 100%; max-width: 460px;
  background: #fff; color: #000;
  transform: translateX(100%); transition: transform .35s ease;
  display: flex; flex-direction: column;
  border-left: 1px solid #000;
}
#cart-drawer.is-open { transform: translateX(0); }
.cart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; border-bottom: 1px solid #000;
}
.cart-head h2 { font-size: 13px; letter-spacing: 0.15em; }
.cart-head button {
  background: transparent; border: none; cursor: pointer; padding: 4px;
}
.cart-body { flex: 1; overflow-y: auto; padding: 8px 24px; }
.cart-empty {
  padding: 60px 0; text-align: center; opacity: 0.6;
  font-family: 'Noto Serif', serif; font-style: italic;
}
.cart-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 16px; padding: 20px 0; border-bottom: 1px solid #e5e5e5;
}
.cart-item-img { width: 80px; aspect-ratio: 3/4; overflow: hidden; background: #f5f5f5; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.05); }
.cart-item-title {
  font-family: 'Noto Serif', serif; font-size: 16px; line-height: 1.2;
  text-transform: uppercase; letter-spacing: 0.02em;
}
.cart-item-sub {
  font-family: 'Manrope', sans-serif; font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #767676; margin-top: 4px; margin-bottom: 10px;
}
.cart-item-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.cart-item-price {
  font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em; align-self: start; padding-top: 4px;
}
.qty-ctrl { display: inline-flex; border: 1px solid #000; }
.qty-ctrl button {
  width: 28px; height: 28px; background: #fff; border: none; cursor: pointer;
  font-size: 14px; font-weight: 600;
}
.qty-ctrl button:hover { background: #000; color: #fff; }
.qty-ctrl span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 28px; padding: 0 8px; font-size: 13px; font-weight: 600;
  border-left: 1px solid #000; border-right: 1px solid #000;
}
.cart-rm {
  background: transparent; border: none; cursor: pointer;
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: #767676; text-decoration: underline; text-underline-offset: 3px;
  font-weight: 600;
}
.cart-rm:hover { color: #000; }
.cart-foot { padding: 20px 24px; border-top: 1px solid #000; }
.cart-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: 'Manrope', sans-serif; font-size: 14px;
  letter-spacing: 0.02em; padding: 6px 0;
}
.cart-row span:first-child { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; }
.cart-row span:last-child { font-weight: 600; }
.cart-row-sub span:last-child { font-size: 11px; }
.cart-cont-link {
  display: block; text-align: center; margin-top: 14px; font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #767676; text-decoration: underline; text-underline-offset: 3px;
}
.cart-cont-link:hover { color: #000; }

/* ---------- CHECKOUT ---------- */
#checkout {
  position: fixed; inset: 0; z-index: 10000; background: #fff;
  display: none; overflow-y: auto;
}
#checkout.is-open { display: block; }
.ck-head {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 20px 40px;
  border-bottom: 1px solid #000;
  position: sticky; top: 0; background: #fff; z-index: 1;
}
.ck-back {
  background: transparent; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Noto Serif', serif; font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase;
  justify-self: start;
}
.ck-back:hover { text-decoration: underline; text-underline-offset: 4px; }
.ck-logo img { height: 40px; mix-blend-mode: multiply; }
.ck-grid {
  display: grid; grid-template-columns: 1fr; gap: 60px;
  max-width: 1200px; margin: 0 auto; padding: 60px 40px;
}
@media (min-width: 1024px) { .ck-grid { grid-template-columns: 1.4fr 1fr; } }
.ck-form section h3 { padding-bottom: 12px; border-bottom: 1px solid #000; }
.ck-field { margin-bottom: 18px; }
.ck-field label {
  display: block; font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; color: #767676; margin-bottom: 6px; font-weight: 600;
}
.ck-field input, .ck-field select, .ck-field textarea {
  width: 100%; border: none; border-bottom: 1px solid #000;
  background: transparent; outline: none; padding: 8px 0;
  font-family: 'Manrope', sans-serif; font-size: 16px; color: #000;
}
.ck-field select {
  -webkit-appearance: none; appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #000 50%), linear-gradient(135deg, #000 50%, transparent 50%);
  background-position: calc(100% - 14px) 14px, calc(100% - 8px) 14px;
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat;
  padding-right: 28px; cursor: pointer;
}
.ck-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ck-radio {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; border: 1px solid #000;
  margin-bottom: 12px; cursor: pointer;
}
.ck-radio:has(input:checked) { background: #000; color: #fff; }
.ck-radio input { margin-top: 4px; accent-color: #000; }
.ck-radio strong {
  display: block; font-family: 'Manrope', sans-serif;
  font-size: 13px; letter-spacing: 0.05em; font-weight: 700;
}
.ck-radio small {
  display: block; font-family: 'Manrope', sans-serif; font-size: 12px;
  opacity: 0.7; margin-top: 2px;
}
.ck-error { color: #b00020; font-size: 13px; margin-top: 12px; }
.ck-summary {
  background: #f5f5f5; padding: 32px; align-self: start;
  position: sticky; top: 100px;
}
.ck-item {
  display: grid; grid-template-columns: 60px 1fr auto;
  gap: 12px; padding: 12px 0; border-bottom: 1px solid #d5d5d5;
  font-size: 13px; align-items: center;
}
.ck-item-img { position: relative; width: 60px; aspect-ratio: 3/4; }
.ck-item-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.ck-item-img span {
  position: absolute; top: -6px; right: -6px; background: #000; color: #fff;
  width: 22px; height: 22px; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600;
}
.ck-item-meta { font-family: 'Noto Serif', serif; font-size: 14px; line-height: 1.2; text-transform: uppercase; letter-spacing: 0.02em; }
.ck-item-meta small { display: block; text-transform: uppercase; letter-spacing: 0.1em; font-size: 10px; margin-top: 4px; font-family: 'Manrope', sans-serif; }
.ck-item-price { font-weight: 600; }
.ck-total-row {
  display: flex; justify-content: space-between; padding: 8px 0;
  font-size: 13px;
}
.ck-total-row span:first-child { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; }
.ck-total-final { padding-top: 14px; border-top: 1px solid #000; margin-top: 8px; font-size: 16px; }
.ck-total-final span { font-weight: 700 !important; }

/* ---------- MOLLIE MOCK ---------- */
#mollie {
  position: fixed; inset: 0; z-index: 10001;
  background: #f6f6f8; display: none;
  align-items: flex-start; justify-content: center;
  padding: 40px 16px; overflow-y: auto;
}
#mollie.is-open { display: flex; }
.mollie-card {
  background: #fff; max-width: 460px; width: 100%;
  border: 1px solid #e0e0e0; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;
}
.mollie-head {
  padding: 20px 24px; border-bottom: 1px solid #efefef;
  display: flex; justify-content: space-between; align-items: center;
}
.mollie-brand {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  letter-spacing: -0.02em; font-size: 22px; color: #2d4a8a;
}
.mollie-merchant { text-align: right; font-size: 12px; }
.mollie-body { padding: 24px; }
.mollie-amount {
  text-align: center; padding: 16px 0 24px; border-bottom: 1px solid #efefef;
}
.mollie-title {
  font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  margin: 24px 0 16px; color: #333;
}
.mollie-methods { display: flex; flex-direction: column; gap: 8px; }
.mollie-method {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border: 1px solid #e0e0e0;
  cursor: pointer; transition: border-color .2s, background .2s;
}
.mollie-method:hover { border-color: #999; }
.mollie-method:has(input:checked) { border-color: #2d4a8a; background: #f0f4ff; }
.mollie-method input { accent-color: #2d4a8a; }
.mollie-method-icon {
  width: 40px; height: 28px; border: 1px solid #d0d0d0;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
  background: #fff; color: #2d4a8a;
}
.mollie-method-name { font-size: 14px; font-weight: 500; color: #333; }
.mollie-bank-row { margin-top: 16px; }
.mollie-bank-row select {
  width: 100%; padding: 12px; font-size: 14px;
  border: 1px solid #d0d0d0; background: #fff;
}
.mollie-demo {
  text-align: center; font-size: 11px; color: #999;
  letter-spacing: 0.05em; margin-top: 16px; font-style: italic;
}
.mollie-foot {
  padding: 16px 24px; border-top: 1px solid #efefef;
  text-align: center; font-size: 12px;
}
.mollie-foot a { color: #666; text-decoration: underline; }
.mollie-loader {
  position: absolute; inset: 0; background: rgba(255,255,255,0.95);
  display: none; flex-direction: column; align-items: center; justify-content: center;
  z-index: 2; gap: 16px;
}
.mollie-loader.is-shown { display: flex; }
.mollie-loader p { color: #555; font-size: 14px; }
.loader-spinner {
  width: 40px; height: 40px; border: 3px solid #e0e0e0;
  border-top-color: #2d4a8a; border-radius: 9999px !important;
  animation: lb-spin 0.9s linear infinite;
}

#mollie .btn-solid {
  background: #2d4a8a !important; border-color: #2d4a8a !important;
  font-weight: 600; padding: 14px 24px;
}
#mollie .btn-solid:hover { background: #1f3a76 !important; color: #fff !important; }

/* ---------- ORDER SUCCESS ---------- */
#order-success {
  position: fixed; inset: 0; z-index: 10002; background: #fff;
  display: none; overflow-y: auto; padding: 60px 24px;
}
#order-success.is-open { display: block; }
.ok-card {
  max-width: 640px; margin: 0 auto; text-align: center;
}
.ok-check {
  width: 80px; height: 80px; border-radius: 9999px !important;
  background: #000; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto;
}
.ok-items {
  margin-top: 32px; text-align: left; border-top: 1px solid #000; padding-top: 24px;
}
.ok-item {
  display: grid; grid-template-columns: 70px 1fr auto;
  gap: 16px; align-items: center; padding: 12px 0;
  border-bottom: 1px solid #e5e5e5; font-size: 14px;
}
.ok-item img { width: 70px; aspect-ratio: 3/4; object-fit: cover; filter: grayscale(100%); }
.ok-totals { margin-top: 24px; text-align: left; }
.ok-totals > div {
  display: flex; justify-content: space-between; padding: 6px 0;
  font-size: 14px;
}
.ok-totals > div span:first-child { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; }
.ok-total-final {
  padding-top: 14px !important; border-top: 1px solid #000; margin-top: 8px; font-size: 18px;
}
.ok-total-final span { font-weight: 700; }
.ok-confirm {
  margin-top: 32px; color: #555; line-height: 1.6;
  max-width: 480px; margin-left: auto; margin-right: auto;
}

/* Spacing helpers used by checkout / cart */
.mt-12 { margin-top: 48px; }
.mb-6 { margin-bottom: 24px; }

@media (max-width: 640px) {
  .ck-head { padding: 16px 20px; }
  .ck-grid { padding: 32px 20px; gap: 32px; }
  .ck-summary { position: static; padding: 24px; }
  .ck-row { grid-template-columns: 1fr; }
}
