/* ══════════════════════════════════════════════════════════════
   THE SWEET SPOT — Design System v3 (premium minimal)
   Two typefaces, hairline borders, generous whitespace, restrained
   colour rhythm. Brand rose used with intent, never as noise.
   ══════════════════════════════════════════════════════════════ */

/* ── Tokens ───────────────────────────────────────────────────── */
:root {
  /* brand */
  --rose:        #C4687A;
  --rose-dark:   #A85265;
  --rose-deeper: #8A4153;
  --rose-soft:   #E0A5B1;
  --rose-pale:   #F1CDD4;
  --blush:       #F7E9E4;
  --blush-deep:  #F0DCD5;
  --butter:      #FAF1E2;
  --butter-deep: #F3E2BE;
  --honey:       #C99A4B;
  --cream:       #FAF6F2;
  --paper:       #FFFFFF;
  --ink:         #2E1E22;
  --ink-mid:     #66494F;
  --ink-soft:    #99807F;

  /* semantic — neutral hairlines read more premium than pink ones */
  --bg:          var(--paper);
  --line:        rgba(46, 30, 34, 0.12);
  --line-soft:   rgba(46, 30, 34, 0.07);
  --dot:         rgba(196, 104, 122, 0.07);
  --success:     #4F8F63;
  --danger:      #C2434F;

  /* elevation — soft and neutral */
  --shadow-sm:   0 1px 3px rgba(46, 30, 34, 0.06);
  --shadow-md:   0 10px 30px rgba(46, 30, 34, 0.08);
  --shadow-lg:   0 24px 60px rgba(46, 30, 34, 0.12);

  /* shape & motion */
  --radius:      14px;
  --radius-sm:   10px;
  --radius-lg:   20px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --transition:  all 0.22s var(--ease);

  /* type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script:  var(--font-display); /* legacy alias — script face retired */

  /* shared watermark icon (line-drawn cake) for image placeholders */
  --cake-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23E0A5B1' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 53h38'/%3E%3Cpath d='M17 53V40a15 15 0 0 1 30 0v13'/%3E%3Cpath d='M17 43c3.4 2.6 7-2.6 10.4 0 3.4 2.6 6.8-2.6 10.2 0 3.4 2.6 6.8-2.6 9.4 0'/%3E%3Cpath d='M32 25v-5'/%3E%3Ccircle cx='32' cy='17' r='2.6'/%3E%3C/svg%3E");
}

/* ── Reset & base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background-color: var(--bg);
  font-family: var(--font-body);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--rose-pale); color: var(--rose-deeper); }

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff;
  padding: 10px 18px; font-size: 0.85rem; font-weight: 550; z-index: 9999;
}
.skip-link:focus { left: 0; }

/* Legacy decorative classes — retired, kept as harmless no-ops */
.wave, .doodle, .scallop { display: none !important; }
.has-wave { position: relative; }
.dotted { background-image: none; }
.script, .eyebrow-script { font-family: var(--font-body); }

/* ── Layout ───────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.section    { padding: 104px 0; }
.section-sm { padding: 56px 0; }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 52px; flex-wrap: wrap;
}
.section-head.center {
  flex-direction: column; align-items: center; text-align: center;
  gap: 0; margin-bottom: 56px;
}

.eyebrow, .eyebrow-script {
  display: block;
  font-size: 0.7rem; font-weight: 650;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 16px;
}

.title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.title em { font-style: italic; font-weight: 420; color: var(--rose-dark); }

.subtitle {
  font-size: 1rem; color: var(--ink-soft);
  max-width: 540px; line-height: 1.75; margin-top: 16px;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 550; letter-spacing: 0.005em;
  transition: var(--transition);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.985); }

.btn-primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-primary:hover { background: var(--rose-deeper); border-color: var(--rose-deeper); }

.btn-rose { background: var(--rose); color: #fff; border-color: var(--rose); }
.btn-rose:hover { background: var(--rose-dark); border-color: var(--rose-dark); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); }

.btn-soft { background: var(--blush); color: var(--rose-deeper); border-color: var(--blush); }
.btn-soft:hover { background: var(--blush-deep); }

.btn-white { background: #fff; color: var(--ink); border-color: #fff; }
.btn-white:hover { background: var(--cream); }

.btn-ghost-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost-white:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn-danger { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-danger:hover { background: #A33440; border-color: #A33440; }

.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 0.95rem; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; }
.btn-doodle { border-radius: 999px; } /* legacy alias */

/* Quiet text link with arrow */
.text-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.88rem; font-weight: 550; color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: var(--transition);
}
.text-link:hover { color: var(--rose-dark); border-color: var(--rose-dark); }
.text-link .arr { transition: transform 0.2s var(--ease); }
.text-link:hover .arr { transform: translateX(3px); }

/* ── Announcement bar ─────────────────────────────────────────── */
#announcement-bar {
  display: none;
  background: var(--ink);
  color: rgba(255,255,255,0.92); text-align: center;
  padding: 9px 44px;
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.06em;
  position: relative; z-index: 210;
}
#announcement-bar.visible { display: block; }

/* ── Navigation ───────────────────────────────────────────────── */
#site-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.3s ease;
}
#site-nav.scrolled { box-shadow: 0 1px 0 var(--line-soft), 0 8px 30px rgba(46,30,34,0.05); }

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  height: 76px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img {
  width: 46px; height: 46px; border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line-soft);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.22rem; font-weight: 530; color: var(--ink);
  letter-spacing: -0.005em;
}

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  display: block; padding: 6px 0;
  font-size: 0.9rem; font-weight: 500; color: var(--ink-mid);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); border-bottom-color: var(--rose); }

.nav-links .nav-cta {
  background: var(--ink); color: #fff;
  padding: 11px 24px; border-radius: 999px;
  border-bottom: none; font-weight: 550; font-size: 0.86rem;
}
.nav-links .nav-cta:hover { background: var(--rose-deeper); color: #fff; }
.nav-links .nav-cta.active { border: none; }

/* Cart button */
.nav-cart {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: transparent; border: 1px solid var(--line);
  cursor: pointer; transition: var(--transition);
  color: var(--ink);
}
.nav-cart:hover { border-color: var(--ink); }
.nav-cart svg { width: 18px; height: 18px; }
.nav-cart .cart-count {
  position: absolute; top: -4px; right: -5px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--rose); color: #fff;
  border-radius: 999px; font-size: 0.66rem; font-weight: 650;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 2px var(--paper);
  transition: transform 0.2s var(--ease);
}
.nav-cart .cart-count.pop { animation: countPop 0.3s var(--ease); }
@keyframes countPop { 50% { transform: scale(1.35); } }
.nav-cart .cart-count[data-zero="true"] { display: none; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; align-items: center;
  background: transparent; border: 1px solid var(--line); border-radius: 50%;
  cursor: pointer;
}
.nav-hamburger span { display: block; width: 16px; height: 1.5px; background: var(--ink); transition: var(--transition); }
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none; flex-direction: column;
  padding: 10px 24px 26px;
  border-top: 1px solid var(--line-soft);
  background: var(--paper);
}
.nav-mobile.open { display: flex; animation: slideDown 0.25s var(--ease); }
@keyframes slideDown { from { opacity: 0; transform: translateY(-6px); } }
.nav-mobile a {
  padding: 14px 4px; font-size: 1rem; font-weight: 500;
  color: var(--ink-mid); border-bottom: 1px solid var(--line-soft);
  transition: var(--transition);
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--ink); }
.nav-mobile .mob-cta {
  background: var(--ink); color: #fff; text-align: center;
  border-radius: 999px; margin-top: 18px; border-bottom: none;
  font-weight: 550;
}

/* ── Page hero (inner pages) ──────────────────────────────────── */
.page-hero {
  background: var(--cream);
  padding: 76px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
}
.page-hero::before { display: none; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3rem); font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 12px;
}
.page-hero h1 em { font-style: italic; font-weight: 420; color: var(--rose-dark); }
.page-hero p { font-size: 0.98rem; color: var(--ink-soft); max-width: 560px; margin: 0 auto; }
.page-hero.has-wave { padding-bottom: 64px !important; }

/* ── Product card ─────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(252px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line);
}

.product-card-img {
  display: block;
  position: relative; overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--blush);
}
.product-card-name a:hover { color: var(--rose-dark); }
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.product-card:hover .product-card-img img { transform: scale(1.045); }

.product-card-placeholder {
  width: 100%; height: 100%;
  background-color: var(--blush);
  background-image: var(--cake-icon);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 56px;
}
.product-card-placeholder .ph-icon, .product-card-placeholder .ph-label { display: none; }

.badge-featured {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--paper); color: var(--ink);
  font-size: 0.62rem; font-weight: 650; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.product-card-body { padding: 20px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.product-card-cat {
  font-size: 0.64rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--ink-soft); margin-bottom: 8px;
}
.product-card-name {
  font-family: var(--font-display);
  font-size: 1.08rem; font-weight: 520; color: var(--ink);
  margin-bottom: 5px; line-height: 1.3; letter-spacing: -0.005em;
  /* Reserve ~2 lines so short and long titles produce even-height cards */
  min-height: 2.6em;
}
/* desc fills the leftover space so the footer is always pushed to the bottom */
.product-card-desc { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.55; flex: 1; margin-bottom: 18px; }
.product-card-footer { margin-top: auto; }

.product-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
.product-price { font-size: 0.95rem; font-weight: 550; color: var(--ink); }

.add-btn {
  background: transparent; border: 1px solid var(--line); color: var(--ink);
  border-radius: 999px; padding: 8px 18px;
  font-size: 0.8rem; font-weight: 550;
  cursor: pointer; transition: var(--transition);
}
.add-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.add-btn.added { background: var(--rose); color: #fff; border-color: var(--rose); }
.add-btn-choose { display: inline-flex; align-items: center; gap: 6px; background: var(--rose); color: #fff; border-color: var(--rose); }
.add-btn-choose:hover { background: var(--rose-deeper); border-color: var(--rose-deeper); color: #fff; }

/* ── Skeletons ────────────────────────────────────────────────── */
.skeleton-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); background: var(--paper); }
.skeleton-card .sk-img { aspect-ratio: 1/1; }
.skeleton-card .sk-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 10px; }
.sk { background: linear-gradient(100deg, var(--cream) 40%, #fff 50%, var(--cream) 60%); background-size: 200% 100%; animation: shimmer 1.4s infinite linear; border-radius: 6px; }
.sk-line { height: 12px; } .sk-line.w60 { width: 60%; } .sk-line.w40 { width: 40%; } .sk-line.w80 { width: 80%; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* ── Filter pills ─────────────────────────────────────────────── */
.filter-bar { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 48px; }
.pill {
  padding: 9px 20px; border-radius: 999px;
  border: 1px solid var(--line); background: transparent; color: var(--ink-mid);
  font-size: 0.84rem; font-weight: 500; cursor: pointer; transition: var(--transition);
}
.pill:hover { border-color: var(--ink); color: var(--ink); }
.pill.active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ── Forms ────────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

label {
  display: block; font-size: 0.78rem; font-weight: 550;
  color: var(--ink); margin-bottom: 7px;
}
label .optional { font-weight: 400; color: var(--ink-soft); }

input[type=text], input[type=email], input[type=tel], input[type=date],
input[type=password], input[type=number], input[type=search], input[type=url], select, textarea {
  width: 100%; padding: 13px 15px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper);
  font-family: var(--font-body); font-size: 0.92rem; color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; -webkit-appearance: none; appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2399807F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(46, 30, 34, 0.06);
}
input.invalid { border-color: var(--danger); }
textarea { resize: vertical; min-height: 92px; line-height: 1.6; }
.field-error { color: var(--danger); font-size: 0.78rem; margin-top: 5px; display: none; }
.field-error.visible { display: block; }

input[type=checkbox] { width: 17px; height: 17px; accent-color: var(--ink); cursor: pointer; flex-shrink: 0; }
.check-label {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  font-size: 0.88rem; font-weight: 450; color: var(--ink-mid);
}

/* ── Toast ────────────────────────────────────────────────────── */
#toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translate(-50%, 12px);
  background: var(--ink); color: #fff;
  padding: 13px 22px; border-radius: var(--radius-sm);
  font-size: 0.86rem; font-weight: 500;
  opacity: 0; transition: all 0.3s var(--ease);
  z-index: 9999; pointer-events: none;
  max-width: min(420px, calc(100vw - 40px));
  text-align: center;
  box-shadow: var(--shadow-lg);
}
#toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ── Cart drawer ──────────────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(46, 30, 34, 0.4);
  z-index: 1000; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 410px; max-width: 100vw;
  background: var(--paper); z-index: 1001;
  transform: translateX(102%); transition: transform 0.34s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 26px; border-bottom: 1px solid var(--line-soft);
}
.cart-drawer-header h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 520; color: var(--ink); }
.cart-close-btn {
  background: transparent; border: 1px solid var(--line);
  width: 34px; height: 34px; border-radius: 50%;
  font-size: 0.85rem; cursor: pointer; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cart-close-btn:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

.cart-drawer-body { flex: 1; overflow-y: auto; padding: 6px 26px; }

.cart-empty { text-align: center; padding: 80px 10px; color: var(--ink-soft); }
.cart-empty .empty-icon {
  width: 60px; height: 60px; margin: 0 auto 18px;
  background-image: var(--cake-icon);
  background-size: contain; background-repeat: no-repeat; background-position: center;
  display: block; font-size: 0;
}
.cart-empty p { font-size: 0.95rem; margin-bottom: 4px; font-weight: 550; color: var(--ink); }
.cart-empty .sub { font-size: 0.84rem; font-weight: 400; color: var(--ink-soft); }

.cart-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 18px 0; border-bottom: 1px solid var(--line-soft);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.9rem; font-weight: 550; color: var(--ink); line-height: 1.35; }
.cart-item-notes { font-size: 0.78rem; color: var(--ink-soft); margin-top: 3px; line-height: 1.45; overflow-wrap: break-word; }
.cart-item-price { font-size: 0.84rem; color: var(--ink-mid); margin-top: 5px; font-weight: 500; }

.cart-item-controls { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.qty-ctrl {
  width: 28px; height: 28px; border: 1px solid var(--line);
  background: var(--paper); border-radius: 50%;
  font-size: 0.95rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); transition: var(--transition);
}
.qty-ctrl:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.qty-val { min-width: 22px; text-align: center; font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.cart-item-remove {
  background: none; border: none; color: var(--ink-soft); font-size: 0.85rem;
  cursor: pointer; padding: 4px 6px; transition: color 0.15s;
}
.cart-item-remove:hover { color: var(--danger); }

.cart-drawer-footer { padding: 20px 26px 24px; border-top: 1px solid var(--line-soft); background: var(--cream); }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 4px; }
.cart-total-row .label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin: 0; }
.cart-total-row .amount { font-family: var(--font-display); font-size: 1.3rem; font-weight: 550; color: var(--ink); }
.cart-total-note { font-size: 0.74rem; color: var(--ink-soft); margin-bottom: 16px; }

/* ── WhatsApp FAB ─────────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed; bottom: 24px; left: 24px; z-index: 900;
  width: 52px; height: 52px; border-radius: 50%;
  background: #fff; color: #1FAF53;
  border: 1px solid var(--line-soft);
  display: none; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.whatsapp-fab.visible { display: flex; }
.whatsapp-fab:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.whatsapp-fab svg { width: 26px; height: 26px; }

/* ── Lightbox ─────────────────────────────────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(20, 12, 14, 0.93); z-index: 1100;
  align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 900px; width: 100%; animation: lbIn 0.25s var(--ease); }
@keyframes lbIn { from { opacity: 0; transform: scale(0.97); } }
.lightbox-inner img { width: 100%; border-radius: var(--radius-sm); max-height: 80vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: -48px; right: 0;
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  width: 38px; height: 38px; border-radius: 50%;
  font-size: 1rem; cursor: pointer; transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer; transition: var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav.prev { left: -58px; } .lightbox-nav.next { right: -58px; }
.lightbox-meta { margin-top: 16px; text-align: center; }
.lightbox-meta .cat {
  display: inline-block; color: rgba(255,255,255,0.65);
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 6px;
}
.lightbox-meta .caption { color: rgba(255,255,255,0.9); font-size: 0.95rem; }

/* ── Reveal-on-scroll ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.07s; }
.reveal-d2 { transition-delay: 0.14s; }
.reveal-d3 { transition-delay: 0.21s; }

/* ── Marquee — quiet uppercase ticker ─────────────────────────── */
.marquee-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  padding: 17px 0; overflow: hidden;
}
.marquee-track { display: flex; width: max-content; animation: marquee 44s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 28px; padding: 0 14px;
  font-size: 0.7rem; font-weight: 550; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-soft); white-space: nowrap;
}
.marquee-item .dot-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--rose-soft); font-size: 0; flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════════════════════════
   HOME
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background-color: var(--cream);
  text-align: center;
  padding: 96px 0 110px;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.8s ease;
}
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, var(--dot) 1.6px, transparent 1.6px);
  background-size: 32px 32px;
}
.hero.on-dark .hero-dots { background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1.6px, transparent 1.6px); }

.hero-inner {
  position: relative; z-index: 2;
  max-width: 760px; margin: 0 auto; padding: 0 32px;
}

.hero-label-img {
  width: 92px; height: 92px;
  margin: 0 auto 34px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line-soft), var(--shadow-md);
  transform: none;
}

.hero-kicker {
  font-size: 0.72rem; font-weight: 650;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 22px;
}
.hero.on-dark .hero-kicker { color: var(--rose-pale); }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.9rem);
  font-weight: 480; line-height: 1.1; letter-spacing: -0.015em;
  margin-bottom: 22px; color: var(--ink);
}
.hero-headline em { font-style: italic; font-weight: 400; color: var(--rose-dark); }
.hero.on-dark .hero-headline { color: #fff; }
.hero.on-dark .hero-headline em { color: var(--rose-pale); }

.hero-subtext {
  font-size: 1.06rem; line-height: 1.8;
  color: var(--ink-soft); margin: 0 auto 36px; max-width: 520px;
}
.hero.on-dark .hero-subtext { color: rgba(255,255,255,0.85); }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* trust bar — quiet small caps with hairline separators */
.hero-stickers {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 0;
  margin-top: 56px;
}
.sticker {
  display: inline-flex; align-items: center;
  padding: 0 28px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft);
  border-left: 1px solid var(--line);
  transform: none; background: none; border-radius: 0; box-shadow: none;
}
.sticker:first-child { border-left: none; }
.sticker .s-icon { display: none; }
.hero.on-dark .sticker { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.25); }

/* Categories */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(176px, 1fr)); gap: 20px; }
.category-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1; cursor: pointer; transition: var(--transition);
  background: var(--blush);
  border: 1px solid var(--line-soft);
}
.category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.category-card-bg {
  position: absolute; inset: 0;
  background-image: var(--cake-icon);
  background-repeat: no-repeat;
  background-position: center 38%;
  background-size: 48px;
  font-size: 0;
  transition: transform 0.5s var(--ease);
}
.category-card-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.category-card:hover .category-card-bg { transform: scale(1.05); }
.category-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(46,30,34,0.55) 0%, transparent 46%); }
.category-card-label {
  position: absolute; bottom: 16px; left: 18px; right: 18px;
  color: #fff; font-family: var(--font-display);
  font-size: 1.04rem; font-weight: 520; line-height: 1.25;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.category-card-label .arr { font-size: 0.85rem; opacity: 0; transform: translateX(-6px); transition: var(--transition); }
.category-card:hover .category-card-label .arr { opacity: 1; transform: none; }

/* Spotlight — editorial split panel */
.spotlight {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-soft);
}
.spotlight.flip { direction: rtl; }
.spotlight.flip > * { direction: ltr; }
.spotlight-img {
  background-color: var(--blush);
  background-image: var(--cake-icon);
  background-repeat: no-repeat; background-position: center; background-size: 90px;
  min-height: 480px; position: relative;
  font-size: 0;
}
.spotlight-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.spotlight-content {
  background: var(--ink); color: #fff;
  padding: 68px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.spotlight-content::before { display: none; }
.spotlight-eyebrow {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rose-soft); margin-bottom: 20px;
}
.spotlight-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem); font-weight: 480;
  line-height: 1.2; margin-bottom: 18px; letter-spacing: -0.01em;
}
.spotlight-headline em { font-style: italic; font-weight: 400; color: var(--rose-soft); }
.spotlight-text { font-size: 0.93rem; color: rgba(255,255,255,0.66); line-height: 1.85; margin-bottom: 34px; }
.spotlight-stats { display: flex; gap: 40px; margin-bottom: 36px; flex-wrap: wrap; }
.spotlight-stat .v { font-family: var(--font-display); font-size: 1.5rem; color: #fff; font-weight: 500; }
.spotlight-stat .k { font-size: 0.64rem; color: rgba(255,255,255,0.45); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 550; margin-top: 3px; }

/* Celebrations — typographic tonal tiles */
.celebrations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); gap: 20px; }
.celebration-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3 / 3.4; cursor: pointer; display: block;
  background: var(--rose);
}
.celebration-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 12%, rgba(255,255,255,0.14), transparent 45%),
    radial-gradient(circle, rgba(255,255,255,0.07) 1.4px, transparent 1.4px);
  background-size: auto, 26px 26px;
  transition: transform 0.5s var(--ease);
  font-size: 0;
}
.celebration-card:hover .celebration-bg { transform: scale(1.04); }
.celebration-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(46,30,34,0.5), transparent 52%); }
.celebration-overlay {
  position: absolute; inset: 0; background: rgba(46,30,34,0.55);
  opacity: 0; transition: opacity 0.25s;
  display: flex; align-items: center; justify-content: center;
}
.celebration-card:hover .celebration-overlay { opacity: 1; }
.celebration-overlay span {
  color: #fff; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.8); padding: 12px 26px; border-radius: 999px;
}
.celebration-label { position: absolute; bottom: 22px; left: 24px; right: 24px; z-index: 1; }
.celebration-label h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: #fff; margin-bottom: 4px; letter-spacing: -0.005em; }
.celebration-label p { font-size: 0.78rem; color: rgba(255,255,255,0.75); }

/* How to order — numbered steps, no chrome */
.steps-section { background: var(--paper); }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px;
  counter-reset: step;
}
.step-card {
  background: none; border: none; border-radius: 0; box-shadow: none;
  padding: 0; text-align: left; transform: none; position: relative;
}
.step-card:nth-child(2), .step-card:nth-child(3) { transform: none; border-radius: 0; }
.step-card:hover { transform: none; box-shadow: none; }
.step-num {
  width: 44px; height: 44px; margin: 0 0 20px;
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 500;
  box-shadow: none;
}
.step-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 520; margin-bottom: 10px; color: var(--ink); }
.step-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.75; }
.step-card .step-icon { display: none; }

/* Sweet words — minimal editorial quotes */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }
.quote-card {
  background: var(--cream);
  border: none; border-radius: var(--radius);
  padding: 34px 32px 30px;
  position: relative; transform: none; box-shadow: none;
}
.quote-card:nth-child(2), .quote-card:nth-child(3) { transform: none; box-shadow: none; }
.quote-card::before {
  content: '“';
  position: static; display: block;
  font-family: var(--font-display);
  font-size: 2.6rem; line-height: 0.6;
  color: var(--rose); margin-bottom: 18px;
}
.quote-card .q-text { font-family: var(--font-display); font-size: 1.02rem; font-weight: 420; color: var(--ink); line-height: 1.75; margin: 0 0 20px; font-style: normal; }
.quote-card .q-name {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft);
}
.quote-card .q-name::before { content: ''; }

/* Story */
.story-section { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: center; }
.story-img-wrap { position: relative; padding: 0; }
.story-img-wrap .arch-frame { aspect-ratio: 4 / 4.8; background: var(--blush); }
.arch-frame {
  border-radius: 999px 999px var(--radius) var(--radius);
  overflow: hidden;
  border: none;
  box-shadow: var(--shadow-md);
  transform: none;
}
.arch-frame img { width: 100%; height: 100%; object-fit: cover; }
.story-text { font-size: 1.02rem; color: var(--ink-mid); line-height: 1.9; }

/* Gallery preview */
.gallery-preview { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; gap: 16px; }
.gp-item {
  border-radius: var(--radius-sm); overflow: hidden;
  background-color: var(--blush);
  background-image: var(--cake-icon);
  background-repeat: no-repeat; background-position: center; background-size: 44px;
  transition: var(--transition); cursor: pointer; position: relative;
  font-size: 0;
  border: 1px solid var(--line-soft);
}
.gp-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gp-item:hover img { transform: scale(1.04); }
.gp-item:hover { box-shadow: var(--shadow-md); }
.gp-item:first-child { grid-column: span 2; grid-row: span 2; }

/* Newsletter */
.newsletter-section {
  background: var(--rose);
  text-align: center; padding: 96px 20px;
}
.newsletter-section::before { display: none; }
.newsletter-section h2 {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 480; color: #fff; margin-bottom: 12px; letter-spacing: -0.01em;
}
.newsletter-section h2 em { font-style: italic; color: #fff; }
.newsletter-section p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 0.98rem; }
.newsletter-form {
  display: flex; gap: 10px; max-width: 460px; margin: 0 auto;
  background: none; border: none; padding: 0; backdrop-filter: none;
}
.newsletter-form input {
  flex: 1; padding: 15px 20px; border-radius: 999px; border: none;
  font-size: 0.9rem; outline: none; background: #fff; color: var(--ink);
}
.newsletter-form input::placeholder { color: var(--ink-soft); }
.newsletter-form button {
  background: var(--ink); color: #fff; border: none; border-radius: 999px;
  padding: 15px 28px; font-size: 0.88rem; font-weight: 550;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.newsletter-form button:hover { background: var(--rose-deeper); }

/* ── Footer — clean, light, hairline-separated ────────────────── */
footer.site-footer {
  background: var(--paper);
  background-image: none;
  color: var(--ink-mid);
  padding: 76px 0 0;
  border-top: 1px solid var(--line-soft);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid var(--line-soft);
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand img {
  width: 56px; height: 56px; border-radius: 50%; margin-bottom: 18px;
  border: none; box-shadow: 0 0 0 1px var(--line-soft);
  transform: none;
}
.footer-brand .name {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 520;
  color: var(--ink); margin-bottom: 10px;
}
.footer-brand p { font-size: 0.86rem; line-height: 1.75; margin-bottom: 22px; max-width: 270px; color: var(--ink-soft); }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mid); transition: var(--transition);
  box-shadow: none;
}
.footer-social a:hover { background: var(--ink); border-color: var(--ink); color: #fff; transform: none; }
.footer-social a svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.66rem; font-weight: 650; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 18px;
}
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 0.88rem; color: var(--ink-mid); transition: var(--transition); }
.footer-col a:hover { color: var(--ink); padding-left: 0; }
.footer-note { font-size: 0.84rem; line-height: 1.75; color: var(--ink-soft); }
.footer-bottom {
  padding: 24px 0; display: flex; align-items: center; justify-content: space-between;
  font-size: 0.76rem; color: var(--ink-soft); flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: var(--ink-soft); }
.footer-bottom a:hover { color: var(--ink); }

/* ══════════════════════════════════════════════════════════════
   CATALOGUE
   ══════════════════════════════════════════════════════════════ */
.shop-layout { display: grid; grid-template-columns: 236px 1fr; gap: 56px; align-items: start; padding: 56px 0 100px; }
.shop-sidebar { position: sticky; top: 104px; }
.sidebar-title {
  font-size: 0.66rem; font-weight: 650; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 16px;
}
.sidebar-links li { margin-bottom: 2px; }
.sidebar-links a {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 9px 0;
  font-size: 0.9rem; font-weight: 450; color: var(--ink-mid);
  border-bottom: 1px solid transparent;
  transition: var(--transition); cursor: pointer;
}
.sidebar-links a:hover { color: var(--ink); }
.sidebar-links a.active { color: var(--ink); font-weight: 600; }
.sidebar-links .count { font-size: 0.72rem; color: var(--ink-soft); font-weight: 450; }
.sidebar-links a.active .count { color: var(--rose); }

.shop-search { position: relative; margin-bottom: 32px; max-width: 420px; }
.shop-search input { padding-left: 42px; border-radius: 999px; }
.shop-search .search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--ink-soft); pointer-events: none; display: flex; }

.grid-header { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 30px; flex-wrap: wrap; }
.grid-header h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 520; }
.grid-header .count-label { font-size: 0.8rem; color: var(--ink-soft); }

.cat-divider { margin: 64px 0 30px; display: flex; align-items: baseline; gap: 18px; }
.cat-divider:first-child { margin-top: 0; }
.cat-divider h2 { font-family: var(--font-display); font-size: 1.55rem; font-weight: 520; white-space: nowrap; letter-spacing: -0.005em; }
.cat-divider .rule { flex: 1; height: 1px; background: var(--line-soft); }

.no-results { text-align: center; padding: 90px 20px; color: var(--ink-soft); }
.no-results .icon { display: none; }

/* ══════════════════════════════════════════════════════════════
   ORDER
   ══════════════════════════════════════════════════════════════ */
.order-layout { display: grid; grid-template-columns: 1fr 400px; gap: 32px; align-items: start; padding: 56px 0 100px; }
.order-card {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 32px; margin-bottom: 20px;
}
.order-card h2 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 520; color: var(--ink);
  margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: center; gap: 12px;
}
.order-card h2 .step-num {
  width: 28px; height: 28px; margin: 0;
  border: 1px solid var(--line); background: none; color: var(--ink);
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  border-radius: 50%; box-shadow: none;
}

.search-wrap { position: relative; }
.search-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-sm); max-height: 280px; overflow-y: auto;
  z-index: 60; box-shadow: var(--shadow-lg); display: none;
}
.search-dropdown.open { display: block; animation: slideDown 0.18s var(--ease); }
.search-dd-item {
  padding: 13px 16px; cursor: pointer; font-size: 0.88rem;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--line-soft); transition: background 0.15s;
}
.search-dd-item:last-child { border-bottom: none; }
.search-dd-item:hover, .search-dd-item.hl { background: var(--cream); }
.search-dd-item .dd-name { font-weight: 550; color: var(--ink); }
.search-dd-item .dd-cat { font-size: 0.72rem; color: var(--ink-soft); margin-top: 1px; }
.search-dd-item .dd-price { color: var(--ink); font-weight: 550; white-space: nowrap; font-size: 0.85rem; }

.quick-add { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; align-items: center; }
.quick-chip {
  font-size: 0.8rem; font-weight: 500; color: var(--ink-mid);
  background: none; border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 16px; cursor: pointer; transition: var(--transition);
}
.quick-chip:hover { border-color: var(--ink); color: var(--ink); }

.add-item-panel {
  display: none; background: var(--cream); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 24px; margin-top: 14px;
}
.add-item-panel.open { display: block; animation: slideDown 0.2s var(--ease); }
.aip-product { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; gap: 12px; }
.aip-name { font-family: var(--font-display); font-size: 1.08rem; font-weight: 520; color: var(--ink); }
.aip-price { color: var(--ink); font-weight: 550; white-space: nowrap; font-size: 0.92rem; }
.aip-qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.aip-qty-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); }
.aip-actions { display: flex; gap: 10px; margin-top: 18px; }
.aip-actions .btn { flex: 1; }

.order-items-list { margin-bottom: 18px; }
.order-item { display: flex; align-items: flex-start; gap: 10px; padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
.order-item:last-child { border-bottom: none; }
.oi-main { flex: 1; min-width: 0; }
.oi-name { font-size: 0.88rem; font-weight: 550; color: var(--ink); line-height: 1.35; }
.oi-notes { font-size: 0.78rem; color: var(--ink-soft); margin-top: 2px; line-height: 1.45; overflow-wrap: break-word; }
.oi-price { color: var(--ink-mid); font-size: 0.84rem; margin-top: 4px; font-weight: 500; }
.empty-order { text-align: center; padding: 40px 16px; color: var(--ink-soft); font-size: 0.88rem; line-height: 1.7; }
.empty-order .icon { display: none; }

.summary-total { border-top: 1px solid var(--line-soft); padding-top: 18px; margin-bottom: 20px; }
.summary-total .row { display: flex; justify-content: space-between; align-items: baseline; }
.summary-total .label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin: 0; }
.summary-total .amount { font-family: var(--font-display); font-size: 1.45rem; font-weight: 520; color: var(--ink); }
.summary-total .note { font-size: 0.74rem; color: var(--ink-soft); margin-top: 5px; }

.success-block { display: none; text-align: center; padding: 36px 12px; }
.success-block.visible { display: block; animation: lbIn 0.35s var(--ease); }
.success-block .icon {
  width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%;
  background: var(--blush); display: flex; align-items: center; justify-content: center;
  color: var(--rose-deeper);
}
.success-block .icon svg { width: 28px; height: 28px; }
.success-block h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 520; color: var(--ink); margin-bottom: 10px; }
.success-block p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.7; margin-bottom: 24px; }

.trust-row { display: flex; gap: 8px; margin-top: 18px; justify-content: center; flex-wrap: wrap; align-items: center; }
.trust-item { font-size: 0.74rem; color: var(--ink-soft); font-weight: 500; display: flex; align-items: center; gap: 8px; }
.trust-item + .trust-item::before { content: '·'; color: var(--line); margin-right: 8px; }
.form-privacy { font-size: 0.72rem; line-height: 1.55; color: var(--ink-soft); margin-top: 16px; text-align: center; }

/* ══════════════════════════════════════════════════════════════
   MENU
   ══════════════════════════════════════════════════════════════ */
.menu-wrap { max-width: 860px; margin: 0 auto; padding: 56px 32px 100px; }
.menu-toolbar { display: flex; justify-content: center; gap: 10px; margin-bottom: 48px; flex-wrap: wrap; }

.menu-category {
  background: var(--paper); border-radius: 0;
  border: none; border-top: 1px solid var(--line);
  margin-bottom: 0; overflow: visible;
  box-shadow: none;
  padding: 40px 0 48px;
  break-inside: avoid;
}
.menu-cat-header { background: none; padding: 0 0 6px; display: flex; align-items: baseline; gap: 12px; }
.menu-cat-header .icon { display: none; }
.menu-cat-header h2 {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 520;
  color: var(--ink); letter-spacing: -0.005em;
}
.menu-cat-body { padding: 14px 0 0; }

.menu-item {
  display: flex; justify-content: space-between; align-items: baseline; gap: 8px;
  padding: 13px 0; border-bottom: none;
}
.menu-item-name { font-weight: 550; font-size: 0.96rem; color: var(--ink); }
.menu-item-desc { font-size: 0.8rem; color: var(--ink-soft); margin-top: 2px; }
.menu-item-dots { flex: 1; border-bottom: 1px dotted var(--line); margin: 0 6px; min-width: 24px; transform: translateY(-4px); }
.menu-item-price { font-weight: 550; color: var(--ink); font-size: 0.95rem; white-space: nowrap; font-family: var(--font-body); }

.menu-note { font-size: 0.82rem; color: var(--ink-soft); font-style: italic; margin: 6px 0 10px; }
.menu-label {
  font-size: 0.66rem; font-weight: 650; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--rose); margin: 26px 0 4px;
}
.menu-label:first-child { margin-top: 0; }

.flavour-section { margin-top: 20px; padding-top: 0; border-top: none; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.tag {
  background: var(--cream); border: 1px solid var(--line-soft);
  border-radius: 999px; padding: 5px 14px;
  font-size: 0.76rem; font-weight: 450; color: var(--ink-mid);
}
.addon-row { font-size: 0.86rem; color: var(--ink-mid); padding: 7px 0; display: flex; justify-content: space-between; gap: 10px; }
.addon-row .price { color: var(--ink); font-weight: 550; white-space: nowrap; }

/* ══════════════════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════════════════ */
.gallery-grid { columns: 3 280px; column-gap: 18px; }
.gallery-item {
  break-inside: avoid; margin-bottom: 18px;
  border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  position: relative; transition: var(--transition);
  border: 1px solid var(--line-soft);
}
.gallery-item:hover { box-shadow: var(--shadow-md); }
.gallery-item img { width: 100%; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(46,30,34,0.72) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.25s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 18px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.overlay-cat {
  align-self: flex-start;
  color: rgba(255,255,255,0.7);
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 5px; background: none; padding: 0; border-radius: 0;
}
.overlay-caption { color: #fff; font-size: 0.9rem; font-weight: 500; }
.empty-state { text-align: center; padding: 110px 20px; color: var(--ink-soft); }
.empty-state .icon { display: none; }

/* ── 404 ──────────────────────────────────────────────────────── */
.notfound { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 20px; }
.notfound .icon {
  font-family: var(--font-display); font-size: 4.6rem; font-weight: 480;
  color: var(--rose-pale); margin-bottom: 8px; line-height: 1;
}
.notfound h1 { font-family: var(--font-display); font-size: 2.1rem; font-weight: 500; color: var(--ink); margin-bottom: 12px; }
.notfound p { color: var(--ink-soft); margin-bottom: 30px; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .hero { padding: 72px 0 88px; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; max-width: 480px; margin: 0 auto; }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight-img { min-height: 320px; }
  .spotlight-content { padding: 48px 36px; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-img-wrap { max-width: 340px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .order-layout { grid-template-columns: 1fr; }
  .order-summary-sticky { position: static !important; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 72px 0; }
  .shop-layout { grid-template-columns: 1fr; gap: 28px; padding-top: 40px; }
  .shop-sidebar { position: static; }
  .sidebar-links { display: flex; flex-wrap: wrap; gap: 8px; }
  .sidebar-links li { margin: 0; }
  .sidebar-links a { border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 0.84rem; }
  .sidebar-links a.active { background: var(--ink); border-color: var(--ink); color: #fff; }
  .sidebar-links a.active .count { color: rgba(255,255,255,0.7); }
  .sidebar-links .count { display: none; }
  .gallery-preview { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gp-item:first-child { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .celebrations-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .newsletter-form { flex-direction: column; gap: 10px; }
  .newsletter-form button { padding: 15px; }
  .form-row { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  /* Narrow cards: stack price over a full-width button so it never gets squeezed */
  .product-card-footer { flex-direction: column; align-items: stretch; gap: 10px; }
  .product-card-footer .add-btn,
  .product-card-footer .add-btn-choose { width: 100%; text-align: center; justify-content: center; }
  .gallery-grid { columns: 2 150px; }
  .cart-drawer { width: 100vw; }
  .hero-stickers { flex-direction: column; gap: 14px; margin-top: 44px; }
  .sticker { border-left: none; padding: 0; }
  .order-card { padding: 24px; }
  .menu-wrap { padding: 40px 20px 80px; }
  .lightbox-nav.prev { left: 8px; } .lightbox-nav.next { right: 8px; }
  .lightbox-nav { background: rgba(0,0,0,0.45); }
}

/* ── Reduced motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ── Print (menu page) ────────────────────────────────────────── */
@media print {
  #site-nav, #announcement-bar, .menu-toolbar, .whatsapp-fab, .cart-drawer,
  .cart-overlay, #toast, footer.site-footer, .skip-link { display: none !important; }
  body { background: #fff; font-size: 13px; }
  .page-hero { background: #fff; border: none; padding: 18px 0 6px; }
  .menu-wrap { padding: 0 0 20px; max-width: 100%; }
  .menu-category { padding: 18px 0 22px; }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE-FIRST HOME  (.mhome)
   Branded header + search · category icons · order bar ·
   gallery browse · contact + social. Built phone-first, widens
   gracefully on larger screens.
   ══════════════════════════════════════════════════════════════ */
.mhome { --mh-pad: 18px; max-width: 760px; margin: 0 auto; }
.mhome .mhome-block { padding: 26px var(--mh-pad) 0; }
.mhome .mhome-block-tight { padding-top: 22px; }

/* ── Branded header + search ── */
.mhome-top {
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(255,255,255,0.7) 0%, transparent 60%),
    linear-gradient(160deg, var(--blush) 0%, var(--blush-deep) 55%, var(--rose-pale) 140%);
  border-bottom-left-radius: 26px; border-bottom-right-radius: 26px;
  padding: 22px var(--mh-pad) 28px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(196,104,122,0.12);
}
.mhome-top-inner { max-width: 560px; margin: 0 auto; }
.mhome-logo {
  width: 88px; height: 88px; border-radius: 50%;
  margin: 0 auto 12px; object-fit: cover;
  box-shadow: 0 4px 14px rgba(46,30,34,0.12), 0 0 0 4px rgba(255,255,255,0.6);
}
.mhome-tagline {
  font-size: 0.92rem; line-height: 1.5; color: var(--ink-mid);
  max-width: 420px; margin: 0 auto 18px;
}
.mhome-search {
  display: flex; align-items: center; gap: 6px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 6px 6px 6px 16px;
  box-shadow: 0 6px 20px rgba(46,30,34,0.10);
}
.mhome-search-icon { display: inline-flex; color: var(--rose); flex-shrink: 0; }
.mhome-search input {
  flex: 1; min-width: 0; border: none; outline: none; background: transparent;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  padding: 8px 4px;
}
.mhome-search input::placeholder { color: var(--ink-soft); }
.mhome-search input::-webkit-search-cancel-button { -webkit-appearance: none; }
.mhome-search-btn {
  flex-shrink: 0; border: none; cursor: pointer;
  background: var(--rose); color: #fff;
  font-weight: 600; font-size: 0.86rem;
  padding: 11px 20px; border-radius: 999px;
  transition: var(--transition);
}
.mhome-search-btn:hover { background: var(--rose-deeper); }

/* ── Section heads ── */
.mhome-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; margin-bottom: 16px;
}
.mhome-head h2 {
  font-family: var(--font-display); font-weight: 540;
  font-size: 1.3rem; color: var(--ink); letter-spacing: -0.01em;
}
.mhome-seeall {
  flex-shrink: 0; font-size: 0.82rem; font-weight: 600; color: var(--rose-dark);
  white-space: nowrap;
}
.mhome-seeall:hover { color: var(--rose-deeper); }
.mhome-empty { color: var(--ink-soft); font-style: italic; font-size: 0.9rem; padding: 8px 0; }

/* ── Category icons (horizontal scroll) ── */
.mhome-cats { margin: 0 calc(-1 * var(--mh-pad)); overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.mhome-cats::-webkit-scrollbar { display: none; }
.mhome-cats-row { display: flex; gap: 16px; padding: 4px var(--mh-pad) 8px; width: max-content; }
.mhome-cat {
  flex: 0 0 auto; width: 78px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center;
}
.mhome-cat-img {
  width: 72px; height: 72px; border-radius: 50%;
  overflow: hidden; position: relative;
  box-shadow: 0 4px 12px rgba(46,30,34,0.10);
  border: 2px solid var(--paper);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.mhome-cat:active .mhome-cat-img { transform: scale(0.94); }
.mhome-cat:hover .mhome-cat-img { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.mhome-cat-img img { width: 100%; height: 100%; object-fit: cover; }
.mhome-cat-placeholder {
  width: 100%; height: 100%;
  background-image: var(--cake-icon); background-repeat: no-repeat;
  background-position: center; background-size: 42px;
  opacity: 0.85;
}
.mhome-cat-name {
  font-size: 0.74rem; font-weight: 550; color: var(--ink-mid);
  line-height: 1.25;
}
/* skeleton state */
.mhome-cat.skel .mhome-cat-img { background: var(--blush-deep); }
.mhome-cat.skel .mhome-cat-name { width: 52px; height: 9px; border-radius: 4px; background: var(--blush-deep); }

/* ── Order Now bar ── */
.mhome-orderbar {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deeper) 100%);
  color: #fff; border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: 0 10px 26px rgba(138,65,83,0.28);
  transition: var(--transition);
}
.mhome-orderbar:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(138,65,83,0.34); }
.mhome-orderbar-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.mhome-orderbar-text .t1 { font-family: var(--font-display); font-weight: 560; font-size: 1.16rem; }
.mhome-orderbar-text .t2 { font-size: 0.82rem; color: rgba(255,255,255,0.85); }
.mhome-orderbar-cta {
  flex-shrink: 0; background: #fff; color: var(--rose-deeper);
  font-weight: 650; font-size: 0.85rem;
  padding: 11px 18px; border-radius: 999px; white-space: nowrap;
}

/* ── Gallery browse ── */
.mhome-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.mhome-gallery-item {
  position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius-sm);
  overflow: hidden; background: var(--blush); box-shadow: var(--shadow-sm);
}
.mhome-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.mhome-gallery-item:hover img { transform: scale(1.05); }
.mhome-gallery-empty {
  grid-column: 1 / -1; display: block; text-align: center;
  padding: 30px 18px; border: 1px dashed var(--line);
  border-radius: var(--radius-sm); color: var(--ink-soft);
  font-size: 0.9rem;
}

/* ── Contact + social ── */
.mhome-contact {
  margin: 30px var(--mh-pad) 0;
  background: var(--cream); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 30px 22px; text-align: center;
}
.mhome-contact h2 {
  font-family: var(--font-display); font-weight: 540; font-size: 1.4rem;
  color: var(--ink); margin-bottom: 8px;
}
.mhome-contact > p { font-size: 0.9rem; color: var(--ink-mid); max-width: 380px; margin: 0 auto 20px; }
.mhome-contact-actions { display: flex; flex-direction: column; gap: 10px; max-width: 360px; margin: 0 auto; }
.mhome-contact-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 18px; border-radius: 999px;
  font-weight: 600; font-size: 0.9rem;
  border: 1px solid var(--line); background: var(--paper); color: var(--ink);
  transition: var(--transition);
}
.mhome-contact-btn:hover { border-color: var(--ink); }
.mhome-contact-btn.primary { background: var(--rose); border-color: var(--rose); color: #fff; }
.mhome-contact-btn.primary:hover { background: var(--rose-deeper); border-color: var(--rose-deeper); }
.mhome-contact-btn .ic { display: inline-flex; }
.mhome-contact-btn .ic svg { width: 18px; height: 18px; }
.mhome-social { display: flex; justify-content: center; gap: 12px; margin-top: 22px; }
.mhome-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--rose-dark);
  transition: var(--transition);
}
.mhome-social a:hover { background: var(--rose); border-color: var(--rose); color: #fff; }
.mhome-social a svg { width: 20px; height: 20px; }

/* ── Tablet: roomier padding + 3-up gallery ── */
@media (min-width: 600px) {
  .mhome { --mh-pad: 24px; }
  .mhome-gallery { grid-template-columns: repeat(3, 1fr); }
  .mhome-head h2 { font-size: 1.5rem; }
}

/* ── Desktop: widen the page and let each section fill the space ──
   Without this the mobile column (max-width 760) looks like a narrow
   strip floating under the full-width nav. */
@media (min-width: 768px) {
  .mhome { max-width: 1080px; --mh-pad: 40px; }

  /* Hero header reads as a proper landing banner */
  .mhome-top { padding: 46px 40px 50px; }
  .mhome-logo { width: 104px; height: 104px; margin-bottom: 16px; }
  .mhome-tagline { font-size: 1.02rem; max-width: 460px; margin-bottom: 22px; }
  .mhome-top-inner { max-width: 600px; }

  .mhome-block { padding: 44px var(--mh-pad) 0; }
  .mhome-head { margin-bottom: 22px; }

  /* Category icons spread out and centre instead of clustering left */
  .mhome-cats { overflow: visible; margin: 0; }
  .mhome-cats-row { width: auto; flex-wrap: wrap; justify-content: center; gap: 30px 26px; padding: 6px 0; }
  .mhome-cat { width: 96px; }
  .mhome-cat-img { width: 88px; height: 88px; }
  .mhome-cat-name { font-size: 0.82rem; }

  /* Order bar gets a little more presence */
  .mhome-orderbar { padding: 24px 32px; }
  .mhome-orderbar-text .t1 { font-size: 1.4rem; }
  .mhome-orderbar-text .t2 { font-size: 0.92rem; }
  .mhome-orderbar-cta { font-size: 0.95rem; padding: 13px 24px; }

  .mhome-gallery { grid-template-columns: repeat(4, 1fr); gap: 14px; }

  .mhome-contact { margin: 48px var(--mh-pad) 0; padding: 48px 40px; }
  .mhome-contact h2 { font-size: 1.7rem; }
  .mhome-contact > p { font-size: 1rem; max-width: 440px; }
}

/* ── Large desktop: a touch wider, 5-up gallery ── */
@media (min-width: 1100px) {
  .mhome { max-width: 1140px; }
  .mhome-gallery { grid-template-columns: repeat(5, 1fr); }
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ══════════════════════════════════════════════════════════════ */
.product-page { padding: 28px 0 80px; }
.pd-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.86rem; font-weight: 550; color: var(--ink-mid);
  margin-bottom: 22px; transition: var(--transition);
}
.pd-back:hover { color: var(--rose-dark); }

.pd-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.pd-img {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--blush); aspect-ratio: 1 / 1; box-shadow: var(--shadow-sm);
}
.pd-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-img .product-card-placeholder { position: absolute; inset: 0; }
.skeleton-block { border-radius: var(--radius-lg); aspect-ratio: 1/1; background: linear-gradient(100deg, var(--cream) 40%, #fff 50%, var(--cream) 60%); background-size: 200% 100%; animation: shimmer 1.4s infinite linear; }

.pd-cat { font-size: 0.72rem; font-weight: 650; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 10px; }
.pd-cat a:hover { color: var(--rose-deeper); }
.pd-name { font-family: var(--font-display); font-weight: 540; font-size: clamp(1.7rem, 4vw, 2.3rem); color: var(--ink); line-height: 1.1; }
.pd-baseprice { font-family: var(--font-display); font-size: 1.5rem; color: var(--rose-dark); margin-top: 8px; }
.pd-desc { color: var(--ink-mid); margin-top: 14px; line-height: 1.6; }

.pd-options { margin: 26px 0 4px; display: flex; flex-direction: column; gap: 22px; }
.pd-group { border: none; }
.pd-group-legend {
  font-family: var(--font-body); font-weight: 650; font-size: 0.95rem; color: var(--ink);
  margin-bottom: 12px; display: flex; align-items: baseline; gap: 8px; width: 100%;
}
.pd-req { color: var(--danger); font-weight: 700; }
.pd-optional { font-size: 0.74rem; font-weight: 400; color: var(--ink-soft); letter-spacing: 0; }
.pd-group.pd-missing .pd-group-legend { color: var(--danger); }
.pd-group.pd-missing .pd-choices, .pd-group.pd-missing .pd-text { outline: 2px solid var(--danger); outline-offset: 6px; border-radius: var(--radius-sm); }

.pd-choices { display: flex; flex-direction: column; gap: 8px; }
.pd-choice {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.pd-choice:hover { border-color: var(--rose-soft); background: var(--blush); }
.pd-choice input { width: 18px; height: 18px; accent-color: var(--rose); flex-shrink: 0; cursor: pointer; }
.pd-choice:has(input:checked) { border-color: var(--rose); background: var(--blush); }
.pd-choice-label { flex: 1; font-size: 0.92rem; color: var(--ink); }
.pd-choice-price { font-size: 0.84rem; font-weight: 600; color: var(--rose-dark); white-space: nowrap; }
.pd-choice-price.poa { font-weight: 500; font-style: italic; color: var(--ink-soft); }

.pd-text {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.92rem;
  color: var(--ink); resize: vertical; background: var(--paper);
}
.pd-text:focus { outline: none; border-color: var(--rose); }

.pd-buybar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 26px 0 16px; flex-wrap: wrap; }
.pd-qty { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line); border-radius: 999px; padding: 4px; }
.pd-qty .qty-ctrl { width: 34px; height: 34px; border-radius: 50%; border: none; background: transparent; font-size: 1.1rem; color: var(--ink); cursor: pointer; transition: var(--transition); }
.pd-qty .qty-ctrl:hover { background: var(--blush); color: var(--rose-deeper); }
.pd-qty .qty-val { min-width: 26px; text-align: center; font-weight: 600; }
.pd-estimate { text-align: right; display: flex; flex-direction: column; }
.pd-estimate-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); }
.pd-estimate-val { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }

.pd-finenote { font-size: 0.78rem; color: var(--ink-soft); text-align: center; margin-top: 12px; }

.pd-notfound { text-align: center; padding: 80px 20px; }
.pd-notfound h1 { font-family: var(--font-display); font-weight: 540; font-size: 1.8rem; color: var(--ink); margin-bottom: 10px; }
.pd-notfound p { color: var(--ink-soft); margin-bottom: 26px; }

@media (min-width: 768px) {
  .pd-grid { grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
  .pd-media { position: sticky; top: 100px; }
  .product-page { padding: 40px 0 100px; }
}
