/* Page layouts — Nomad Pack Labs */

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  min-height: min(88vh, 760px);
  background: var(--canvas-warm);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3.5rem);
  min-width: 0;
}

.hero-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-brand);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--green-brand);
  margin-bottom: 16px;
  max-width: 14ch;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 38ch;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

.hero-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.hero-price small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-soft);
  margin-top: 2px;
}

.hero-media {
  position: relative;
  min-height: 320px;
  background: var(--green-house);
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

/* Sections */
.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section--white {
  background: var(--white);
}

.section--warm {
  background: var(--canvas-warm);
}

.section--ceramic {
  background: var(--canvas-ceramic);
}

.section--house {
  background: var(--green-house);
  color: var(--white);
}

.section-head {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head .eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-brand);
  margin-bottom: 12px;
}

.section--house .section-head .eyebrow {
  color: var(--gold);
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--green-brand);
  line-height: 1.15;
  margin-bottom: 12px;
}

.section--house .section-head h2 {
  color: var(--white);
}

.section-head p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.55;
  max-width: 48ch;
}

.section--house .section-head p {
  color: var(--text-white-soft);
}

/* Product split */
.product-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.gallery-main {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--canvas-ceramic);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.gallery-main--zoom {
  cursor: zoom-in;
}

.gallery-main--zoom:hover .gallery-zoom-hint,
.gallery-main--zoom:focus-visible .gallery-zoom-hint {
  opacity: 1;
}

.gallery-zoom-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(30, 57, 50, 0.88);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.92;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.gallery-thumbs button {
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: var(--canvas-ceramic);
  aspect-ratio: 1;
}

.gallery-thumbs button.is-active,
.gallery-thumbs button:hover {
  border-color: var(--green-accent);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.is-lightboxable {
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.is-lightboxable:hover {
  transform: scale(1.01);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

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

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 16, 0.92);
  backdrop-filter: blur(6px);
  cursor: zoom-out;
}

.lightbox__stage {
  position: relative;
  z-index: 2;
  max-width: min(1100px, 100%);
  max-height: min(88vh, 100%);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.lightbox__img {
  display: block;
  max-width: 100%;
  max-height: min(78vh, 900px);
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  background: #111;
  object-fit: contain;
}

.lightbox__caption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  text-align: center;
  max-width: 40ch;
  line-height: 1.4;
}

.lightbox__counter {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 3;
  border: none;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(0, 117, 74, 0.9);
}

.lightbox__close {
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.lightbox__nav--prev {
  left: 12px;
}

.lightbox__nav--next {
  right: 12px;
}

.lightbox__nav:active {
  transform: translateY(-50%) scale(0.95);
}

@media (max-width: 700px) {
  .lightbox__nav {
    width: 40px;
    height: 40px;
  }

  .lightbox__nav--prev {
    left: 6px;
  }

  .lightbox__nav--next {
    right: 6px;
  }

  .lightbox__close {
    top: 10px;
    right: 10px;
  }

  .lightbox__img {
    max-height: 70vh;
    border-radius: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .is-lightboxable {
    transition: none;
  }
}

.product-buy {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-card);
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}

.product-buy h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--green-brand);
  margin: 8px 0 8px;
}

.product-buy .sku {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.product-buy .price-lg {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.product-buy .price-note {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 20px;
}

.product-buy .desc {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 20px;
}

.qty-field {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.qty-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
}

.qty-field input {
  width: 72px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
  text-align: center;
}

.spec-list {
  margin-top: 24px;
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
}

.spec-list span:first-child {
  color: var(--text-soft);
}

.spec-list span:last-child {
  font-weight: 600;
  text-align: right;
}

/* Story / craft */
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.story-grid img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.story-body p {
  color: var(--text-soft);
  margin-bottom: 14px;
  line-height: 1.6;
}

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

.craft-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
  min-width: 0;
}

.craft-card .num {
  font-size: 12px;
  font-weight: 700;
  color: var(--green-accent);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  display: block;
}

.craft-card h3 {
  font-size: 1.1rem;
  color: var(--green-brand);
  margin-bottom: 8px;
}

.craft-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}

/* Feature band */
.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  background: var(--green-house);
  color: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.feature-band-copy {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-band-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.feature-band-copy p {
  color: var(--text-white-soft);
  margin-bottom: 20px;
  line-height: 1.55;
  max-width: 36ch;
}

.feature-band img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

/* Lifestyle strip */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lifestyle-grid figure {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
}

.lifestyle-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cart */
.page-hero-sm {
  padding: 40px 0 24px;
  background: var(--canvas-warm);
}

.page-hero-sm h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--green-brand);
}

.page-hero-sm p {
  color: var(--text-soft);
  margin-top: 6px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 24px;
  align-items: start;
  padding-bottom: 64px;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) auto;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 12px;
  align-items: center;
}

.cart-item__img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--canvas-ceramic);
}

.cart-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item h3 {
  font-size: 1rem;
  color: var(--green-brand);
  margin-bottom: 4px;
}

.muted {
  color: var(--text-soft);
  font-size: 13px;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.qty-btn:hover {
  border-color: var(--green-accent);
  color: var(--green-accent);
}

.link-btn {
  border: none;
  background: none;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cart-item__total {
  font-weight: 700;
  white-space: nowrap;
}

.cart-summary {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}

.cart-summary h2 {
  font-size: 1.15rem;
  color: var(--green-brand);
  margin-bottom: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-soft);
}

.summary-row.total {
  border-top: 1px solid var(--hairline);
  margin-top: 8px;
  padding-top: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.cart-summary .btn {
  margin-top: 16px;
}

.empty-block {
  text-align: center;
  padding: 64px 16px 80px;
  max-width: 420px;
  margin: 0 auto;
}

.empty-block h1 {
  color: var(--green-brand);
  margin-bottom: 10px;
}

.empty-block p {
  color: var(--text-soft);
  margin-bottom: 20px;
}

/* Checkout */
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
  align-items: start;
  padding-bottom: 80px;
}

.checkout-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--shadow-card);
  margin-bottom: 16px;
}

.checkout-card h2 {
  font-size: 1.15rem;
  color: var(--green-brand);
  margin-bottom: 4px;
}

.checkout-card .step-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 16px;
  display: block;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pay-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.pay-option:has(input:checked) {
  border-color: var(--green-accent);
  background: rgba(212, 233, 226, 0.35);
}

.pay-option input {
  accent-color: var(--green-accent);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pay-option span {
  font-weight: 600;
  font-size: 14px;
}

.pay-option small {
  display: block;
  font-weight: 400;
  color: var(--text-soft);
  font-size: 12px;
  margin-top: 2px;
}

.payment-error {
  display: block;
  color: var(--red);
  font-size: 13px;
  margin-top: 8px;
  min-height: 1.2em;
}

.order-line {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.order-line img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--canvas-ceramic);
}

.order-line strong {
  display: block;
  font-size: 14px;
  color: var(--text);
}

.order-line span {
  font-size: 12px;
  color: var(--text-soft);
}

.checkout-aside {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}

.checkout-note {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 12px;
  line-height: 1.45;
}

.country-fixed {
  background: var(--canvas-cool);
}

/* Legal */
.legal-page {
  background: var(--canvas-warm);
  padding-bottom: 64px;
}

.legal-body {
  max-width: 720px;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-card);
}

.legal-body h2 {
  font-size: 1.2rem;
  color: var(--green-brand);
  margin: 28px 0 10px;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p,
.legal-body li {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 10px;
}

.legal-body ul {
  padding-left: 1.2rem;
  list-style: disc;
  margin-bottom: 12px;
}

.legal-body a {
  color: var(--green-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-meta {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}

/* Order success page */
.page-success {
  background: var(--canvas-warm);
}

.success-hero {
  position: relative;
  overflow: hidden;
  background: var(--green-house);
  color: var(--white);
  padding: clamp(3.5rem, 9vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
  text-align: center;
}

.success-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0, 117, 74, 0.45), transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 80%, rgba(203, 162, 88, 0.12), transparent 50%);
  pointer-events: none;
}

.success-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin-inline: auto;
}

.success-badge {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--green-accent);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow:
    0 0 0 10px rgba(0, 117, 74, 0.25),
    0 12px 32px rgba(0, 0, 0, 0.25);
  animation: success-pop 0.55s var(--ease) both;
}

@keyframes success-pop {
  0% { transform: scale(0.6); opacity: 0; }
  60% { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(1); }
}

.success-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.success-title {
  font-size: clamp(2.4rem, 7vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.success-lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-white-soft);
  max-width: 36ch;
  margin: 0 auto 24px;
}

.success-id-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(203, 162, 88, 0.45);
  font-size: 14px;
  color: var(--text-white-soft);
}

.success-id-pill strong {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.success-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  gap: 24px;
  align-items: start;
}

.success-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--shadow-card);
  margin-bottom: 16px;
}

.success-card--main {
  margin-bottom: 0;
}

.success-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}

.success-card-head h2 {
  font-size: 1.25rem;
  color: var(--green-brand);
}

.success-status {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--green-light);
  color: var(--green-brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.success-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.success-meta-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 4px;
}

.success-meta-grid p {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.success-items {
  border-top: 1px solid var(--hairline);
  padding-top: 8px;
  margin-bottom: 8px;
}

.success-line {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
}

.success-line img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--canvas-ceramic);
}

.success-line strong {
  display: block;
  font-size: 15px;
  color: var(--green-brand);
  margin-bottom: 2px;
}

.success-line span {
  font-size: 13px;
  color: var(--text-soft);
}

.success-line > span:last-child {
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.success-totals {
  margin-top: 8px;
  padding-top: 8px;
}

.success-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--gold-lightest);
  border: 1px solid rgba(203, 162, 88, 0.35);
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}

.success-note a {
  color: var(--green-accent);
  font-weight: 600;
}

.success-side h3 {
  font-size: 1.05rem;
  color: var(--green-brand);
  margin-bottom: 16px;
}

.success-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.success-steps li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.success-step-n {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-brand);
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.success-steps strong {
  display: block;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 2px;
}

.success-steps p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.45;
}

.success-card--product img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
  background: var(--canvas-ceramic);
}

.success-product-name {
  font-weight: 700;
  color: var(--green-brand);
  font-size: 15px;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.success-actions--stack {
  flex-direction: column;
}

.success-empty {
  padding: clamp(4rem, 12vw, 7rem) 0;
  text-align: center;
}

.success-empty-inner {
  max-width: 28rem;
  margin-inline: auto;
}

.success-empty h1 {
  color: var(--green-brand);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 10px;
}

.success-empty p {
  color: var(--text-soft);
  margin-bottom: 24px;
}

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

  .success-meta-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .success-meta-grid {
    grid-template-columns: 1fr;
  }

  .success-line {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .success-line > span:last-child {
    grid-column: 2;
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .success-badge {
    animation: none;
  }
}

/* Contact email-only */
.contact-hero {
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.contact-hero h1 {
  font-size: clamp(2.5rem, 7vw, 4rem);
  color: var(--green-brand);
  margin-bottom: 12px;
}

.contact-email {
  display: inline-block;
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--green-accent);
  margin: 20px 0;
  word-break: break-word;
}

.contact-email:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-media {
    order: -1;
    min-height: 260px;
    max-height: 380px;
  }

  .hero-media img {
    min-height: 260px;
    max-height: 380px;
  }

  .product-split,
  .story-grid,
  .feature-band,
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .product-buy {
    position: static;
  }

  .checkout-aside {
    position: static;
  }

  .craft-steps {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 560px) {
  .cart-item {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .cart-item__total {
    grid-column: 2;
    justify-self: start;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .frap {
    right: 14px;
    bottom: 14px;
  }
}
