:root {
  --bg: #faf5f0;
  --surface: #ffffff;
  --text: #2b2420;
  --muted: #8a7d70;
  --accent: #c17a5c;
  --accent-dark: #a8613f;
  --border: #ece2d6;
  --pill: #f3e9dd;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-script: "Caveat", "Segoe Script", cursive;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- launch banner ---------- */
.launch-banner {
  background: var(--accent-dark);
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 0.7rem 1.5rem;
}

.launch-banner a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 640px) {
  .launch-banner {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }
}

/* ---------- header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 245, 240, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.heart-icon {
  width: 0.62em;
  height: 0.62em;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  display: inline-block;
  vertical-align: 0.12em;
  flex-shrink: 0;
}

nav.main-nav {
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
}

nav.main-nav a {
  color: var(--text);
  opacity: 0.85;
}
nav.main-nav a:hover {
  opacity: 1;
  color: var(--accent);
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.header-icons button,
.header-icons .cart-link {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  position: relative;
  padding: 0;
  display: flex;
}

.header-icons svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  line-height: 1;
  padding: 3px 5px;
  border-radius: 999px;
  font-weight: 600;
}

/* burger — hidden on desktop, shown by the 960px breakpoint below.
   Scoped under .header-icons to outrank `.header-icons button`. */
.header-icons .menu-toggle {
  display: none;
}

/* ---------- hero ---------- */
.hero {
  padding: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 2rem 3.5rem max(2rem, calc((100vw - 1180px) / 2 + 2rem));
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  line-height: 1.15;
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.hero .script {
  display: block;
  font-family: var(--font-script);
  font-weight: 500;
  font-size: 2.9rem;
  color: var(--accent);
  margin: 0.05em 0;
  line-height: 1;
}

.hero p.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 32ch;
  margin: 1.25rem 0 2rem;
  line-height: 1.6;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: #fff;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.hero-art {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  aspect-ratio: 947 / 803;
  align-self: center;
}

.hero-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 100%);
}

.hero-tag {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  background: #fff;
  padding: 0.6rem 1rem;
  border-radius: 14px;
  font-size: 0.8rem;
  font-family: Georgia, serif;
  font-style: italic;
  box-shadow: 0 8px 20px rgba(60, 30, 10, 0.12);
  transform: rotate(-3deg);
}

.features-row {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.features-row .feature svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 0.6rem;
}

.features-row .feature {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-row .feature-desc {
  margin-top: 0.3rem;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
}

/* ---------- section headings ---------- */
.section {
  padding: 3.5rem 0;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.9rem;
  margin: 0 0 0.2rem;
}

.section-head .sub {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-head .see-all {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ---------- categories ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem 0.8rem;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(60, 30, 10, 0.08);
}

.category-card .icon-circle {
  width: 46px;
  height: 46px;
  margin: 0 auto 0.8rem;
  border-radius: 50%;
  background: var(--pill);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.6;
}

.category-card span {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
  display: block;
}

/* ---------- products ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.4rem;
}

.product-card .thumb {
  border-radius: 16px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .thumb svg {
  width: 42%;
  color: rgba(255, 255, 255, 0.85);
}

.product-card h3 {
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  line-height: 1.35;
}

.price {
  font-weight: 700;
  font-size: 1rem;
}

.thumb-1 { background: radial-gradient(120% 120% at 30% 20%, #f3ded0 0%, #d99e78 100%); }

/* ---------- promo banner ---------- */
.promo-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: var(--pill);
}

.promo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(250, 245, 240, 0.96) 0%,
    rgba(250, 245, 240, 0.88) 32%,
    rgba(250, 245, 240, 0.35) 58%,
    rgba(250, 245, 240, 0) 78%
  );
}

.promo-copy {
  position: relative;
  z-index: 1;
  padding: 3.5rem 3rem;
  max-width: 420px;
}

.promo-copy h2 {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  margin: 0 0 0.1em;
  font-weight: 600;
}

.promo-copy .script {
  display: block;
  font-family: var(--font-script);
  color: var(--accent);
  font-size: 2.4rem;
  font-weight: 500;
}

.promo-copy p {
  color: var(--muted);
  margin-top: 1rem;
  max-width: 30ch;
}

/* ---------- newsletter ---------- */
.newsletter {
  background: var(--pill);
  border-radius: 24px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.newsletter .copy {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.newsletter .icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.newsletter .icon-circle svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.6;
}

.newsletter h3 {
  margin: 0 0 0.2rem;
  font-size: 1.1rem;
}
.newsletter p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.newsletter form {
  display: flex;
  gap: 0.6rem;
  flex: 1;
  max-width: 420px;
}

.newsletter input {
  flex: 1;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  background: #fff;
}
.newsletter input:focus {
  outline: 2px solid var(--accent);
}

.newsletter button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.newsletter button svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

/* ---------- footer ---------- */
footer.site {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  /* minmax(0, …) instead of a bare fr: an auto minimum floors each track at
     its min-content width, and the unbreakable contact email then pushes the
     grid wider than .wrap on narrow screens. */
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.footer-grid .logo {
  margin-bottom: 0.6rem;
}

.footer-grid .brand-note {
  color: var(--muted);
  font-size: 0.85rem;
  max-width: 26ch;
}

.footer-col h4 {
  font-size: 0.85rem;
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.88rem;
  margin: 0 0 0.6rem;
  color: var(--text);
  opacity: 0.85;
  overflow-wrap: break-word;
}
.footer-col a:hover {
  color: var(--accent);
  opacity: 1;
}

.social-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}
.social-row a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pill);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-row svg {
  width: 16px;
  height: 16px;
  stroke: var(--text);
  fill: none;
  stroke-width: 1.6;
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .header-icons .menu-toggle { display: flex; }
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    z-index: 15;
  }
  nav.main-nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0; /* reset the desktop row gap — items are stacked rows here */
  }
  nav.main-nav a {
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  nav.main-nav a:last-child { border-bottom: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 2.5rem 1.2rem; }
  .hero-art { aspect-ratio: 4 / 3; }
  .hero-art img { -webkit-mask-image: none; mask-image: none; }
  .features-row { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .promo-banner { min-height: 260px; }
  .promo-copy { padding: 2rem 1.5rem; max-width: none; min-width: 0; }
  .promo-copy h2 { font-size: 1.7rem; overflow-wrap: break-word; }
  .promo-copy p { overflow-wrap: break-word; }
  .promo-overlay {
    background: linear-gradient(180deg, rgba(250, 245, 240, 0.97) 0%, rgba(250, 245, 240, 0.94) 62%, rgba(250, 245, 240, 0.55) 85%, rgba(250, 245, 240, 0.1) 100%);
  }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .wrap { padding: 0 1.2rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero .script { font-size: 1.7rem; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter { flex-direction: column; align-items: stretch; }
  .newsletter form { max-width: none; }
  /* the contact column holds an unbreakable email — give it the full row
     at two columns so the domain doesn't wrap mid-word */
  .footer-col:last-child { grid-column: 1 / -1; }
  nav.main-nav a { padding: 0.8rem 1.5rem; }
}

.empty-state {
  color: var(--muted);
  text-align: center;
  padding: 3rem 1rem;
}

/* ---------- product card link wrapper ---------- */
.product-card {
  display: block;
  color: inherit;
}
.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ---------- breadcrumbs ---------- */
.breadcrumbs {
  padding: 1.6rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  gap: 0.5rem;
}
.breadcrumbs a:hover {
  color: var(--accent);
}
.breadcrumbs span {
  color: var(--muted);
}

/* ---------- category page ---------- */
.category-hero {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin-top: 1.6rem;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(120% 140% at 30% 0%, #f3ded0 0%, #d99e78 100%);
}

.category-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.category-hero-overlay {
  position: absolute;
  inset: 0;
}

.category-hero.has-photo .category-hero-overlay {
  background: linear-gradient(180deg, rgba(43, 36, 32, 0.15) 0%, rgba(43, 36, 32, 0.55) 100%);
}

.category-hero-copy {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem;
  max-width: 46ch;
}

.icon-circle-lg {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--pill);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-hero .icon-circle-lg {
  background: rgba(255, 255, 255, 0.85);
}

.icon-circle-lg svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.6;
}

.category-hero-copy h1 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0 0 0.6rem;
  color: var(--text);
}

.category-hero.has-photo .category-hero-copy h1 {
  color: #fff;
}

.category-hero-copy p {
  color: var(--text);
  opacity: 0.75;
  margin: 0;
}

.category-hero.has-photo .category-hero-copy p {
  color: #fff;
  opacity: 0.9;
}

.category-empty {
  text-align: center;
  padding: 3rem 1rem 4rem;
  max-width: 46ch;
  margin: 0 auto;
}
.category-empty svg {
  width: 48px;
  height: 48px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.3;
  margin-bottom: 1rem;
}
.category-empty h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 0.6rem;
}
.category-empty p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 1.6rem;
}

/* ---------- info page (delivery/about) cards ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
}

.info-card .icon-circle-lg {
  margin: 0 0 1rem;
}

.info-card h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 1.1rem;
}

.info-card .check-list {
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .info-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ accordion ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item .chevron {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.3rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}
.faq-answer a {
  color: var(--accent);
  font-weight: 600;
}

/* ---------- product view ---------- */
.product-view {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 2rem 0 4rem;
  align-items: start;
}

.gallery-main {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 480 / 816;
  background: var(--pill);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: zoom-in;
}

.gallery-thumbs {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.9rem;
}
.thumb-btn {
  width: 76px;
  height: 76px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: var(--pill);
  flex-shrink: 0;
}
.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb-btn.active {
  border-color: var(--accent);
}

.product-info h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.25;
  margin: 0 0 0.6rem;
}

.price-lg {
  font-size: 1.7rem;
  margin: 0.8rem 0 1.4rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.check-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.92rem;
  color: var(--text);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.qty-stepper button {
  width: 40px;
  height: 44px;
  border: none;
  background: var(--surface);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text);
}
.qty-stepper button:hover {
  background: var(--pill);
}
.qty-stepper input {
  width: 44px;
  height: 44px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  font-size: 0.95rem;
  -moz-appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.feature-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin-bottom: 1.6rem;
}
.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--pill);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 600;
}
.feature-pill svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.6;
  flex-shrink: 0;
}

.product-desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 52ch;
}

@media (max-width: 860px) {
  .product-view { grid-template-columns: 1fr; }
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 8, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  width: auto;
  height: min(86vh, 900px);
  max-width: 88vw;
  object-fit: contain;
  border-radius: 12px;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.28);
}
.lightbox-nav.prev { left: 1.5rem; }
.lightbox-nav.next { right: 1.5rem; }

@media (max-width: 560px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.4rem; }
  .feature-pills { grid-template-columns: 1fr; }
}

/* ---------- cart page ---------- */
.cart-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1.6rem 0 0.3rem;
}
.cart-title .heart-icon {
  width: 0.6em;
  height: 0.6em;
  stroke: var(--accent);
}
.cart-count {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 2rem;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 4rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--border);
  min-width: 0;
}
.cart-item-thumb {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--pill);
}
.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-info h3 {
  font-size: 1rem;
  margin: 0 0 0.3rem;
  overflow-wrap: break-word;
}
.cart-item-info p {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
  overflow-wrap: break-word;
}
.cart-item-price-mobile { display: none; }
.cart-item-price {
  font-weight: 700;
  font-size: 1rem;
  min-width: 70px;
  text-align: right;
}
.cart-item-remove {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.82rem;
  cursor: pointer;
  padding: 0;
}
.cart-item-remove svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}
.cart-item-remove:hover { color: var(--accent-dark); }

.giftwrap-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--pill);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.3rem;
  margin-top: 1.5rem;
}
.giftwrap-banner.active {
  border-color: var(--accent);
}
.giftwrap-copy {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.giftwrap-copy svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.4;
  flex-shrink: 0;
}
.giftwrap-copy strong {
  display: block;
  font-size: 0.92rem;
}
.giftwrap-copy span {
  color: var(--muted);
  font-size: 0.82rem;
}
.giftwrap-banner .btn-primary {
  padding: 0.6rem 1.3rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

.continue-shopping {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--text);
  font-size: 0.9rem;
}
.continue-shopping:hover { color: var(--accent); }

.promo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}
.promo-row button {
  background: none;
  border: none;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
}
.promo-row input {
  flex: 1;
  border: none;
  background: none;
  font: inherit;
  color: var(--text);
  outline: none;
}
.promo-row input::placeholder {
  color: var(--muted);
}

.cart-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.8rem;
}
.cart-summary h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin: 0 0 1.2rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  padding: 0.55rem 0;
  color: var(--text);
}
.summary-total {
  border-top: 1px solid var(--border);
  margin-top: 0.4rem;
  padding-top: 0.9rem;
  font-size: 1.15rem;
  font-weight: 700;
}
.btn-block {
  width: 100%;
  justify-content: center;
  margin-top: 0.9rem;
}
.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--pill);
  color: var(--text);
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
}
.btn-outline .heart-icon {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
}
.secure-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
  color: var(--muted);
  font-size: 0.78rem;
  margin: 0.9rem 0 0;
}
.secure-note svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.trust-list {
  list-style: none;
  padding: 1.4rem 0 0;
  margin: 1.4rem 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.trust-list svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.trust-list strong {
  display: block;
  font-size: 0.88rem;
}
.trust-list span {
  color: var(--muted);
  font-size: 0.8rem;
}

.cart-empty {
  text-align: center;
  padding: 4rem 1rem 6rem;
  max-width: 40ch;
  margin: 0 auto;
}
.cart-empty svg {
  width: 48px;
  height: 48px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.3;
  margin-bottom: 1rem;
}
.cart-empty h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 0.6rem;
}
.cart-empty p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 1.6rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%) translateY(20px);
  background: var(--text);
  color: #fff;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-size: 0.88rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 200;
  max-width: 90vw;
  text-align: center;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 860px) {
  .cart-layout { grid-template-columns: minmax(0, 1fr); }
  #cart-items { min-width: 0; }
  .cart-item {
    grid-template-columns: 72px minmax(0, 1fr) auto;
    grid-template-areas:
      "thumb info remove"
      "thumb qty  price";
    row-gap: 0.6rem;
  }
  .cart-item-thumb { grid-area: thumb; width: 72px; height: 72px; }
  .cart-item-info { grid-area: info; }
  .cart-item-remove { grid-area: remove; justify-self: end; padding: 0.3rem; }
  .cart-item-remove .remove-label { display: none; }
  .cart-item-qty { grid-area: qty; }
  .cart-item-price { grid-area: price; text-align: left; }
  .cart-item-price-mobile { display: none; }
  .giftwrap-banner { flex-direction: column; align-items: flex-start; }
}

/* ---------- checkout ---------- */
.checkout-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
}
.checkout-section h2 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-field:last-child { margin-bottom: 0; }
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.form-field .optional {
  font-weight: 400;
  color: var(--muted);
}
.form-field input,
.form-field textarea {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font: inherit;
  color: var(--text);
  background: var(--bg);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-error {
  font-size: 0.78rem;
  color: #b3413a;
  display: none;
}
.form-field.invalid input,
.form-field.invalid textarea { border-color: #b3413a; }
.form-field.invalid .form-error { display: block; }

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.payment-option {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  cursor: pointer;
}
.payment-option input { margin-top: 0.2rem; accent-color: var(--accent); }
.payment-option.selected { border-color: var(--accent); background: var(--pill); }
.payment-option strong { display: block; margin-bottom: 0.2rem; }
.payment-option span.sub { color: var(--muted); font-size: 0.85rem; }
.payment-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--bg);
  border-radius: 10px;
  padding: 0.8rem 1rem;
}

.checkout-items { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1rem; }
.checkout-item-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
}
.checkout-item-row img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.checkout-item-row .info { flex: 1; }
.checkout-item-row .info .name { font-weight: 600; }
.checkout-item-row .info .qty { color: var(--muted); font-size: 0.82rem; }

.submit-error {
  background: #fbeae8;
  color: #a8342c;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  margin-bottom: 1rem;
  display: none;
}
.submit-error.show { display: block; }

@media (max-width: 860px) {
  .checkout-section { padding: 1.3rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- order confirmation ---------- */
.confirm-wrap {
  max-width: 640px;
  margin: 3rem auto;
  text-align: center;
  padding: 0 1.5rem;
}
.confirm-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--pill);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.confirm-icon svg { width: 34px; height: 34px; stroke: var(--accent); fill: none; stroke-width: 2; }
.confirm-wrap h1 { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 0.6rem; }
.confirm-wrap .order-number {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--accent-dark);
  margin-bottom: 1.2rem;
}
.confirm-wrap p.lead { color: var(--muted); margin-bottom: 2rem; }
.confirm-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.6rem;
  text-align: left;
  margin-bottom: 2rem;
}
.confirm-actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
