:root {
  --surface: #f9f9f9;
  --surface-low: #f3f3f4;
  --surface-card: #ffffff;
  --surface-warm: #f2e6d8;
  --ink: #1a1c1c;
  --brown: #73594b;
  --brown-deep: #4a3428;
  --muted: #4c463e;
  --line: #cec5bb;
  --red: #a6383a;
  --max: 1280px;
  --photo-radius: 10px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 14px clamp(20px, 4vw, 40px);
  background: rgba(249, 249, 249, 0.92);
  border-bottom: 1px solid rgba(206, 197, 187, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  color: var(--brown);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.topbar nav,
footer nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.topbar nav a,
footer a,
footer p {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar nav a:hover,
footer nav a:hover {
  color: var(--brown);
}

.topbar-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--brown-deep);
  border-radius: 3px;
  padding: 0 22px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.topbar-cta,
.button.primary {
  color: #fff;
  background: var(--brown-deep);
}

.topbar-cta:hover,
.button:hover {
  opacity: 0.88;
}

.button:active {
  transform: scale(0.98);
}

.button.wide {
  min-width: min(100%, 320px);
  min-height: 56px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.hero {
  min-height: calc(100vh - 73px);
  padding-top: 92px;
  padding-bottom: 120px;
  background-image: radial-gradient(#cec5bb 0.6px, transparent 0.6px);
  background-size: 24px 24px;
}

.customizer-page {
  padding-top: 72px;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #f2e6d8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.14;
}

h3 {
  margin-bottom: 10px;
  font-size: 0.92rem;
  font-weight: 600;
}

.lead,
.hero-copy p,
.section-title p,
.memory-band p,
.milestone-grid p,
.builder-options p,
.testimonial-grid p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-copy .button {
  margin-top: 16px;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.hero-art::after {
  position: absolute;
  right: 10%;
  bottom: 7%;
  width: 120px;
  height: 120px;
  background: var(--surface-warm);
  content: "";
  opacity: 0.7;
  z-index: -1;
}

.hero-art img {
  width: min(100%, 520px);
  border: 1px solid rgba(206, 197, 187, 0.42);
  border-radius: var(--photo-radius);
  background: #fff;
  object-fit: cover;
}

.milestones,
.customize,
.testimonials {
  max-width: var(--max);
  margin: 0 auto;
  padding: 116px clamp(20px, 4vw, 40px);
}

.section-title {
  margin-bottom: 48px;
}

.section-title.centered {
  text-align: center;
}

.section-title.centered p {
  max-width: 760px;
  margin-inline: auto;
}

.section-title.centered .button {
  margin-top: 22px;
}

.section-title span {
  display: block;
  width: 64px;
  height: 1px;
  margin: 22px auto 0;
  background: var(--brown);
}

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 32px;
}

.milestone-grid article {
  text-align: center;
}

.line-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--brown);
  border: 1px solid var(--brown);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}

.line-icon.accent {
  color: var(--red);
  border-color: var(--red);
}

.gallery-section {
  padding: 116px clamp(20px, 4vw, 40px);
  background: var(--surface-low);
}

.gallery-section > * {
  max-width: var(--max);
  margin-inline: auto;
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

figure {
  margin: 0;
  padding: 8px;
  background: var(--surface-card);
  border: 1px solid rgba(206, 197, 187, 0.52);
  border-radius: var(--photo-radius);
}

figure.tall {
  grid-row: span 2;
}

figure img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  border-radius: calc(var(--photo-radius) - 3px);
  object-fit: cover;
}

figure.tall img {
  aspect-ratio: 1 / 1.5;
}

figcaption {
  padding: 18px 10px 10px;
  color: var(--brown);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-builder {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.builder-preview {
  position: sticky;
  top: 96px;
  padding: 10px;
  background: var(--surface-card);
  border: 1px solid rgba(206, 197, 187, 0.58);
  border-radius: var(--photo-radius);
}

.builder-preview img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: calc(var(--photo-radius) - 3px);
  background: #fff;
  object-fit: contain;
  object-position: center;
}

.preview-note {
  display: grid;
  gap: 6px;
  padding: 18px 10px 8px;
}

.preview-note strong {
  color: var(--brown-deep);
  font-size: 0.9rem;
}

.preview-note span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.builder-options {
  display: grid;
  gap: 34px;
}

.option-group {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(206, 197, 187, 0.7);
}

.option-heading {
  margin-bottom: 18px;
}

.option-heading h2,
.option-heading h3 {
  margin-bottom: 6px;
  color: var(--brown-deep);
  font-size: 1rem;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
}

.option-heading p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

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

.variant-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 12px;
  cursor: pointer;
  background: var(--surface-card);
  border: 1px solid rgba(206, 197, 187, 0.65);
  border-radius: 8px;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.variant-card:hover {
  border-color: rgba(115, 89, 75, 0.6);
  transform: translateY(-1px);
}

.variant-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.variant-card > img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  border: 1px solid rgba(206, 197, 187, 0.6);
  border-radius: 7px;
  object-fit: cover;
  object-position: center;
}

.variant-card:has(input:checked) {
  background: #fffaf4;
  border-color: var(--brown-deep);
}

.variant-card:has(input:checked)::after {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #fff;
  background: var(--brown-deep);
  border-radius: 50%;
  content: "✓";
  font-size: 0.78rem;
  font-weight: 800;
}

.variant-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1.25 / 1;
  border: 1px solid rgba(206, 197, 187, 0.6);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(242, 230, 216, 0.92), rgba(255, 255, 255, 0.78)),
    var(--surface-warm);
}

.variant-thumb.box-classic {
  background:
    linear-gradient(0deg, transparent 63%, rgba(74, 52, 40, 0.18) 64%),
    repeating-linear-gradient(90deg, transparent 0 32%, rgba(115, 89, 75, 0.26) 33% 34%),
    #f2e6d8;
}

.variant-thumb.box-clean {
  background:
    linear-gradient(0deg, transparent 70%, rgba(74, 52, 40, 0.16) 71%),
    radial-gradient(circle at 50% 62%, rgba(166, 56, 58, 0.22) 0 9%, transparent 10%),
    #f7efe7;
}

.variant-thumb.box-premium {
  background:
    radial-gradient(circle at 20% 24%, rgba(166, 56, 58, 0.2) 0 8%, transparent 9%),
    radial-gradient(circle at 80% 24%, rgba(166, 56, 58, 0.2) 0 8%, transparent 9%),
    linear-gradient(0deg, rgba(74, 52, 40, 0.2) 0 26%, transparent 27%),
    #f2e6d8;
}

.variant-thumb.dolls-couple,
.variant-thumb.dolls-hug,
.variant-thumb.dolls-custom {
  position: relative;
  overflow: hidden;
}

.variant-thumb.dolls-couple::before,
.variant-thumb.dolls-couple::after,
.variant-thumb.dolls-hug::before,
.variant-thumb.dolls-hug::after,
.variant-thumb.dolls-custom::before,
.variant-thumb.dolls-custom::after {
  position: absolute;
  bottom: 22%;
  width: 28%;
  aspect-ratio: 1;
  border-radius: 50% 50% 42% 42%;
  content: "";
}

.variant-thumb.dolls-couple::before,
.variant-thumb.dolls-hug::before,
.variant-thumb.dolls-custom::before {
  left: 22%;
  background: #1a1c1c;
}

.variant-thumb.dolls-couple::after,
.variant-thumb.dolls-hug::after,
.variant-thumb.dolls-custom::after {
  right: 22%;
  background: #7a4b32;
}

.variant-thumb.dolls-hug::before {
  left: 28%;
}

.variant-thumb.dolls-hug::after {
  right: 28%;
}

.variant-thumb.dolls-custom {
  background:
    radial-gradient(circle at 50% 70%, rgba(166, 56, 58, 0.9) 0 8%, transparent 9%),
    #f7efe7;
}

.variant-card strong {
  color: var(--brown-deep);
  font-size: 0.88rem;
}

.variant-card small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

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

.box-variant-card {
  position: relative;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 150px;
  padding: 12px;
  cursor: pointer;
  background: var(--surface-card);
  border: 1px solid rgba(206, 197, 187, 0.65);
  border-radius: 8px;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.box-variant-card:hover {
  border-color: rgba(115, 89, 75, 0.6);
  transform: translateY(-1px);
}

.box-variant-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.box-variant-card:has(input:checked) {
  background: #fffaf4;
  border-color: var(--brown-deep);
}

.box-variant-card:has(input:checked)::after {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #fff;
  background: var(--brown-deep);
  border-radius: 50%;
  content: "✓";
  font-size: 0.78rem;
  font-weight: 800;
}

.box-variant-thumb {
  display: grid;
  width: 132px;
  aspect-ratio: 1.3 / 1;
  overflow: hidden;
  place-items: center;
  border-radius: 7px;
  background: #fff;
}

.box-variant-thumb img {
  width: 132px;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.box-variant-card span {
  display: grid;
  gap: 6px;
}

.box-variant-card strong {
  color: var(--brown-deep);
  font-size: 0.92rem;
}

.box-variant-card small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

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

.color-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 12px;
  cursor: pointer;
  background: var(--surface-card);
  border: 1px solid rgba(206, 197, 187, 0.65);
  border-radius: 8px;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.color-card:hover {
  border-color: rgba(115, 89, 75, 0.6);
  transform: translateY(-1px);
}

.color-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.color-card:has(input:checked) {
  background: #fffaf4;
  border-color: var(--brown-deep);
}

.color-swatch {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid rgba(74, 52, 40, 0.24);
  border-radius: 50%;
}

.color-brown {
  background: #70432f;
}

.color-black {
  background: #171717;
}

.color-yellow {
  background: #e0b337;
}

.color-red {
  background: #9b1c31;
}

.color-card strong {
  color: var(--brown-deep);
  font-size: 0.84rem;
}

.order-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  background: var(--surface-low);
  border: 1px solid rgba(206, 197, 187, 0.7);
  border-radius: 8px;
}

.order-summary div {
  display: grid;
  gap: 4px;
}

.order-summary span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-summary strong {
  color: var(--brown-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 400;
}

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

.story-fields label {
  display: grid;
  gap: 8px;
  color: var(--brown-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-fields input,
.story-fields textarea {
  width: 100%;
  border: 1px solid rgba(206, 197, 187, 0.85);
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--surface-card);
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
}

.story-fields textarea {
  min-height: 110px;
  resize: vertical;
}

.story-fields-placeholder {
  padding: 18px;
  background: var(--surface-low);
  border: 1px solid rgba(206, 197, 187, 0.7);
  border-radius: 8px;
}

.story-fields-placeholder p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.wide-field {
  grid-column: 1 / -1;
}

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

.testimonial-grid article {
  min-height: 220px;
  padding: 40px 28px;
  text-align: center;
  background: var(--surface-card);
  border: 1px solid rgba(206, 197, 187, 0.5);
}

.memory-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
  padding: 88px clamp(20px, 4vw, 40px);
  color: #fff;
  background: var(--brown);
}

.memory-band img,
.memory-band div {
  width: min(100%, 600px);
}

.memory-band img {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--photo-radius);
  object-fit: cover;
}

.memory-band h2 {
  margin-bottom: 22px;
}

.memory-band p {
  color: rgba(255, 255, 255, 0.88);
}

.stars {
  margin-bottom: 24px;
  color: var(--red);
  font-size: 0.8rem;
  letter-spacing: 0.24em;
}

cite {
  color: var(--muted);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 36px;
  padding: 120px 20px;
  text-align: center;
  background: #eeeeee;
}

.final-cta h2 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
}

.final-cta img {
  width: 150px;
  border-radius: var(--photo-radius);
  opacity: 0.9;
}

.store-topbar {
  background: rgba(255, 255, 255, 0.94);
}

.store-hero,
.store-products,
.store-process,
.store-final-cta {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.store-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  min-height: calc(100vh - 73px);
  padding-top: 52px;
  padding-bottom: 62px;
}

.store-hero-copy {
  max-width: 650px;
}

.store-hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 5.7vw, 5.8rem);
}

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

.store-hero-media {
  padding: 10px;
  border: 1px solid rgba(206, 197, 187, 0.6);
  border-radius: var(--photo-radius);
  background: #fff;
}

.store-hero-media img {
  width: 100%;
  max-height: 720px;
  border-radius: calc(var(--photo-radius) - 3px);
  object-fit: cover;
  object-position: center;
}

.store-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(206, 197, 187, 0.7);
  border-top: 1px solid rgba(206, 197, 187, 0.7);
  border-bottom: 1px solid rgba(206, 197, 187, 0.7);
}

.store-trust-strip span {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: var(--brown-deep);
  background: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.store-categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px clamp(20px, 4vw, 40px) 20px;
}

.store-categories a {
  display: grid;
  gap: 8px;
  min-height: 118px;
  align-content: center;
  padding: 22px;
  border: 1px solid rgba(206, 197, 187, 0.75);
  border-radius: 8px;
  background: #fff;
}

.store-categories strong {
  color: var(--brown-deep);
}

.store-categories span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.store-products,
.store-process {
  padding-top: 84px;
  padding-bottom: 74px;
}

.store-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.store-section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.store-section-heading > a {
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-transform: uppercase;
}

.product-card-grid {
  display: grid;
  grid-template-columns: 1.18fr repeat(2, minmax(0, 0.82fr));
  gap: 20px;
  align-items: stretch;
}

.store-product-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(206, 197, 187, 0.75);
  border-radius: 8px;
  background: #fff;
}

.featured-product {
  grid-row: span 1;
}

.product-image-link {
  display: block;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(242, 230, 216, 0.78), rgba(255, 255, 255, 0.82)),
    #fff;
}

.product-image-link img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  border-radius: 6px;
  object-fit: contain;
  object-position: center;
}

.featured-product .product-image-link img {
  aspect-ratio: 1.22 / 1;
}

.product-card-copy {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.product-card-copy h3 {
  margin: 0;
  color: var(--brown-deep);
  font-size: 1.15rem;
}

.product-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.product-badge {
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: #7a3f3f;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.muted-badge {
  color: var(--brown-deep);
  background: #e8efe4;
}

.product-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 4px;
}

.product-card-meta strong {
  color: var(--brown-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.product-card-meta span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card-copy .button {
  width: 100%;
}

.store-feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: 76px clamp(20px, 4vw, 40px);
  color: #fff;
  background: #536250;
}

.store-feature-band > div {
  max-width: 620px;
  justify-self: end;
}

.store-feature-band h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
}

.store-feature-band p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
}

.store-feature-band .button {
  margin-top: 12px;
  border-color: #fff;
}

.store-feature-band img {
  width: min(100%, 620px);
  border-radius: var(--photo-radius);
  object-fit: cover;
}

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

.process-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(206, 197, 187, 0.72);
  border-radius: 8px;
  background: #fff;
}

.process-grid span {
  color: #7a3f3f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-grid h3,
.process-grid p {
  margin: 0;
}

.process-grid p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.store-testimonials {
  padding-top: 76px;
}

.store-final-cta {
  display: grid;
  justify-items: center;
  gap: 22px;
  padding-top: 88px;
  padding-bottom: 104px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(249, 249, 249, 0.78), rgba(249, 249, 249, 1)),
    #e8efe4;
}

.store-final-cta h2 {
  max-width: 780px;
  font-size: clamp(2.4rem, 4.5vw, 4.7rem);
}

.shop-home {
  background: var(--surface-low);
}

.shop-banner,
.shop-product-section,
.shop-info-band {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.shop-banner {
  padding-top: 54px;
  padding-bottom: 44px;
}

.shop-banner-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  min-height: 420px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 54px);
  border: 1px solid rgba(206, 197, 187, 0.72);
  border-radius: 10px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.96) 0 44%, rgba(242, 230, 216, 0.72) 45% 100%),
    #fff;
}

.shop-banner-copy {
  display: grid;
  align-content: center;
  justify-items: start;
}

.shop-banner-copy h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.shop-banner-copy p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.7;
}

.shop-banner-card img {
  width: 100%;
  max-height: 470px;
  border-radius: 8px;
  object-fit: contain;
  object-position: center;
}

.shop-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.shop-benefits span {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 12px;
  color: var(--brown-deep);
  background: #fff;
  border: 1px solid rgba(206, 197, 187, 0.66);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.shop-product-section {
  padding-top: 54px;
  padding-bottom: 28px;
}

.compact-section {
  padding-top: 28px;
}

.shop-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.shop-section-title h2 {
  color: #0472cf;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 800;
}

.shop-section-title a {
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #0472cf;
  border-radius: 7px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

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

.shop-photo-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 260px;
  background: #fff;
  border: 1px solid rgba(206, 197, 187, 0.58);
  border-radius: 9px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.shop-photo-card:hover {
  border-color: rgba(74, 52, 40, 0.35);
  box-shadow: 0 18px 42px rgba(26, 28, 28, 0.08);
  transform: translateY(-2px);
}

.shop-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  padding: 14px;
  object-fit: contain;
  object-position: center;
}

.shop-photo-card span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 10px 12px;
  color: var(--brown-deep);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(206, 197, 187, 0.74);
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.shop-info-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 54px;
  padding-top: 42px;
  padding-bottom: 42px;
  color: #fff;
  background: var(--brown);
  max-width: none;
}

.shop-info-band > div,
.shop-info-band > a {
  max-width: var(--max);
}

.shop-info-band > div {
  margin-left: max(clamp(20px, 4vw, 40px), calc((100vw - var(--max)) / 2 + 40px));
}

.shop-info-band > a {
  margin-right: max(clamp(20px, 4vw, 40px), calc((100vw - var(--max)) / 2 + 40px));
  border-color: #fff;
}

.shop-info-band h2 {
  max-width: 680px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.shop-info-band p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.shop-testimonials {
  padding-top: 74px;
}

.shop-home-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid rgba(206, 197, 187, 0.68);
}

.shop-home-headline {
  display: grid;
  grid-template-columns: 190px minmax(240px, 1fr) 120px;
  align-items: center;
  gap: 28px;
  max-width: 1190px;
  margin: 0 auto;
  padding: 22px clamp(20px, 4vw, 40px);
}

.shop-search {
  display: flex;
  align-items: center;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid var(--brown);
  border-radius: 999px;
  background: #fff;
}

.shop-search input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0 18px;
  color: var(--ink);
  font: inherit;
  background: transparent;
}

.shop-search span {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-right: 3px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.45rem;
  background: var(--brown-deep);
}

.shop-search span::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.shop-search span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transform: translate(9px, 9px) rotate(45deg);
}

.shop-cart {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  background: var(--brown-deep);
}

.shop-home-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  min-height: 54px;
  padding: 0 clamp(20px, 4vw, 40px);
  background: var(--brown);
}

.shop-home-nav a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.simple-shop-home {
  min-height: calc(100vh - 126px);
  padding: 46px clamp(20px, 4vw, 40px) 90px;
  background: #f4f4f4;
}

.simple-hero-photo,
.simple-product-row {
  max-width: 1190px;
  margin: 0 auto;
}

.simple-hero-photo a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(34, 25, 20, 0.06);
}

.simple-hero-photo img {
  width: 100%;
  height: clamp(360px, 42vw, 540px);
  border-radius: 8px;
  object-fit: contain;
  object-position: center;
}

.simple-product-row {
  padding-top: 50px;
}

.simple-product-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.simple-product-heading h1 {
  margin: 0;
  color: var(--brown-deep);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
}

.simple-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 276px));
  gap: 22px;
}

.simple-product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  min-height: 392px;
  padding: 20px 18px 22px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.simple-product-card:hover {
  box-shadow: 0 18px 42px rgba(26, 28, 28, 0.08);
  transform: translateY(-2px);
}

.simple-product-image {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 228px;
}

.simple-product-image img {
  width: 100%;
  height: 228px;
  padding: 0;
  object-fit: contain;
  object-position: center;
}

.simple-product-name {
  display: block;
  min-height: 44px;
  margin-top: 14px;
  color: #141414;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
}

.simple-product-price {
  display: block;
  margin-top: 18px;
  color: #08a320;
  font-size: 0.95rem;
  font-weight: 900;
}

.simple-product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 16px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--brown-deep);
}

.product-detail-page {
  min-height: calc(100vh - 126px);
  padding: 54px clamp(20px, 4vw, 40px) 86px;
  background: #f4f4f4;
}

.product-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 4vw, 56px);
  max-width: 1190px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 8px;
  background: #fff;
}

.product-detail-gallery {
  min-width: 0;
}

.product-detail-main {
  display: block;
  width: 100%;
  height: clamp(420px, 52vw, 640px);
  border-radius: 8px;
  object-fit: contain;
  background: #f8f3ee;
}

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

.product-detail-thumbs button {
  display: block;
  padding: 0;
  border: 1px solid rgba(206, 197, 187, 0.7);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

.product-detail-thumbs button.active {
  border-color: var(--brown-deep);
  box-shadow: 0 0 0 2px rgba(82, 55, 42, 0.18);
}

.product-detail-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #fff;
}

.product-detail-info {
  align-self: center;
}

.product-detail-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-detail-info h1 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.product-detail-info p {
  max-width: 460px;
  margin: 0 0 24px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}

.product-detail-price {
  display: block;
  margin-bottom: 22px;
  color: #08a320;
  font-size: 1.35rem;
  font-weight: 900;
}

.product-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 4px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  background: var(--brown-deep);
}

.stl-product-page {
  min-height: calc(100vh - 126px);
  padding: 30px clamp(18px, 4vw, 42px) 76px;
  background: #fff;
}

.stl-product-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.72fr);
  gap: clamp(34px, 5vw, 74px);
  max-width: 1360px;
  margin: 0 auto;
}

.stl-gallery-layout {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
  align-items: start;
}

.stl-thumbs {
  display: grid;
  gap: 16px;
}

.stl-thumb-button {
  display: grid;
  place-items: center;
  width: 112px;
  min-height: 112px;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f0efee;
  color: var(--brown-deep);
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.stl-thumb-button.active {
  border-color: #111;
  box-shadow: inset 0 -5px 0 #111;
}

.stl-thumb-button img {
  width: 100%;
  height: 112px;
  object-fit: contain;
}

.stl-main-preview {
  display: grid;
  place-items: center;
  min-height: min(74vh, 720px);
  padding: clamp(18px, 4vw, 44px);
  border-radius: 8px;
  background: #fff;
}

.stl-main-preview img {
  display: block;
  width: min(100%, 660px);
  max-height: 650px;
  object-fit: contain;
}

.stl-main-preview p {
  margin: 20px 0 0;
  color: #6a5b53;
  font-size: 0.9rem;
  font-weight: 700;
}

.stl-info {
  align-self: start;
  padding-top: 8px;
}

.stl-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
  color: #777;
  font-size: 0.9rem;
}

.stl-breadcrumb a {
  color: #777;
}

.stl-breadcrumb strong {
  color: #111;
  font-weight: 500;
}

.stl-info h1 {
  max-width: 520px;
  margin: 0 0 22px;
  color: #050505;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.05rem);
  font-weight: 900;
  line-height: 1.05;
}

.stl-price {
  display: block;
  margin-bottom: 22px;
  color: #050505;
  font-size: clamp(1.8rem, 3.2vw, 2.35rem);
  font-weight: 900;
}

.stl-installments {
  margin: 0 0 10px;
  color: #1f1f1f;
  font-size: 1rem;
}

.stl-details {
  margin: 0 0 26px;
}

.stl-details summary {
  color: #050505;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}

.stl-details p {
  max-width: 430px;
  margin: 12px 0 0;
  color: #4d4743;
  font-size: 0.95rem;
  line-height: 1.65;
}

.stl-buy-row {
  display: grid;
  grid-template-columns: 128px minmax(180px, 1fr);
  gap: 12px;
  max-width: 430px;
  margin-bottom: 24px;
}

.stl-quantity {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  height: 48px;
  border: 1px solid #cfc7bf;
  border-radius: 8px;
  background: #fff;
}

.stl-quantity button {
  border: 0;
  background: transparent;
  color: #050505;
  font-size: 1.55rem;
  font-weight: 800;
  cursor: pointer;
}

.stl-quantity output {
  color: #050505;
  text-align: center;
  font-size: 0.98rem;
  font-weight: 600;
}

.stl-buy-button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
}

.stl-buy-button:hover {
  background: #2b211c;
}

.stl-buy-note {
  max-width: 430px;
  margin: -10px 0 24px;
  padding: 13px 15px;
  border-radius: 8px;
  background: #f4e7d7;
  color: var(--brown-deep);
  font-size: 0.88rem;
  font-weight: 800;
}

.stl-trust-list {
  display: grid;
  gap: 22px;
  max-width: 460px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.stl-trust-list li {
  position: relative;
  padding-left: 30px;
}

.stl-trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border: 1.5px solid #111;
  border-radius: 50%;
}

.stl-trust-list strong,
.stl-trust-list span {
  display: block;
}

.stl-trust-list strong {
  margin-bottom: 6px;
  color: #050505;
  font-size: 0.9rem;
  font-weight: 900;
}

.stl-trust-list span {
  color: #211b18;
  font-size: 0.88rem;
  line-height: 1.45;
}

.links-headline {
  grid-template-columns: minmax(160px, 1fr) auto;
}

.links-header-button {
  min-width: 132px;
}

.links-page {
  min-height: calc(100vh - 126px);
  padding: clamp(34px, 6vw, 76px) clamp(18px, 5vw, 52px);
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.82), rgba(239, 226, 213, 0.96)),
    #efe2d5;
}

.links-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}

.links-profile,
.link-card {
  border: 1px solid rgba(206, 197, 187, 0.78);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(34, 25, 20, 0.06);
}

.links-profile {
  display: grid;
  align-content: center;
  min-height: 430px;
  padding: clamp(28px, 5vw, 48px);
}

.links-mark {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 26px;
  border: 1px solid rgba(91, 60, 44, 0.18);
  border-radius: 50%;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.32rem;
  background: var(--brown-deep);
}

.links-kicker {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.links-profile h1 {
  max-width: 480px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 0.96;
}

.links-profile p:last-child {
  max-width: 430px;
  margin: 22px 0 0;
  color: #49382f;
  font-size: 1rem;
  line-height: 1.7;
}

.links-grid {
  display: grid;
  gap: 18px;
  align-content: center;
}

.link-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 174px;
  padding: clamp(20px, 3vw, 30px);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.link-card:hover {
  border-color: rgba(91, 60, 44, 0.55);
  box-shadow: 0 24px 58px rgba(34, 25, 20, 0.1);
  transform: translateY(-2px);
}

.link-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
}

.link-card.whatsapp .link-icon {
  background: #158f4f;
}

.link-card.shopee .link-icon {
  background: #e95622;
}

.link-card.stl .link-icon {
  background: #5b3c2c;
}

.link-content {
  display: grid;
  gap: 8px;
}

.link-content strong {
  color: var(--brown-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1;
}

.link-content span {
  max-width: 390px;
  color: #514239;
  font-size: 0.98rem;
  line-height: 1.55;
}

.link-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(91, 60, 44, 0.24);
  border-radius: 999px;
  color: var(--brown-deep);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  background: #fbf6f1;
}

.links-only-body {
  min-height: 100vh;
  background: #efe2d5;
}

.links-page-only {
  display: grid;
  place-items: center;
  min-height: 100vh;
}

.links-shell-only {
  grid-template-columns: minmax(280px, 620px);
  width: min(620px, 100%);
}

.links-shell-only .link-card {
  min-height: 148px;
}

@media (max-width: 760px) {
  .shop-home-headline {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 20px;
  }

  .shop-cart {
    display: none;
  }

  .shop-home-nav {
    justify-content: flex-start;
    gap: 22px;
    min-height: 48px;
    overflow-x: auto;
  }

  .simple-shop-home {
    padding: 24px 16px 56px;
  }

  .simple-hero-photo img {
    height: 360px;
  }

  .simple-product-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 290px;
  }

  .product-detail-page {
    padding: 24px 16px 56px;
  }

  .product-detail-shell {
    grid-template-columns: 1fr;
  }

  .product-detail-main {
    height: 420px;
  }

  .product-detail-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stl-product-page {
    padding: 22px 16px 56px;
  }

  .stl-product-shell,
  .stl-gallery-layout {
    grid-template-columns: 1fr;
  }

  .stl-thumbs {
    order: 2;
    grid-template-columns: repeat(5, minmax(72px, 1fr));
    gap: 8px;
    overflow-x: auto;
  }

  .stl-thumb-button {
    width: 100%;
    min-height: 84px;
  }

  .stl-thumb-button img {
    height: 84px;
  }

  .stl-main-preview {
    min-height: 420px;
  }

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

  .links-headline {
    grid-template-columns: 1fr;
  }

  .links-page {
    padding: 24px 16px 56px;
  }

  .links-shell {
    grid-template-columns: 1fr;
  }

  .links-profile {
    min-height: auto;
  }

  .link-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .link-icon {
    width: 58px;
    height: 58px;
  }

  .link-action {
    grid-column: 1 / -1;
    width: 100%;
  }
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px clamp(20px, 4vw, 40px);
  background: var(--surface-card);
  border-top: 1px solid rgba(206, 197, 187, 0.65);
}

footer p {
  margin: 8px 0 0;
  text-transform: none;
  letter-spacing: 0.02em;
}

.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: var(--surface-card);
  border-bottom: 1px solid rgba(206, 197, 187, 0.7);
}

.checkout-header span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-page {
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px clamp(20px, 5vw, 72px) 96px;
}

.checkout-title {
  margin-bottom: 32px;
}

.checkout-title h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.checkout-panel {
  background: var(--surface-card);
  border: 1px solid rgba(206, 197, 187, 0.72);
  border-radius: 8px;
}

.checkout-summary {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
  padding: 16px;
}

.checkout-summary img {
  width: 140px;
  aspect-ratio: 1.2 / 1;
  border-radius: 6px;
  background: #fff;
  object-fit: contain;
}

.checkout-product-copy h2 {
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.checkout-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 0 12px;
}

.checkout-details div {
  display: grid;
  gap: 4px;
}

.checkout-details dt,
.checkout-price span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.checkout-details dd {
  margin: 0;
  color: var(--brown-deep);
  font-size: 0.86rem;
  font-weight: 700;
}

.checkout-product-copy a {
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: underline;
}

.checkout-price {
  display: grid;
  gap: 5px;
  justify-items: end;
}

.checkout-price strong {
  color: var(--brown-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(320px, 1.12fr);
  gap: 18px;
  align-items: start;
}

.checkout-fields {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.panel-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(206, 197, 187, 0.7);
}

.panel-heading span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  background: var(--brown-deep);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
}

.panel-heading h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.checkout-fields label {
  display: grid;
  gap: 7px;
  color: var(--brown-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.checkout-fields input {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(206, 197, 187, 0.9);
  border-radius: 5px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

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

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

.payment-methods label {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 12px;
  cursor: pointer;
  border: 1px solid rgba(206, 197, 187, 0.9);
  border-radius: 5px;
}

.payment-methods input {
  width: auto;
}

.payment-trust-box {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(82, 52, 39, 0.14);
  border-radius: 6px;
  background: #fffaf4;
}

.payment-trust-box strong {
  color: var(--brown-deep);
  font-size: 0.86rem;
}

.payment-trust-box ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.payment-trust-box li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.payment-trust-box li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  color: #fff;
  background: var(--brown-deep);
  content: "\2713";
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 14px;
  text-align: center;
}

.card-preview {
  display: grid;
  align-content: space-between;
  min-height: 148px;
  padding: 20px;
  color: #fff;
  background: var(--brown);
  border-radius: 8px;
}

.card-preview span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
}

.card-preview strong {
  font-size: 1rem;
  letter-spacing: 0.13em;
}

.card-payment-fields,
.pix-payment-fields,
.pix-result {
  display: grid;
  gap: 16px;
}

.secure-card-field {
  min-height: 45px;
  border: 1px solid rgba(206, 197, 187, 0.9);
  border-radius: 5px;
  padding: 12px 14px;
  background: #fff;
}

.pix-payment-fields p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.pix-message {
  padding: 12px;
  color: var(--brown-deep);
  background: var(--surface-warm);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
}

.pix-error {
  color: #7f1527;
  background: #fae4e7;
}

.cep-message {
  padding: 10px 12px;
  color: var(--brown-deep);
  background: var(--surface-warm);
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.cep-error {
  color: #7f1527;
  background: #fae4e7;
}

.shipping-options-block,
.shipping-options {
  display: grid;
  gap: 10px;
}

.shipping-options-block {
  margin-top: 4px;
}

.shipping-option {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(206, 197, 187, 0.9);
  border-radius: 5px;
  padding: 12px;
  cursor: pointer;
}

.shipping-option:has(input:checked) {
  border-color: var(--brown-deep);
  background: #fffaf4;
}

.shipping-option span {
  display: grid;
  gap: 3px;
  flex: 1;
}

.shipping-option small {
  color: var(--muted);
}

.admin-shipping {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
  padding: 18px;
}

.admin-shipping p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.pix-result {
  padding-top: 4px;
}

.pix-result img {
  width: min(100%, 240px);
  aspect-ratio: 1;
  justify-self: center;
  border: 1px solid rgba(206, 197, 187, 0.9);
  border-radius: 6px;
}

.pix-result textarea {
  width: 100%;
  min-height: 94px;
  resize: vertical;
  border: 1px solid rgba(206, 197, 187, 0.9);
  border-radius: 5px;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.pix-result a {
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: underline;
}

.payment-progress,
#pix-loading,
#card-result {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-progress {
  padding: 12px;
  border: 1px solid rgba(82, 52, 39, 0.18);
  background: var(--surface-warm);
  border-radius: 6px;
}

.payment-progress strong,
.payment-progress p {
  display: block;
  margin: 0;
}

.payment-progress strong {
  font-size: 0.82rem;
}

.payment-progress p {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.loading-spinner {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 2px solid rgba(82, 52, 39, 0.2);
  border-top-color: var(--brown);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.paid-body {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: var(--surface-low);
}

.paid-panel {
  max-width: 660px;
  padding: 42px;
  text-align: center;
}

.paid-check {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: #fff;
  background: #47724c;
  border-radius: 50%;
  font-size: 2rem;
  place-items: center;
}

.paid-panel h1 {
  margin-bottom: 14px;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.paid-panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.paid-panel .button {
  display: inline-flex;
  margin-top: 14px;
}

.tracking-panel {
  text-align: left;
}

.tracking-panel h1 {
  text-align: center;
}

.tracking-panel > .eyebrow {
  text-align: center;
}

.tracking-status {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 20px 0;
  padding: 12px 16px;
  color: var(--brown-deep);
  background: var(--cream);
  border: 1px solid var(--line);
  font-weight: 700;
  gap: 10px;
}

.tracking-status.success {
  color: #294f30;
  background: #edf7ee;
  border-color: #bfd7c1;
}

.tracking-status.error {
  color: #9f1d35;
  background: #fae7eb;
  border-color: #efc4cc;
}

.tracking-card {
  margin-top: 18px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.tracking-label {
  margin: 16px 0 5px;
  color: var(--brown-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tracking-label:first-child {
  margin-top: 0;
}

.tracking-card strong {
  display: block;
  overflow-wrap: anywhere;
}

.tracking-card #tracking-message {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.button.secondary {
  color: var(--brown-deep);
  background: transparent;
}

.checkout-submit {
  width: 100%;
  min-height: 52px;
}

.checkout-fields small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.admin-body {
  min-height: 100vh;
  background: var(--surface-low);
}

.admin-link {
  border: 0;
  color: var(--brown);
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-page {
  max-width: 1380px;
  margin: 0 auto;
  padding: 64px clamp(20px, 5vw, 72px) 96px;
}

.admin-login {
  max-width: 560px;
  margin: 8vh auto 0;
  padding: 34px;
}

.admin-login h1,
.admin-heading h1 {
  margin-bottom: 16px;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.admin-login p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.admin-login .button {
  margin-top: 8px;
}

.admin-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}


.orders-table-wrap {
  overflow-x: auto;
}

.orders-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.orders-table th,
.orders-table td {
  padding: 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(206, 197, 187, 0.66);
}

.orders-table th {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.orders-table td {
  color: var(--brown-deep);
  font-size: 0.84rem;
  line-height: 1.55;
}

.orders-table td strong,
.orders-table td span {
  display: block;
}

.order-status {
  width: fit-content;
  padding: 4px 7px;
  background: var(--surface-warm);
  border-radius: 4px;
  font-size: 0.74rem;
  font-weight: 800;
}

.admin-orders-grid {
  display: grid;
  gap: 16px;
}

.order-card {
  padding: 20px;
}

.empty-order {
  color: var(--muted);
}

.order-card-main,
.order-card-summary {
  display: grid;
  gap: 18px;
}

.order-card-main {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) auto;
}

.order-card-main h2 {
  margin: 6px 0 4px;
  font-family: Inter, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
}

.order-card-main p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.order-date {
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-card-status {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.order-card-status strong {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.order-status.fulfillment {
  background: #edf7ee;
  color: #294f30;
}

.order-card-summary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(206, 197, 187, 0.66);
}

.order-fulfillment-form {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(210px, 1fr) auto minmax(120px, auto);
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(206, 197, 187, 0.66);
}

.order-fulfillment-form label {
  display: grid;
  color: var(--brown-deep);
  font-size: 0.72rem;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-fulfillment-form select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  color: var(--brown-deep);
  background: #fff;
  border: 1px solid var(--line);
  font: 700 0.9rem Inter, sans-serif;
}

.order-fulfillment-message {
  color: var(--muted);
  font-size: 0.82rem;
}

.order-card-summary span,
.order-details p {
  color: var(--brown-deep);
  font-size: 0.84rem;
  line-height: 1.55;
}

.order-card-summary strong,
.order-details strong {
  display: block;
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.order-details {
  margin-top: 18px;
}

.order-details summary {
  width: fit-content;
  color: var(--brown-deep);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.order-details section {
  padding: 16px;
  background: rgba(246, 242, 238, 0.74);
  border-radius: 8px;
}

.order-details h3 {
  margin: 0 0 12px;
  font-size: 0.92rem;
}

.order-details p {
  margin: 8px 0 0;
}

@media (max-width: 940px) {
  .topbar nav {
    display: none;
  }

  .section-grid,
  .memory-band,
  .store-hero,
  .store-feature-band,
  .shop-banner-card {
    grid-template-columns: 1fr;
  }

  .store-hero {
    min-height: auto;
    padding-top: 52px;
  }

  .store-hero-copy,
  .store-feature-band > div {
    max-width: 760px;
    justify-self: start;
  }

  .store-trust-strip,
  .store-categories,
  .product-card-grid,
  .process-grid,
  .shop-benefits,
  .shop-photo-grid,
  .small-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-banner-card {
    min-height: auto;
  }

  .shop-info-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-info-band > div,
  .shop-info-band > a {
    margin-left: clamp(20px, 4vw, 40px);
    margin-right: clamp(20px, 4vw, 40px);
  }

  .hero {
    padding-top: 64px;
  }

  .hero-copy {
    text-align: center;
    margin-inline: auto;
  }

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

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

  .builder-preview {
    position: static;
  }

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

  .memory-band img {
    justify-self: start;
  }

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

  .order-card-main,
  .order-card-summary,
  .order-details-grid,
  .order-fulfillment-form {
    grid-template-columns: 1fr;
  }

  .order-card-status {
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .topbar {
    align-items: flex-start;
  }

  .topbar-cta {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  .hero,
  .milestones,
  .gallery-section,
  .customize,
  .testimonials,
  .final-cta {
    padding-block: 72px;
  }

  .milestone-grid,
  .testimonial-grid,
  .gallery,
  .variant-grid,
  .store-trust-strip,
  .store-categories,
  .product-card-grid,
  .process-grid,
  .shop-benefits,
  .shop-photo-grid,
  .small-grid {
    grid-template-columns: 1fr;
  }

  .store-hero,
  .store-products,
  .store-process,
  .store-final-cta,
  .shop-banner,
  .shop-product-section {
    padding-block: 56px;
  }

  .store-hero-actions,
  .store-section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .store-feature-band {
    padding-block: 58px;
  }

  .store-trust-strip span {
    min-height: 52px;
  }

  .shop-section-title {
    align-items: stretch;
    flex-direction: column;
  }

  .shop-photo-card,
  .shop-photo-card img {
    min-height: 230px;
  }

  .order-summary {
    align-items: stretch;
    flex-direction: column;
  }

  .story-fields {
    grid-template-columns: 1fr;
  }

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

  .box-variant-grid,
  .box-variant-card {
    grid-template-columns: 1fr;
  }

  .box-variant-thumb,
  .box-variant-thumb img {
    width: 100%;
  }

  .hero-art {
    min-height: 260px;
  }

  .button {
    width: 100%;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  footer nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

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

  .checkout-price {
    justify-items: start;
  }

  .checkout-summary img {
    width: 100%;
    max-width: 220px;
  }

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