:root {
  color-scheme: light;
  --ink: #342216;
  --muted: #806a59;
  --paper: #fbf6ef;
  --soft: #efe3d6;
  --line: #dcc8b7;
  --sage: #b99073;
  --sage-dark: #6f4328;
  --brown: #6f4328;
  --rose: #c9a78e;
  --coral: #8d4f2c;
  --gold: #c89b63;
  --shadow: 0 22px 60px rgba(79, 48, 28, 0.18);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body.cart-open,
body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto auto auto;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 56px);
  background: rgba(255, 253, 249, 0.9);
  border-bottom: 1px solid rgba(221, 229, 216, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #6f4328, #4f301c);
  color: #fff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.1;
  font-size: 1rem;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.77rem;
}

.cart-button,
.account-button,
.menu-button,
.primary-action,
.secondary-action,
.add-button,
.filter-tabs button,
.icon-button {
  min-height: 44px;
  border-radius: 8px;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  white-space: nowrap;
}

.account-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.84);
  color: var(--sage-dark);
  font-weight: 900;
  padding: 10px 14px;
  white-space: nowrap;
}

.account-icon {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 132px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.84);
  color: var(--sage-dark);
  padding: 10px 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-icon {
  display: grid;
  gap: 5px;
  width: 34px;
}

.menu-icon span {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  pointer-events: none;
}

.menu-overlay.is-open {
  pointer-events: auto;
}

.menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(52, 34, 22, 0);
  transition: background 240ms ease;
}

.menu-overlay.is-open .menu-backdrop {
  background: rgba(52, 34, 22, 0.34);
}

.menu-panel {
  position: relative;
  display: grid;
  width: min(100%, 560px);
  min-height: 100%;
  margin-left: auto;
  align-content: start;
  gap: clamp(24px, 5vw, 44px);
  padding: clamp(24px, 6vw, 52px);
  background:
    linear-gradient(145deg, rgba(255, 250, 244, 0.98), rgba(239, 227, 214, 0.98)),
    radial-gradient(circle at 16% 12%, rgba(201, 167, 142, 0.24), transparent 32%);
  box-shadow: -24px 0 70px rgba(52, 34, 22, 0.18);
  transform: translateX(100%);
  transition: transform 300ms ease;
}

.menu-overlay.is-open .menu-panel {
  transform: translateX(0);
}

.menu-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(220, 200, 183, 0.78);
  border-radius: 8px;
  pointer-events: none;
}

.menu-panel-top {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.menu-panel-top h2 {
  font-size: clamp(2.6rem, 10vw, 5.5rem);
}

.menu-links {
  position: relative;
  display: grid;
  gap: 8px;
}

.menu-links a,
.menu-links button {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(220, 200, 183, 0.74);
  background: transparent;
  color: var(--ink);
  font-size: clamp(1.35rem, 5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 0;
  text-align: left;
}

.menu-links a::after,
.menu-links button::after {
  content: ">";
  color: var(--sage-dark);
  font-size: 1rem;
}

.cart-dot {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-shell {
  display: grid;
  min-height: min(560px, calc(100svh - 74px));
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: clamp(22px, 5vw, 64px);
  padding: clamp(24px, 5vw, 64px) clamp(16px, 4vw, 56px) clamp(18px, 4vw, 42px);
  background:
    linear-gradient(120deg, rgba(251, 246, 239, 0.96), rgba(234, 221, 208, 0.78)),
    radial-gradient(circle at 8% 92%, rgba(185, 144, 115, 0.28), transparent 34%);
}

.hero-copy {
  display: flex;
  max-width: 620px;
  flex-direction: column;
  justify-content: center;
  padding-block: 22px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.22;
}

.hero-copy > p:not(.eyebrow),
.service-copy p,
.order-band p {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

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

.service-action-text {
  margin: 18px 0 12px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.service-action {
  width: fit-content;
  background: #fff;
  color: var(--sage-dark);
}

.primary-action,
.secondary-action,
.add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  font-weight: 800;
}

.primary-action,
.add-button {
  background: var(--sage-dark);
  color: #fff;
}

.secondary-action {
  background: #fff;
  color: var(--sage-dark);
  box-shadow: inset 0 0 0 1px var(--line);
}

.service-band .service-action {
  background: #fff;
  color: var(--sage-dark);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.add-button:disabled {
  background: #b5a598;
  color: rgba(255, 255, 255, 0.82);
  cursor: not-allowed;
}

.hero-image {
  position: relative;
  width: min(100%, 590px);
  min-height: 390px;
  aspect-ratio: 4 / 3;
  justify-self: end;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-image-large::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(52, 34, 22, 0.12));
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: #fff8ef;
}

.trust-band article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(79, 48, 28, 0.08);
}

.trust-band article {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.trust-band strong {
  color: var(--ink);
  font-size: 1rem;
}

.trust-band span {
  color: var(--muted);
  line-height: 1.5;
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.shop-band,
.service-band,
.gift-card-band,
.order-band {
  padding: clamp(42px, 7vw, 86px) clamp(16px, 4vw, 56px);
  scroll-margin-top: 96px;
}

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

.section-intro {
  max-width: 58ch;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.collection-tools {
  display: grid;
  min-width: min(100%, 560px);
  justify-items: end;
  gap: 12px;
}

.search-box,
.sort-box {
  display: grid;
  width: min(100%, 420px);
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.search-box input,
.sort-box select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

.sort-box {
  width: min(100%, 260px);
}

.result-count {
  min-height: 22px;
  margin: -10px 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.filter-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tabs button {
  padding: 10px 14px;
  background: #fff;
  color: var(--muted);
  box-shadow: inset 0 0 0 1px var(--line);
}

.filter-tabs button.is-active {
  background: var(--ink);
  color: #fff;
  box-shadow: none;
}

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

.collection-more {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 22px;
}

.collection-more .secondary-action {
  min-width: min(100%, 260px);
}

.empty-results {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  text-align: center;
}

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(38, 48, 44, 0.08);
}

.product-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--soft);
  cursor: pointer;
}

.product-photo:focus-visible {
  outline: 3px solid rgba(111, 67, 40, 0.35);
  outline-offset: 3px;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.product-card:hover .product-photo img {
  transform: scale(1.035);
}

.product-photo.has-image-error {
  display: grid;
  place-items: center;
  min-height: 220px;
}

.product-photo.has-image-error::after {
  content: "Afbeelding niet beschikbaar";
  padding: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--sage-dark);
  font-size: 0.74rem;
  font-weight: 800;
}

.product-info {
  display: flex;
  min-height: 250px;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.product-info h3 {
  cursor: pointer;
}

.product-category,
.product-description,
.product-stock {
  color: var(--muted);
}

.product-category {
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-description {
  margin-bottom: 18px;
  line-height: 1.5;
}

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

.product-price {
  font-size: 1.2rem;
}

.product-stock {
  text-align: right;
  font-size: 0.84rem;
}

.add-button {
  width: 100%;
}

.service-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(22px, 5vw, 60px);
  background: linear-gradient(145deg, #6f4328, #4f301c);
  color: #fff;
}

.service-band .eyebrow,
.service-band p {
  color: rgba(255, 255, 255, 0.78);
}

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

.service-list article {
  min-height: 156px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

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

.service-list strong {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.service-list span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.order-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: #eadbd0;
}

.order-band .step-list {
  max-width: 900px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-left: 0;
  list-style: none;
  counter-reset: order-step;
}

.order-band .step-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(111, 67, 40, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.72);
  color: var(--ink);
  font-weight: 800;
  counter-increment: order-step;
}

.order-band .step-list li::before {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-dark);
  color: #fff;
  content: counter(order-step);
  font-size: 0.86rem;
}

.gift-card-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.64fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: start;
  background: #fff8ef;
}

.gift-card-band p:not(.eyebrow) {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.gift-card-form {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(79, 48, 28, 0.08);
}

.gift-card-balance-form {
  display: grid;
  gap: 10px;
  max-width: 420px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(79, 48, 28, 0.08);
}

.gift-card-balance-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.gift-card-balance-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

.gift-card-balance-form .secondary-action {
  width: 100%;
}

.gift-card-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.gift-card-form input,
.gift-card-form select,
.gift-card-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

.content-band {
  padding: clamp(42px, 7vw, 86px) clamp(16px, 4vw, 56px);
  scroll-margin-top: 96px;
}

.intro-band,
.legal-band {
  background: #fffaf4;
}

.text-panel,
.site-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(79, 48, 28, 0.08);
}

.text-panel {
  padding: clamp(18px, 3vw, 28px);
}

.wide-text {
  max-width: 920px;
}

.text-panel p,
.content-band p,
.section-note {
  color: var(--muted);
  line-height: 1.65;
}

.section-note {
  margin: 22px 0 0;
  max-width: 88ch;
}

.product-details,
.detail-list {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
}

.product-details div,
.detail-list div {
  display: grid;
  grid-template-columns: minmax(90px, 0.42fr) minmax(0, 1fr);
  gap: 10px;
}

.product-details dt,
.detail-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-details dd,
.detail-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.86rem;
}

.product-actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.view-button,
.product-actions .add-button {
  width: 100%;
}

.reviews-band {
  background: #fffaf4;
}

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

.review-grid article {
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--sage-dark);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.5;
}

.instagram-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: #eadbd0;
}

.info-grid-band {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #fff8ef;
}

.check-list,
.contact-list {
  display: grid;
  gap: 10px;
  margin: 16px 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.step-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.step-list li::marker {
  color: var(--sage-dark);
  font-weight: 900;
}

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

.terms-list h3 {
  margin: 16px 0 0;
  color: var(--ink);
}

.terms-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.instagram-icon-link {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-left: 8px;
  place-items: center;
  border-radius: 8px;
  background: var(--soft);
  color: var(--sage-dark);
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: 0.78rem;
  font-weight: 800;
  overflow: hidden;
  vertical-align: middle;
}

.instagram-icon-link img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.instagram-icon-link:hover,
.instagram-icon-link:focus-visible {
  background: #e5d0bd;
  color: var(--ink);
}

.footer-instagram {
  background: rgba(239, 227, 214, 0.18);
  color: #f3dfc9;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.78fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: start;
}

.site-form {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.site-form label,
.checkout-form .check-row {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.checkout-form .check-row {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.checkout-form .terms-check {
  align-items: flex-start;
  line-height: 1.45;
}

.terms-check a {
  color: var(--brown);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-form input,
.site-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--sage-dark);
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 24px;
  padding: 36px clamp(16px, 4vw, 56px);
  background: var(--ink);
  color: #fff;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  visibility: hidden;
}

.product-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 25, 23, 0.45);
}

.product-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(920px, calc(100% - 28px));
  max-height: calc(100svh - 28px);
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  gap: 0;
  margin: 14px auto;
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-dialog > .icon-button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.product-dialog > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  background: #fbf6ef;
  cursor: zoom-in;
  object-fit: contain;
  object-position: center;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(52, 34, 22, 0.76);
}

.image-lightbox img {
  display: block;
  max-width: min(100%, 1120px);
  max-height: calc(100svh - 72px);
  border-radius: 8px;
  background: #fbf6ef;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.image-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2;
}

.cart-image-placeholder {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
}

.product-dialog-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(20px, 4vw, 34px);
}

.modal-price {
  font-size: 1.35rem;
}

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

.modal-gallery button {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: var(--soft);
}

.modal-gallery button.is-active {
  border-color: var(--sage-dark);
  box-shadow: 0 0 0 2px rgba(111, 67, 40, 0.18);
}

.modal-gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  min-height: 0;
  object-fit: cover;
}

.checkout-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.payment-info-box {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf4;
  color: var(--ink);
}

.payment-info-box ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.payment-info-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.gift-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  background: var(--soft);
  color: var(--sage-dark);
  font-weight: 800;
}

.single-remove {
  align-self: center;
}

.cart-panel {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  visibility: hidden;
}

.cart-panel.is-open {
  pointer-events: auto;
  visibility: visible;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 25, 23, 0.38);
  opacity: 0;
  transition: opacity 180ms ease;
}

.cart-panel.is-open .cart-backdrop {
  opacity: 1;
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(100%, 440px);
  height: 100%;
  min-height: 0;
  flex-direction: column;
  overflow: auto;
  padding: 22px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(104%);
  transition: transform 220ms ease;
}

.cart-panel.is-open .cart-drawer {
  transform: translateX(0);
}

.cart-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.icon-button {
  display: grid;
  width: 44px;
  place-items: center;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: 1.5rem;
  line-height: 1;
}

.cart-items {
  display: grid;
  flex: 0 0 auto;
  gap: 12px;
  overflow: auto;
  padding: 18px 0;
}

.cart-empty {
  color: var(--muted);
  line-height: 1.6;
}

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

.cart-line img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-line strong,
.cart-line span {
  display: block;
}

.cart-line span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.88rem;
}

.quantity {
  display: inline-grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--soft);
  font-weight: 800;
}

.quantity-controls {
  display: grid;
  grid-template-columns: repeat(3, 34px);
  gap: 6px;
  justify-content: end;
}

.quantity-controls button {
  display: grid;
  min-height: 34px;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: var(--sage-dark);
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: 0.9rem;
  font-weight: 800;
}

.quantity-controls .remove-item {
  grid-column: 1 / -1;
  color: #8d3d28;
  font-size: 0.78rem;
}

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 1.08rem;
}

.cart-breakdown {
  display: grid;
  gap: 8px;
  padding: 14px 0 4px;
  border-top: 1px solid var(--line);
}

.cart-breakdown[hidden] {
  display: none;
}

.cart-breakdown div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.cart-breakdown strong {
  color: var(--ink);
}

.cart-breakdown .discount-row strong {
  color: var(--sage-dark);
}

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

.checkout-form {
  display: grid;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.checkout-form[hidden] {
  display: none;
}

.checkout-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

.checkout-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--sage-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.code-feedback {
  min-height: 18px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.35;
}

.code-feedback:empty {
  display: none;
}

.code-feedback.is-valid {
  color: var(--sage-dark);
}

.code-feedback.is-invalid {
  color: #9d372b;
}

.cart-actions .primary-action,
.cart-actions .secondary-action {
  width: 100%;
}

.chat-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: grid;
  justify-items: end;
  gap: 12px;
  pointer-events: none;
}

.chat-widget.is-left {
  right: auto;
  left: 20px;
  justify-items: start;
}

.chat-widget[hidden] {
  display: none;
}

.chat-toggle,
.chat-panel {
  pointer-events: auto;
}

.chat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  max-width: min(260px, calc(100vw - 28px));
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: #6f4328;
  color: #fff;
  box-shadow: 0 18px 40px rgba(61, 34, 20, 0.26);
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.chat-toggle-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-family: Georgia, serif;
}

.chat-panel {
  display: none;
  width: min(380px, calc(100vw - 28px));
  max-height: min(620px, calc(100svh - 96px));
  overflow: hidden;
  border: 1px solid rgba(111, 67, 40, 0.2);
  border-radius: 18px;
  background: #fffaf4;
  box-shadow: 0 24px 70px rgba(61, 34, 20, 0.24);
}

.chat-widget.is-open .chat-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
}

.chat-widget.is-open .chat-toggle {
  display: none;
}

.chat-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #fffaf4, #f1e4d6);
}

.chat-header h2 {
  margin: 0;
  font-size: 1.25rem;
}

.chat-body {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 10px;
  min-height: 0;
  padding: 14px;
  overflow: hidden;
}

.chat-privacy {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f1e4d6;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.chat-messages {
  display: grid;
  gap: 10px;
  min-height: 0;
  overflow: auto;
  padding-right: 4px;
}

.chat-message {
  width: fit-content;
  max-width: min(88%, 310px);
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
  line-height: 1.45;
}

.chat-message.is-user {
  justify-self: end;
  background: #6f4328;
  color: #fff;
  box-shadow: none;
}

.chat-message-label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.chat-message.is-user .chat-message-label {
  color: rgba(255, 255, 255, 0.76);
}

.chat-message p {
  margin: 0;
}

.chat-products {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.chat-product {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffaf4;
}

.chat-product img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--soft);
}

.chat-product-placeholder {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.chat-product strong,
.chat-product span {
  display: block;
  overflow-wrap: anywhere;
}

.chat-product span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.chat-product button,
.chat-actions button {
  margin-top: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--brown);
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: 0.82rem;
  font-weight: 900;
}

.chat-actions button {
  margin-top: 0;
}

.chat-actions button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.chat-message > .chat-actions {
  margin-top: 10px;
}

.chat-quick-box {
  display: grid;
  gap: 7px;
  padding-top: 2px;
  border-top: 1px solid rgba(220, 200, 183, 0.8);
}

.chat-quick-box > strong {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-quick-questions {
  display: flex;
  flex-wrap: nowrap;
  gap: 7px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.chat-quick-questions button,
.chat-clear {
  border-radius: 999px;
  padding: 7px 10px;
  background: #fff;
  color: var(--brown);
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: 0.78rem;
  font-weight: 900;
}

.chat-quick-questions button {
  flex: 0 0 auto;
  max-width: 210px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  background: #fffaf4;
}

.chat-form input {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.chat-form .primary-action {
  min-height: 44px;
  padding: 10px 14px;
}

.chat-clear {
  justify-self: start;
  margin: 0 14px 14px;
}

.is-typing p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.typing-dots {
  display: inline-flex;
  gap: 3px;
}

.typing-dots i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--muted);
  animation: typingPulse 1s infinite ease-in-out;
}

.typing-dots i:nth-child(2) {
  animation-delay: 0.16s;
}

.typing-dots i:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes typingPulse {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }

  40% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .hero-shell,
  .service-band,
  .gift-card-band,
  .form-section,
  .site-footer,
  .product-dialog {
    grid-template-columns: 1fr;
  }

  .review-grid,
  .info-grid-band,
  .trust-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-shell {
    min-height: auto;
  }

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

  h1 {
    max-width: 14ch;
  }

  .hero-image {
    width: 100%;
    min-height: 320px;
    justify-self: stretch;
  }

  .section-heading,
  .order-band {
    align-items: start;
    flex-direction: column;
  }

  .collection-tools {
    width: 100%;
    justify-items: stretch;
  }

  .search-box,
  .sort-box {
    width: 100%;
  }

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

  .product-dialog > img {
    max-height: 420px;
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 126px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    gap: 10px;
    padding: 10px 12px 9px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .cart-button {
    gap: 7px;
    padding-inline: 10px;
    font-size: 0.86rem;
  }

  .account-button {
    width: 44px;
    padding-inline: 0;
  }

  .account-button-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .account-icon {
    min-width: 22px;
    height: 22px;
  }

  .cart-dot {
    min-width: 22px;
    height: 22px;
  }

  .menu-button {
    min-width: 48px;
    gap: 0;
    padding-inline: 11px;
  }

  .menu-button-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .menu-icon {
    width: 28px;
  }

  .hero-shell {
    padding: 20px 12px 28px;
  }

  .hero-copy {
    padding-block: 6px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .primary-action,
  .secondary-action,
  .service-action {
    width: 100%;
  }

  .hero-image {
    min-height: 240px;
  }

  .hero-image img {
    object-position: center 35%;
  }

  .shop-band,
  .service-band,
  .gift-card-band,
  .order-band,
  .content-band {
    padding: 34px 12px;
    scroll-margin-top: 126px;
  }

  .section-heading {
    gap: 16px;
    margin-bottom: 18px;
  }

  .filter-tabs {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-tabs button {
    flex: 0 0 auto;
  }

  .product-grid,
  .service-list,
  .trust-band,
  .review-grid,
  .info-grid-band {
    grid-template-columns: 1fr;
  }

  .order-band .step-list {
    grid-template-columns: 1fr;
  }

  .product-info {
    min-height: auto;
  }

  .product-details div,
  .detail-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .service-list,
  .site-footer nav {
    grid-template-columns: 1fr;
  }

  .text-panel,
  .site-form,
  .gift-card-form {
    padding: 16px;
  }

  .review-grid article {
    min-height: auto;
  }

  .product-dialog {
    width: calc(100% - 18px);
    max-height: calc(100svh - 18px);
    margin: 9px auto;
  }

  .product-dialog > img {
    min-height: 240px;
    max-height: 300px;
  }

  .product-dialog-copy {
    padding: 18px;
  }

  .site-footer {
    gap: 18px;
    padding: 30px 12px;
  }

  .cart-drawer {
    width: 100%;
    padding: 16px 14px 18px;
  }

  .cart-top {
    gap: 12px;
    padding-bottom: 12px;
  }

  .cart-top h2 {
    font-size: 2rem;
  }

  .cart-items {
    max-height: 22vh;
    padding: 12px 0;
  }

  .cart-line {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .cart-line img {
    width: 52px;
    height: 52px;
  }

  .cart-line strong {
    overflow-wrap: anywhere;
    font-size: 0.92rem;
    line-height: 1.2;
  }

  .cart-line span {
    font-size: 0.82rem;
  }

  .quantity {
    min-width: 32px;
    height: 32px;
  }

  .quantity-controls {
    grid-template-columns: repeat(3, 32px);
    gap: 5px;
  }

  .quantity-controls button {
    min-height: 32px;
    font-size: 0.86rem;
  }

  .quantity-controls .remove-item {
    font-size: 0.72rem;
  }

  .cart-summary {
    padding: 14px 0;
  }

  .checkout-form {
    gap: 9px;
    padding: 12px 0;
  }

  .checkout-form label {
    gap: 5px;
    font-size: 0.82rem;
  }

  .checkout-form input,
  .checkout-form textarea {
    min-height: 40px;
    padding: 9px 11px;
  }

  .checkout-form textarea {
    min-height: 70px;
  }

  .cart-actions .secondary-action,
  .checkout-form .primary-action {
    min-height: 46px;
  }

  .chat-widget {
    right: 10px;
    bottom: 10px;
  }

  .chat-widget.is-left {
    left: 10px;
    right: auto;
  }

  .chat-widget.is-open {
    left: 10px;
    right: 10px;
  }

  .chat-panel {
    width: 100%;
    max-height: calc(100svh - 28px);
    border-radius: 14px;
  }

  .chat-header,
  .chat-body {
    padding: 12px;
  }

  .chat-form {
    grid-template-columns: 1fr;
    padding: 10px 12px;
  }

  .chat-message {
    max-width: 92%;
  }

  .chat-form .primary-action {
    width: 100%;
  }

  .chat-actions {
    gap: 7px;
  }

  .chat-actions button {
    min-height: 38px;
  }

  .chat-clear {
    margin: 0 12px 12px;
  }
}
