/* ============================================================
   PATTAYA.GIFT — LAYOUT
   Mobile-first. Base styles target phones; @media (min-width)
   blocks scale up to tablet and desktop.
   ============================================================ */

/* ------------------------------ HEADER ------------------------------ */
.pg-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(20,16,14,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.pg-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 62px;
}
.pg-wordmark {
  font-family: var(--font-display); font-size: 22px; font-weight: 500;
  color: var(--ink); letter-spacing: .3px;
}
.pg-wordmark:hover { color: var(--ink); }

/* mobile nav toggle */
.pg-nav-toggle {
  background: transparent; border: 1px solid var(--line);
  border-radius: 10px; width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.pg-burger, .pg-burger::before, .pg-burger::after {
  display: block; width: 20px; height: 2px; background: var(--ink);
  border-radius: 2px; position: relative; transition: .2s ease;
}
.pg-burger::before, .pg-burger::after { content: ""; position: absolute; left: 0; }
.pg-burger::before { top: -6px; }
.pg-burger::after { top: 6px; }
.pg-nav-toggle[aria-expanded="true"] .pg-burger { background: transparent; }
.pg-nav-toggle[aria-expanded="true"] .pg-burger::before { top: 0; transform: rotate(45deg); }
.pg-nav-toggle[aria-expanded="true"] .pg-burger::after { top: 0; transform: rotate(-45deg); }

/* nav: hidden drawer on mobile, inline on desktop */
.pg-nav {
  position: fixed; inset: 62px 0 auto 0;
  background: var(--surface); border-bottom: 1px solid var(--line);
  padding: 12px 18px 20px; display: none; flex-direction: column; gap: 6px;
}
.pg-nav.is-open { display: flex; }
.pg-menu {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.pg-menu a {
  display: block; padding: 12px 8px; color: var(--ink);
  border-radius: 8px; font-weight: 500;
}
.pg-menu a:hover { background: var(--surface-hi); }
.pg-cart-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 6px; padding: 12px 8px; color: var(--ink); font-weight: 600;
}
.pg-cart-count {
  min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px;
  background: var(--rose); color: #fff; font-size: 13px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ------------------------------ HERO ------------------------------ */
.pg-hero { position: relative; overflow: hidden; }
.pg-hero-media { position: absolute; inset: 0; z-index: 0; }
.pg-hero-placeholder {
  width: 100%; height: 100%;
  background:
    radial-gradient(120% 90% at 70% 10%, rgba(198,96,122,.35), transparent 55%),
    linear-gradient(180deg, #1b1512, #14100e);
  display: flex; align-items: flex-start; justify-content: flex-end;
}
.pg-ph-note {
  font-family: ui-monospace, monospace; font-size: 10px;
  color: var(--ink-dim); opacity: .5; padding: 8px 10px;
}
.pg-hero-inner {
  position: relative; z-index: 1;
  padding: 72px 18px 56px; text-align: left;
}
.pg-hero-eyebrow {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin: 0 0 12px;
}
.pg-hero-title {
  font-size: clamp(30px, 8vw, 52px); color: var(--ink);
  margin: 0 0 14px; line-height: 1.06;
}
.pg-hero-sub {
  font-size: 16px; color: var(--ink-dim); max-width: 42ch; margin: 0 0 26px;
}
.pg-hero-cta {
  display: inline-block; background: var(--rose); color: #fff;
  padding: 15px 28px; border-radius: 14px; font-weight: 600; font-size: 16px;
  box-shadow: 0 6px 24px rgba(198,96,122,.35);
}
.pg-hero-cta:hover { color: #fff; transform: translateY(-1px); }

/* --------------------------- CONTACT PANEL ------------------------ */
.pg-contact { padding: 44px 0; }
.pg-contact-card {
  position: relative;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(198,96,122,.18), transparent 55%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 24px;
  display: flex; flex-direction: column; align-items: center;
  gap: 18px; text-align: center;
  overflow: hidden;
}
.pg-contact-mascot { flex-shrink: 0; }
.pg-contact-kicker {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin: 0 0 8px;
}
.pg-contact-h {
  font-family: var(--font-display); font-size: clamp(22px,5vw,30px);
  font-weight: 500; margin: 0 0 10px; line-height: 1.1;
}
.pg-contact-sub { font-size: 15px; color: var(--ink-dim); margin: 0 0 20px; max-width: 46ch; }
.pg-contact-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.pg-contact-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 22px; border-radius: 999px; font-weight: 600; font-size: 15px;
  color: #fff; min-height: 46px; transition: transform .12s ease, box-shadow .12s ease;
}
.pg-contact-btn svg { flex-shrink: 0; }
.pg-contact-btn:hover { color: #fff; transform: translateY(-2px); }
.pg-btn-line { background: #06C755; box-shadow: 0 6px 18px rgba(6,199,85,.28); }
.pg-btn-line:hover { background: #05b34c; }
.pg-btn-wa { background: #25D366; box-shadow: 0 6px 18px rgba(37,211,102,.28); }
.pg-btn-wa:hover { background: #1fbe5b; }

/* mascot gentle float */
.pg-mascot { display: block; }
.pg-mascot-arm-r { transform-origin: 86px 50px; animation: pg-wave 2.6s ease-in-out infinite; }
@keyframes pg-wave { 0%,100%{transform:rotate(0)} 50%{transform:rotate(-14deg)} }
.pg-mascot--wave { animation: pg-float 4s ease-in-out infinite; }
@keyframes pg-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

@media (min-width: 720px) {
  .pg-contact-card {
    flex-direction: row; text-align: left; gap: 28px; padding: 32px 40px;
  }
  .pg-contact-body { flex: 1; }
  .pg-contact-btns { justify-content: flex-start; }
  .pg-contact-mascot { align-self: center; }
}

/* ---------------------------- TRUST BAR ---------------------------- */
.pg-trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.pg-trust-inner {
  display: grid; grid-template-columns: 1fr; gap: 4px; padding: 16px 18px;
}
.pg-trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--ink-dim); padding: 9px 0; text-align: left;
  line-height: 1.4;
}
.pg-trust-item strong { color: var(--ink); font-weight: 600; font-size: 14.5px; }
.pg-trust-item .pg-icon { flex-shrink: 0; }

/* --------------------------- OCCASIONS ---------------------------- */
.pg-occasions { padding: 48px 0 8px; }
.pg-section-title { font-size: clamp(26px, 6vw, 38px); text-align: center; }
.pg-section-sub { text-align: center; color: var(--ink-dim); margin: 0 0 30px; }

.pg-occasion-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
.pg-occasion-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; color: var(--ink);
  transition: transform .15s ease, border-color .15s ease;
}
.pg-occasion-card:hover { transform: translateY(-2px); border-color: var(--rose); color: var(--ink); }
.pg-occasion-card.is-featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.pg-occasion-media {
  aspect-ratio: 16 / 10; background:
    radial-gradient(90% 80% at 50% 20%, rgba(198,96,122,.28), transparent 60%),
    var(--surface-hi);
  display: flex; align-items: flex-end; justify-content: flex-end;
}
.pg-occasion-body { padding: 16px 18px 20px; }
.pg-occasion-name { display: block; font-family: var(--font-display); font-size: 22px; }
.pg-occasion-blurb { display: block; color: var(--ink-dim); font-size: 14px; margin-top: 4px; }

/* --------------------------- SEO CONTENT -------------------------- */
.pg-seo { padding: 56px 0 64px; border-top: 1px solid var(--line); }
.pg-seo-head { text-align: center; margin-bottom: 36px; }
.pg-seo-kicker { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin: 0 0 12px; }
.pg-seo-title { font-family: var(--font-display); font-size: clamp(26px,6vw,40px); font-weight: 500; margin: 0; line-height: 1.08; }

.pg-seo-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-bottom: 44px; }
.pg-seo-lead p { font-size: 16px; color: var(--ink-dim); line-height: 1.75; margin: 0 0 16px; }
.pg-seo-lead p:last-child { margin-bottom: 0; }
.pg-seo-lead strong { color: var(--ink); font-weight: 600; }

.pg-seo-features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.pg-seo-feature {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; padding: 16px 18px; font-size: 14.5px; color: var(--ink-dim);
}
.pg-seo-feature strong { color: var(--ink); font-weight: 600; }
.pg-seo-feature-mark {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px;
  background: var(--surface-hi); display: flex; align-items: center;
  justify-content: center; font-size: 20px;
}

/* E-E-A-T band — two columns of local expertise */
.pg-seo-h3 { font-family: var(--font-display); font-size: clamp(20px,4vw,26px); font-weight: 500; color: var(--ink); margin: 0 0 14px; line-height: 1.15; }
.pg-seo-h3--center { text-align: center; }
.pg-seo-band { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 48px; padding-top: 40px; border-top: 1px solid var(--line); }
.pg-seo-band-col p { font-size: 15.5px; color: var(--ink-dim); line-height: 1.75; margin: 0 0 14px; }
.pg-seo-band-col p:last-child { margin-bottom: 0; }
.pg-seo-band-col strong { color: var(--ink); font-weight: 600; }

/* delivery areas */
.pg-seo-areas { text-align: center; padding-top: 40px; border-top: 1px solid var(--line); margin-bottom: 48px; }
.pg-seo-areas-note { font-size: 15px; color: var(--ink-dim); margin: 0 0 20px; }
.pg-seo-areas-note strong { color: var(--ink); font-weight: 600; }
.pg-seo-areas-note--after { margin: 22px auto 0; max-width: 52ch; font-size: 14.5px; }
.pg-area-chips { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
.pg-area-chip {
  padding: 9px 16px; border-radius: 999px; font-size: 14px; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line);
}

/* FAQ as elegant accordion */
.pg-faq { max-width: 780px; margin: 0 auto; }
.pg-faq-title { text-align: center; font-family: var(--font-display); font-size: 22px; color: var(--ink); margin: 0 0 20px; }
.pg-faq-item {
  border: 1px solid var(--line); border-radius: 14px; background: var(--surface);
  margin-bottom: 10px; overflow: hidden; transition: border-color .15s ease;
}
.pg-faq-item[open] { border-color: var(--rose); }
.pg-faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 20px;
  font-size: 16px; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.pg-faq-item summary::-webkit-details-marker { display: none; }
.pg-faq-item summary::after {
  content: "+"; flex-shrink: 0; font-size: 22px; color: var(--gold);
  font-weight: 400; line-height: 1; transition: transform .2s ease;
}
.pg-faq-item[open] summary::after { transform: rotate(45deg); }
.pg-faq-item p { margin: 0; padding: 0 20px 18px; font-size: 15px; color: var(--ink-dim); line-height: 1.65; }

@media (min-width: 760px) {
  .pg-seo-grid { grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
  .pg-seo-band { grid-template-columns: 1fr 1fr; gap: 44px; }
}

/* --------------------------- HOW IT WORKS -------------------------- */
.pg-how { padding: 56px 0 52px; }
.pg-how-head { text-align: center; margin-bottom: 34px; }
.pg-how-kicker { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin: 0 0 12px; }
.pg-how-title { font-family: var(--font-display); font-size: clamp(24px,5.5vw,36px); font-weight: 500; margin: 0; line-height: 1.1; }

.pg-how-steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr; gap: 16px;
  position: relative;
}
.pg-how-step {
  position: relative;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 6px; padding: 26px 20px 24px;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(198,96,122,.10), transparent 60%),
    var(--surface);
  border: 1px solid var(--line); border-radius: 20px;
  transition: transform .18s ease, border-color .18s ease;
}
.pg-how-step:hover { transform: translateY(-3px); border-color: rgba(198,96,122,.5); }

.pg-how-num {
  position: absolute; top: 14px; left: 16px;
  width: 26px; height: 26px; border-radius: 999px;
  background: var(--surface-hi); border: 1px solid var(--line);
  color: var(--gold); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
}
.pg-how-art { display: block; width: 88px; height: 88px; margin-bottom: 6px; }
.pg-step-art { width: 100%; height: 100%; display: block; }
.pg-how-label { font-family: var(--font-display); font-size: 19px; color: var(--ink); line-height: 1.2; }
.pg-how-text { font-size: 14.5px; color: var(--ink-dim); line-height: 1.6; max-width: 30ch; }

/* gentle idle motion, staggered so it feels alive not busy */
.pg-how-step:nth-child(1) .pg-step-art { animation: pg-bob 5s ease-in-out infinite; }
.pg-how-step:nth-child(2) .pg-step-art { animation: pg-bob 5s ease-in-out .6s infinite; }
.pg-how-step:nth-child(3) .pg-step-art { animation: pg-bob 5s ease-in-out 1.2s infinite; }
.pg-how-step:nth-child(4) .pg-step-art { animation: pg-bob 5s ease-in-out 1.8s infinite; }
@keyframes pg-bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

/* --------------------------- SUBSCRIBE ---------------------------- */
.pg-subscribe { padding: 8px 0 56px; }
.pg-subscribe-card {
  background:
    radial-gradient(110% 130% at 50% 0%, rgba(201,162,75,.16), transparent 58%),
    var(--surface);
  border: 1px solid var(--line); border-radius: 24px;
  padding: 34px 26px 30px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.pg-subscribe-icon { display: block; margin-bottom: 14px; animation: pg-bob 4.5s ease-in-out infinite; }
.pg-subscribe-title { font-family: var(--font-display); font-size: clamp(23px,5vw,32px); font-weight: 500; margin: 0 0 12px; line-height: 1.12; }
.pg-subscribe-text { color: var(--ink-dim); max-width: 48ch; margin: 0 auto 22px; font-size: 15.5px; line-height: 1.65; }
.pg-subscribe-cta {
  display: inline-block; background: var(--gold); color: var(--bg);
  padding: 14px 28px; border-radius: 14px; font-weight: 700; font-size: 15.5px;
  box-shadow: 0 6px 20px rgba(201,162,75,.28);
  transition: transform .12s ease;
}
.pg-subscribe-cta:hover { color: var(--bg); background: var(--gold-soft); transform: translateY(-2px); }
.pg-subscribe-fine { font-size: 13px; color: var(--ink-dim); opacity: .8; margin: 14px 0 0; }

/* ----------------------------- FOOTER ----------------------------- */
.pg-footer { border-top: 1px solid var(--line); background: var(--surface); }
.pg-footer-inner {
  display: grid; grid-template-columns: 1fr; gap: 30px; padding: 44px 18px;
}
.pg-footer-brand { font-family: var(--font-display); font-size: 24px; margin-bottom: 12px; }
.pg-footer-addr, .pg-footer-hours { color: var(--ink-dim); font-size: 14px; }
.pg-footer-head { font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; color: var(--ink-dim); margin: 18px 0 8px; }
.pg-footer-links { list-style: none; margin: 0 0 8px; padding: 0; }
.pg-footer-links li { margin: 4px 0; }
.pg-footer-links a { color: var(--ink); }
.pg-footer-links a:hover { color: var(--rose-soft); }
.pg-footer-prompt { font-size: 14px; color: var(--ink-dim); margin: 0 0 12px; line-height: 1.5; }
.pg-footer-channels { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.pg-chan { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border-radius: 999px; font-weight: 600; font-size: 14px; color: #fff; min-height: 42px; width: fit-content; }
.pg-chan svg { flex-shrink: 0; }
.pg-chan.pg-btn-line { background: #06C755; }
.pg-chan.pg-btn-line:hover { background: #05b34c; color: #fff; }
.pg-chan.pg-btn-wa { background: #25D366; }
.pg-chan.pg-btn-wa:hover { background: #1fbe5b; color: #fff; }
.pg-shop-all { display: inline-block; margin-top: 8px; font-size: 14px; color: var(--ink-dim); }
.pg-footer-base { border-top: 1px solid var(--line); padding: 16px 0; font-size: 13px; color: var(--ink-dim); text-align: center; }

/* ------------------------- GENERIC PAGES -------------------------- */
.pg-page { padding: 40px 18px 64px; }
.pg-page-title { font-size: clamp(28px, 6vw, 40px); margin-bottom: 20px; }
.pg-content { max-width: 70ch; }
.pg-content p { margin: 0 0 1em; }

/* ============================================================
   TABLET  (>= 640px)
   ============================================================ */
@media (min-width: 640px) {
  .pg-trust-inner { grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 18px; }
  .pg-trust-item { padding: 0; }
  .pg-occasion-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .pg-how-steps { grid-template-columns: repeat(2, 1fr); }
  .pg-footer-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .pg-footer-inner { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 34px; }
}

/* ============================================================
   DESKTOP  (>= 900px)
   ============================================================ */
@media (min-width: 900px) {
  /* inline nav — no drawer */
  .pg-nav-toggle { display: none; }
  .pg-nav {
    position: static; display: flex; flex-direction: row; align-items: center;
    gap: 8px; background: transparent; border: none; padding: 0;
  }
  .pg-menu { flex-direction: row; gap: 2px; }
  .pg-cart-link { margin-top: 0; }

  .pg-hero-inner { padding: 120px 18px 96px; max-width: var(--maxw); margin: 0 auto; }
  .pg-hero-media .pg-hero-placeholder { min-height: 520px; }

  .pg-occasion-grid { grid-template-columns: repeat(3, 1fr); }
  .pg-how-steps { grid-template-columns: repeat(4, 1fr); position: relative; }
  /* faint connecting line showing the flow between steps */
  .pg-how-steps::before {
    content: ""; position: absolute; top: 76px; left: 12%; right: 12%;
    height: 1px; background: linear-gradient(90deg, transparent, var(--line) 15%, var(--line) 85%, transparent);
    z-index: 0;
  }
  .pg-how-step { z-index: 1; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* hero */
.pg-about-hero { padding: 56px 0 40px; }
.pg-about-hero-inner { display: flex; flex-direction: column-reverse; align-items: center; gap: 20px; text-align: center; }
.pg-about-eyebrow { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin: 0 0 14px; }
.pg-about-title { font-family: var(--font-display); font-size: clamp(30px,7vw,50px); font-weight: 500; line-height: 1.06; margin: 0 0 16px; }
.pg-about-lead { font-size: 17px; color: var(--ink-dim); max-width: 46ch; margin: 0 auto; line-height: 1.7; }
.pg-about-hero-art .pg-mascot { animation: pg-float 4s ease-in-out infinite; }

/* shared heads */
.pg-about-head { text-align: center; margin-bottom: 30px; }
.pg-about-kicker { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin: 0 0 12px; }
.pg-about-h2 { font-family: var(--font-display); font-size: clamp(24px,5vw,34px); font-weight: 500; margin: 0 0 16px; line-height: 1.12; }
.pg-about-h2--center { text-align: center; margin-bottom: 0; }
.pg-accent { color: var(--rose-soft); }

/* story */
.pg-about-story { padding: 24px 0 48px; }
.pg-story-card {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  background: radial-gradient(120% 130% at 0% 0%, rgba(198,96,122,.14), transparent 55%), var(--surface);
  border: 1px solid var(--line); border-radius: 24px; padding: 30px 24px;
}
.pg-story-art { width: 96px; height: 96px; flex-shrink: 0; }
.pg-story-art .pg-step-art { width: 100%; height: 100%; }
.pg-story-body p { font-size: 16px; color: var(--ink-dim); line-height: 1.75; margin: 0 0 16px; }
.pg-story-body p:last-child { margin-bottom: 0; }

/* values */
.pg-about-values { padding: 44px 0; border-top: 1px solid var(--line); }
.pg-values-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.pg-value-card {
  text-align: center; padding: 26px 20px 24px;
  background: radial-gradient(120% 90% at 50% 0%, rgba(198,96,122,.10), transparent 60%), var(--surface);
  border: 1px solid var(--line); border-radius: 20px;
  transition: transform .18s ease, border-color .18s ease;
}
.pg-value-card:hover { transform: translateY(-3px); border-color: rgba(198,96,122,.5); }
.pg-value-art { display: block; width: 84px; height: 84px; margin: 0 auto 10px; }
.pg-value-art .pg-step-art { width: 100%; height: 100%; }
.pg-value-name { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--ink); margin: 0 0 6px; }
.pg-value-text { font-size: 14.5px; color: var(--ink-dim); line-height: 1.6; margin: 0; }

/* trust */
.pg-about-trust { padding: 44px 0; border-top: 1px solid var(--line); }
.pg-trust-cards { display: grid; grid-template-columns: 1fr; gap: 16px; }
.pg-trust-card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 24px 22px; }
.pg-trust-card-icon { display: block; margin-bottom: 12px; }
.pg-trust-card-name { font-family: var(--font-display); font-size: 19px; font-weight: 500; color: var(--ink); margin: 0 0 8px; }
.pg-trust-card-text { font-size: 14.5px; color: var(--ink-dim); line-height: 1.65; margin: 0; }

/* close */
.pg-about-close { padding: 40px 0 68px; }
.pg-close-card {
  text-align: center; padding: 36px 24px 40px;
  background: radial-gradient(120% 120% at 50% 0%, rgba(201,162,75,.14), transparent 60%), var(--surface);
  border: 1px solid var(--line); border-radius: 24px;
}
.pg-close-art { margin: 0 auto 6px; width: 110px; }
.pg-close-art .pg-mascot { animation: pg-float 4s ease-in-out infinite; }
.pg-close-line { font-family: var(--font-display); font-size: clamp(22px,5vw,32px); font-weight: 500; margin: 0 0 10px; line-height: 1.15; }
.pg-close-sub { font-size: 15.5px; color: var(--ink-dim); margin: 0 0 24px; }
.pg-close-cta {
  display: inline-block; background: var(--rose); color: #fff; padding: 15px 30px;
  border-radius: 14px; font-weight: 600; font-size: 16px;
  box-shadow: 0 6px 22px rgba(198,96,122,.35); transition: transform .12s ease;
}
.pg-close-cta:hover { color: #fff; transform: translateY(-2px); }

/* ---- ABOUT: tablet ---- */
@media (min-width: 640px) {
  .pg-values-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .pg-trust-cards { grid-template-columns: repeat(3, 1fr); }
}

/* ---- ABOUT: desktop ---- */
@media (min-width: 900px) {
  .pg-about-hero { padding: 80px 0 56px; }
  .pg-about-hero-inner { flex-direction: row; text-align: left; justify-content: space-between; gap: 48px; }
  .pg-about-hero-text { flex: 1; }
  .pg-about-lead { margin: 0; }
  .pg-about-hero-art { flex-shrink: 0; }
  .pg-story-card { flex-direction: row; align-items: flex-start; gap: 32px; padding: 36px 40px; }
  .pg-values-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   CONTACT / DELIVERY / FAQ PAGES
   ============================================================ */

/* contact channel cards */
.pg-channel-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.pg-channel-card {
  display: block; text-align: center; padding: 28px 22px 24px;
  background: radial-gradient(120% 90% at 50% 0%, rgba(198,96,122,.10), transparent 60%), var(--surface);
  border: 1px solid var(--line); border-radius: 20px; color: var(--ink);
  transition: transform .18s ease, border-color .18s ease;
}
.pg-channel-card:hover { transform: translateY(-3px); border-color: rgba(198,96,122,.5); color: var(--ink); }
.pg-channel-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 999px; margin-bottom: 12px;
  color: #fff; font-size: 24px;
}
.pg-badge-line { background: #06C755; box-shadow: 0 6px 18px rgba(6,199,85,.28); }
.pg-badge-wa { background: #25D366; box-shadow: 0 6px 18px rgba(37,211,102,.28); }
.pg-badge-mail { background: var(--surface-hi); border: 1px solid var(--line); color: var(--gold); }
.pg-channel-go { display: inline-block; margin-top: 12px; font-size: 14px; font-weight: 600; color: var(--rose-soft); }

/* contact details */
.pg-contact-address, .pg-contact-hours { font-size: 15.5px; color: var(--ink-dim); line-height: 1.7; }
.pg-contact-address strong, .pg-contact-hours strong { color: var(--ink); font-weight: 600; }

/* FAQ groups */
.pg-faq-group { margin-bottom: 42px; }
.pg-faq-group:last-child { margin-bottom: 0; }
.pg-faq-group-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.pg-faq-group-art { display: block; width: 60px; height: 60px; flex-shrink: 0; }
.pg-faq-group-art .pg-step-art { width: 100%; height: 100%; }
.pg-faq-group-head .pg-about-h2 { margin: 0; font-size: clamp(21px,4.5vw,28px); }

@media (min-width: 640px) {
  .pg-channel-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

/* ============================================================
   SUBSCRIPTION — homepage band + subscription page
   ============================================================ */

/* homepage promo band */
.pg-subband { padding: 20px 0 40px; }
.pg-subband-card {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px;
  background:
    radial-gradient(120% 130% at 0% 0%, rgba(201,162,75,.16), transparent 55%),
    radial-gradient(100% 120% at 100% 100%, rgba(198,96,122,.14), transparent 55%),
    var(--surface);
  border: 1px solid var(--line); border-radius: 24px; padding: 28px 24px;
  color: var(--ink); transition: transform .18s ease, border-color .18s ease;
}
.pg-subband-card:hover { transform: translateY(-3px); border-color: rgba(201,162,75,.55); color: var(--ink); }
.pg-subband-art { width: 92px; height: 92px; flex-shrink: 0; }
.pg-subband-art .pg-step-art { width: 100%; height: 100%; }
.pg-subband-kicker { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin: 0 0 8px; }
.pg-subband-h { font-family: var(--font-display); font-size: clamp(21px,4.6vw,28px); font-weight: 500; margin: 0 0 8px; line-height: 1.15; }
.pg-subband-sub { font-size: 15px; color: var(--ink-dim); margin: 0 0 12px; line-height: 1.6; max-width: 52ch; }
.pg-subband-go { font-size: 14.5px; font-weight: 600; color: var(--rose-soft); }

/* subscription page bits */
.pg-hero-inline-cta { margin-top: 22px; }
.pg-sub-grid { margin-bottom: 12px; }
.pg-value-card--featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); position: relative; }
.pg-sub-badge {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  font-size: 10.5px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase;
  background: var(--gold); color: var(--bg); padding: 4px 12px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.pg-sub-price { font-family: var(--font-display); font-size: 26px; color: var(--gold-soft); margin: 0 0 8px; }
.pg-sub-price span { font-family: var(--font-body); font-size: 13px; color: var(--ink-dim); font-weight: 500; }

.pg-sub-terms-head { margin-top: 44px; }
.pg-term-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 26px; }
.pg-term-card {
  position: relative; text-align: center; padding: 24px 20px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
}
.pg-term-card--featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.pg-term-name { font-family: var(--font-display); font-size: 22px; color: var(--ink); margin: 0 0 6px; }
.pg-term-save { font-size: 15px; font-weight: 700; color: var(--gold-soft); margin: 0 0 8px; }
.pg-term-text { font-size: 14px; color: var(--ink-dim); margin: 0; line-height: 1.6; }

/* renewal transparency card */
.pg-renew-card {
  display: flex; flex-direction: column; gap: 18px;
  background: rgba(127,176,138,.06);
  border: 1px solid rgba(127,176,138,.32); border-radius: 22px; padding: 28px 24px;
}
.pg-renew-art { flex-shrink: 0; }
.pg-renew-body p { font-size: 15.5px; color: var(--ink-dim); line-height: 1.7; margin: 0 0 14px; }
.pg-renew-body strong { color: var(--ink); font-weight: 600; }
.pg-renew-list { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.pg-renew-list li { font-size: 15px; color: var(--ink-dim); line-height: 1.65; padding-left: 24px; position: relative; }
.pg-renew-list li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 700; }
.pg-renew-foot { font-style: italic; color: var(--ink-dim); margin: 0 !important; }

@media (min-width: 640px) {
  .pg-term-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 860px) {
  .pg-subband-card { flex-direction: row; text-align: left; gap: 30px; padding: 32px 40px; }
  .pg-subband-body { flex: 1; }
  .pg-subband-sub { margin-bottom: 10px; }
  .pg-renew-card { flex-direction: row; padding: 32px 36px; gap: 26px; }
}

/* ============================================================
   OCCASION PAGE
   ============================================================ */
.pg-occ-hero { padding: 40px 0 32px; text-align: center; }
.pg-occ-hero-inner .pg-about-lead { margin: 0 auto; }
.pg-crumb { font-size: 13px; color: var(--ink-dim); margin-bottom: 20px; }
.pg-crumb-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0;
}
.pg-crumb-item { display: inline-flex; align-items: center; }
.pg-crumb a { color: var(--ink-dim); }
.pg-crumb a:hover { color: var(--rose-soft); }
.pg-crumb-sep { margin: 0 8px; color: var(--line); list-style: none; }
.pg-crumb-here { color: var(--ink); }

.pg-occ-boxes { padding: 16px 0 44px; }
.pg-occ-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.pg-occ-card {
  position: relative; display: flex; flex-direction: column;
  background: radial-gradient(120% 90% at 50% 0%, rgba(198,96,122,.10), transparent 60%), var(--surface);
  border: 1px solid var(--line); border-radius: 20px;
  color: var(--ink); transition: transform .18s ease, border-color .18s ease;
}
/* badge sits above the card edge, so the card can't clip — round the
   media corners individually instead of relying on overflow:hidden */
.pg-occ-card--featured { }
a.pg-occ-card:hover { transform: translateY(-3px); border-color: rgba(198,96,122,.55); color: var(--ink); }
.pg-occ-card--featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.pg-occ-media { display: block; aspect-ratio: 4/5; background: var(--surface-hi); overflow: hidden; border-radius: 19px 19px 0 0; }
.pg-occ-media img { width: 100%; height: 100%; object-fit: cover; }
.pg-occ-media--ph {
  background: radial-gradient(90% 80% at 50% 25%, rgba(198,96,122,.26), transparent 62%), var(--surface-hi);
  display: flex; align-items: flex-end; justify-content: flex-end;
}
.pg-occ-body { display: block; padding: 18px 20px 22px; }
.pg-occ-name { display: block; font-family: var(--font-display); font-size: 21px; color: var(--ink); }
.pg-occ-price { display: block; font-family: var(--font-display); font-size: 22px; color: var(--gold-soft); margin: 4px 0 8px; }
.pg-occ-price del { color: var(--ink-dim); font-size: 16px; }
.pg-occ-text { display: block; font-size: 14px; color: var(--ink-dim); line-height: 1.6; margin-bottom: 12px; }
.pg-occ-go { display: block; font-size: 14px; font-weight: 600; color: var(--rose-soft); }
.pg-occ-note {
  text-align: center; font-size: 14.5px; color: var(--ink-dim);
  max-width: 56ch; margin: 26px auto 0; line-height: 1.7;
}

@media (min-width: 600px) { .pg-occ-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 1000px) { .pg-occ-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   TOUCH TARGET FIXES — comfortable tapping on phones
   ============================================================ */
@media (max-width: 899px) {
  /* logo, footer email and breadcrumb links need finger-sized hit areas */
  .pg-wordmark { display: inline-flex; align-items: center; min-height: 44px; }
  .pg-footer-contact a { display: inline-flex; align-items: center; min-height: 44px; }
  .pg-crumb a, .pg-crumb span { display: inline-flex; align-items: center; min-height: 32px; }
  .pg-footer-links a { display: inline-flex; align-items: center; min-height: 40px; }
  .pg-shop-all { display: inline-flex; align-items: center; min-height: 44px; }
}

/* ============================================================
   BLOG — listing, single post, archives
   ============================================================ */
.pg-blog-hero { padding: 48px 0 32px; text-align: center; }
.pg-blog-hero .pg-about-lead { margin: 0 auto; }
.pg-blog-list { padding: 8px 0 56px; }

/* post cards */
.pg-post-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.pg-post-card {
  background: radial-gradient(120% 90% at 50% 0%, rgba(198,96,122,.09), transparent 60%), var(--surface);
  border: 1px solid var(--line); border-radius: 20px;
  transition: transform .18s ease, border-color .18s ease;
}
.pg-post-card:hover { transform: translateY(-3px); border-color: rgba(198,96,122,.5); }
.pg-post-link { display: block; color: var(--ink); }
.pg-post-link:hover { color: var(--ink); }
.pg-post-media { display: block; aspect-ratio: 16/10; overflow: hidden; border-radius: 19px 19px 0 0; background: var(--surface-hi); }
.pg-post-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pg-post-media--ph { display: flex; align-items: center; justify-content: center; height: 100%; }
.pg-post-media--ph .pg-step-art { width: 84px; height: 84px; }
.pg-post-body { display: block; padding: 18px 20px 22px; }
.pg-post-meta { display: block; font-size: 12.5px; letter-spacing: .5px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.pg-post-title { display: block; font-family: var(--font-display); font-size: 21px; line-height: 1.25; color: var(--ink); margin-bottom: 8px; }
.pg-post-excerpt { display: block; font-size: 14.5px; color: var(--ink-dim); line-height: 1.65; margin-bottom: 12px; }
.pg-post-go { display: block; font-size: 14px; font-weight: 600; color: var(--rose-soft); }

/* pagination */
.pg-pagination { margin-top: 34px; text-align: center; }
.pg-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px; padding: 0 12px; margin: 0 3px;
  border-radius: 12px; border: 1px solid var(--line); background: var(--surface);
  color: var(--ink); font-size: 15px; font-weight: 500;
}
.pg-pagination .page-numbers.current { background: var(--rose); border-color: var(--rose); color: #fff; }
.pg-pagination .page-numbers:hover { border-color: var(--rose); color: var(--ink); }
.pg-pagination .screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }

/* single post */
.pg-single-head { padding: 34px 0 20px; text-align: center; }
.pg-single-meta { font-size: 13px; letter-spacing: .5px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin: 0 0 14px; }
.pg-single-title { font-family: var(--font-display); font-size: clamp(28px,6vw,44px); font-weight: 500; line-height: 1.1; margin: 0 auto 16px; max-width: 20ch; }
.pg-single-standfirst { font-size: 18px; color: var(--ink-dim); line-height: 1.65; max-width: 46ch; margin: 0 auto; }
.pg-single-hero { border-radius: 20px; overflow: hidden; margin: 26px auto 0; max-width: 800px; }
.pg-single-hero img { width: 100%; height: auto; display: block; }

/* readable article body */
.pg-single-body {
  max-width: 68ch; margin: 34px auto 0;
  font-size: 17.5px; line-height: 1.8; color: var(--ink-dim);
}
.pg-single-body > * { margin: 0 0 1.15em; }
.pg-single-body p { color: var(--ink-dim); }
.pg-single-body h2 {
  font-family: var(--font-display); font-size: clamp(23px,4.5vw,30px);
  font-weight: 500; color: var(--ink); margin: 1.8em 0 .5em; line-height: 1.2;
}
.pg-single-body h3 { font-family: var(--font-display); font-size: 21px; font-weight: 500; color: var(--ink); margin: 1.5em 0 .4em; }
.pg-single-body strong { color: var(--ink); font-weight: 600; }
.pg-single-body a { color: var(--rose-soft); text-decoration: underline; text-underline-offset: 3px; }
.pg-single-body ul, .pg-single-body ol { padding-left: 1.3em; }
.pg-single-body li { margin-bottom: .5em; }
.pg-single-body img { border-radius: 16px; }
.pg-single-body blockquote {
  border-left: 3px solid var(--rose); padding: 4px 0 4px 20px; margin-left: 0;
  font-family: var(--font-display); font-size: 20px; color: var(--ink); font-style: italic;
}
.pg-single-body figure { margin-left: 0; margin-right: 0; }
.pg-single-body figcaption { font-size: 13.5px; color: var(--ink-dim); text-align: center; margin-top: 8px; }

.pg-single-tags { max-width: 68ch; margin: 26px auto 0; display: flex; flex-wrap: wrap; gap: 8px; }
.pg-single-tags a {
  font-size: 13px; padding: 7px 14px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line); color: var(--ink-dim);
}
.pg-single-tags a:hover { border-color: var(--rose); color: var(--ink); }

.pg-single-cta { margin: 44px auto 0; max-width: 800px; }
.pg-related { padding: 48px 0 60px; border-top: 1px solid var(--line); margin-top: 48px; }
.pg-related .pg-about-h2 { margin-bottom: 26px; }

@media (min-width: 640px) { .pg-post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pg-post-grid { grid-template-columns: repeat(3, 1fr); } }

/* occasion switcher */
.pg-occ-switch { padding: 8px 0 36px; }
.pg-occ-switch-label { text-align: center; font-size: 14px; color: var(--ink-dim); margin: 0 0 16px; }
.pg-occ-switch-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pg-occ-switch-chip {
  display: inline-flex; align-items: center; min-height: 40px;
  padding: 8px 16px; border-radius: 999px; font-size: 14px;
  background: var(--surface); border: 1px solid var(--line); color: var(--ink-dim);
  transition: border-color .15s ease, color .15s ease;
}
.pg-occ-switch-chip:hover { border-color: var(--rose); color: var(--ink); }
.pg-occ-switch-chip--all { color: var(--rose-soft); font-weight: 600; }

/* breadcrumbs sit left-aligned even inside centred heroes */
.pg-about-hero-inner .pg-crumb-list,
.pg-occ-hero-inner .pg-crumb-list { justify-content: center; }
@media (min-width: 900px) {
  .pg-about-hero-inner .pg-crumb-list { justify-content: flex-start; }
}

/* ============================================================
   LEGAL PAGES — terms, privacy
   ============================================================ */
.pg-legal-hero { padding: 40px 0 24px; text-align: center; }
.pg-legal-hero .pg-crumb-list { justify-content: center; }
.pg-legal-updated { font-size: 13.5px; color: var(--ink-dim); margin: 10px 0 0; }
.pg-legal { padding: 8px 0 64px; }
.pg-legal-body { max-width: 68ch; margin: 0 auto; font-size: 16px; line-height: 1.8; color: var(--ink-dim); }
.pg-legal-intro {
  font-size: 17px; color: var(--ink); line-height: 1.75;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; padding: 20px 22px; margin: 0 0 34px;
}
.pg-legal-body h2 {
  font-family: var(--font-display); font-size: clamp(20px,4vw,25px); font-weight: 500;
  color: var(--ink); margin: 2em 0 .6em; line-height: 1.25;
  padding-top: 1.2em; border-top: 1px solid var(--line);
}
.pg-legal-body h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.pg-legal-body p { margin: 0 0 1.1em; }
.pg-legal-body strong { color: var(--ink); font-weight: 600; }
.pg-legal-body a { color: var(--rose-soft); text-decoration: underline; text-underline-offset: 3px; }
.pg-legal-body ul { padding-left: 1.25em; margin: 0 0 1.2em; }
.pg-legal-body li { margin-bottom: .6em; }

/* footer legal links */
.pg-footer-base-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.pg-legal-links { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; justify-content: center; }
.pg-legal-links a { color: var(--ink-dim); font-size: 13px; display: inline-flex; align-items: center; min-height: 40px; padding: 0 6px; }
.pg-legal-links a:hover { color: var(--rose-soft); }
.pg-legal-dot { color: var(--line); }
.pg-footer-copy { font-size: 13px; color: var(--ink-dim); text-align: center; }
@media (min-width: 700px) {
  .pg-footer-base-inner { flex-direction: row; justify-content: space-between; }
}

/* ============================================================
   OCCASIONS INDEX — SEO / guide section
   Deliberately a different rhythm from the homepage SEO block:
   two-up guide cards with side illustrations, and a highlight band.
   ============================================================ */
.pg-occ-seo { padding: 52px 0 56px; border-top: 1px solid var(--line); margin-top: 8px; }
.pg-occ-seo-lead { max-width: 68ch; margin: 0 auto 40px; text-align: center; }
.pg-occ-seo-lead p { font-size: 16.5px; color: var(--ink-dim); line-height: 1.75; margin: 0 0 14px; }
.pg-occ-seo-lead p:last-child { margin-bottom: 0; }
.pg-occ-seo-lead strong { color: var(--ink); font-weight: 600; }

/* guide cards */
.pg-guide { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 34px; }
.pg-guide-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 20px; padding: 24px 22px;
  transition: border-color .18s ease;
}
.pg-guide-card:hover { border-color: rgba(198,96,122,.45); }
.pg-guide-art { display: block; width: 64px; height: 64px; margin-bottom: 12px; }
.pg-guide-art .pg-step-art { width: 100%; height: 100%; }
.pg-guide-h {
  font-family: var(--font-display); font-size: 20px; font-weight: 500;
  color: var(--ink); margin: 0 0 10px; line-height: 1.25;
}
.pg-guide-card p { font-size: 15px; color: var(--ink-dim); line-height: 1.7; margin: 0 0 12px; }
.pg-guide-card p:last-child { margin-bottom: 0; }
.pg-guide-card strong { color: var(--ink); font-weight: 600; }

/* local-knowledge highlight band */
.pg-occ-note-band {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px;
  background:
    radial-gradient(120% 130% at 0% 0%, rgba(201,162,75,.15), transparent 55%),
    var(--surface);
  border: 1px solid rgba(201,162,75,.32); border-radius: 22px;
  padding: 26px 24px; margin-bottom: 42px;
}
.pg-occ-note-art { flex-shrink: 0; }
.pg-occ-note-band .pg-guide-h { margin-bottom: 8px; }
.pg-occ-note-band p { font-size: 15.5px; color: var(--ink-dim); line-height: 1.75; margin: 0; }

@media (min-width: 760px) {
  .pg-guide { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .pg-occ-note-band { flex-direction: row; text-align: left; gap: 24px; padding: 30px 34px; }
}

/* breadcrumb sits above the hero row, left-aligned on desktop */
.pg-about-hero > .pg-container:first-child { padding-top: 4px; }
.pg-about-hero > .pg-container:first-child .pg-crumb { margin-bottom: 12px; }
.pg-about-hero > .pg-container:first-child .pg-crumb-list { justify-content: center; }
@media (min-width: 900px) {
  .pg-about-hero > .pg-container:first-child .pg-crumb-list { justify-content: flex-start; }
}

/* flower page — warm mascot line above trust cards */
.pg-flower-warm {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center; margin-bottom: 26px;
}
.pg-flower-warm-art { flex-shrink: 0; }
.pg-flower-warm-art .pg-mascot { animation: pg-float 4s ease-in-out infinite; }
.pg-flower-warm-text {
  font-family: var(--font-display); font-size: clamp(17px,3.6vw,21px);
  color: var(--ink); line-height: 1.45; margin: 0; max-width: 44ch;
}
@media (min-width: 700px) {
  .pg-flower-warm { flex-direction: row; text-align: left; gap: 20px; justify-content: center; }
}

/* ============================================================
   REMINDERS PAGE — sign-up form
   ============================================================ */
.pg-reminder-form-wrap { padding: 44px 0 52px; }
.pg-reminder-card {
  max-width: 720px; margin: 0 auto;
  background: radial-gradient(120% 100% at 50% 0%, rgba(201,162,75,.12), transparent 58%), var(--surface);
  border: 1px solid var(--line); border-radius: 24px; padding: 28px 22px 30px;
}

/* honeypot */
.pgr-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

/* steps */
.pgr-step { margin-bottom: 30px; }
.pgr-step:last-of-type { margin-bottom: 22px; }
.pgr-step-head { display: flex; align-items: center; gap: 11px; margin-bottom: 6px; }
.pgr-step-n {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 999px;
  background: var(--surface-hi); border: 1px solid var(--line); color: var(--gold);
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.pgr-step-h { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--ink); margin: 0; line-height: 1.2; }
.pgr-step-sub { font-size: 14.5px; color: var(--ink-dim); margin: 0 0 16px; line-height: 1.6; }

/* fixed-date checkboxes */
.pgr-fixed-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.pgr-check {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  background: var(--bg); border: 1px solid var(--line); border-radius: 14px;
  padding: 13px 15px; min-height: 56px; transition: border-color .15s ease, background .15s ease;
}
.pgr-check:hover { border-color: rgba(198,96,122,.5); }
.pgr-check input { position: absolute; opacity: 0; width: 0; height: 0; }
.pgr-check-box {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 7px;
  border: 2px solid var(--line); background: transparent;
  display: flex; align-items: center; justify-content: center; transition: all .15s ease;
}
.pgr-check-box::after {
  content: "✓"; color: var(--bg); font-size: 14px; font-weight: 700;
  opacity: 0; transform: scale(.6); transition: all .15s ease;
}
.pgr-check input:checked ~ .pgr-check-box { background: var(--gold); border-color: var(--gold); }
.pgr-check input:checked ~ .pgr-check-box::after { opacity: 1; transform: scale(1); }
.pgr-check input:checked ~ .pgr-check-text .pgr-check-label { color: var(--ink); }
.pgr-check input:focus-visible ~ .pgr-check-box { outline: 2px solid var(--gold-soft); outline-offset: 2px; }
.pgr-check-text { display: flex; flex-direction: column; gap: 2px; }
.pgr-check-label { font-size: 15px; font-weight: 600; color: var(--ink); }
.pgr-check-note { font-size: 12.5px; color: var(--ink-dim); }

/* custom rows */
.pgr-custom-row { display: flex; gap: 8px; margin-bottom: 10px; align-items: center; }
.pgr-input {
  flex: 1; min-width: 0; background: var(--bg); border: 1px solid var(--line);
  border-radius: 12px; padding: 13px 14px; color: var(--ink);
  font-size: 15px; font-family: inherit; min-height: 48px;
}
.pgr-input::placeholder { color: var(--ink-dim); opacity: .8; }
.pgr-input:focus { outline: none; border-color: var(--rose); }
.pgr-input-date { flex: 0 0 152px; color-scheme: dark; }
.pgr-remove {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
  background: transparent; border: 1px solid var(--line); color: var(--ink-dim);
  font-size: 18px; cursor: pointer; line-height: 1;
}
.pgr-remove:hover { border-color: var(--rose); color: var(--rose-soft); }
.pgr-add {
  background: transparent; border: 1px dashed var(--line); border-radius: 12px;
  color: var(--rose-soft); font-size: 14.5px; font-weight: 600; font-family: inherit;
  padding: 12px 18px; cursor: pointer; min-height: 46px; width: 100%;
}
.pgr-add:hover { border-color: var(--rose); }

/* contact fields */
.pgr-fields { display: flex; flex-direction: column; gap: 12px; }
.pgr-field { display: flex; flex-direction: column; gap: 6px; }
.pgr-field-label { font-size: 13px; color: var(--ink-dim); font-weight: 500; }

/* submit */
.pgr-submit {
  width: 100%; background: var(--rose); color: #fff; border: none;
  border-radius: 14px; padding: 16px 24px; font-size: 16.5px; font-weight: 600;
  font-family: inherit; cursor: pointer; min-height: 54px;
  box-shadow: 0 6px 22px rgba(198,96,122,.35); transition: transform .12s ease;
}
.pgr-submit:hover { transform: translateY(-2px); }
.pgr-consent { font-size: 13px; color: var(--ink-dim); line-height: 1.6; margin: 14px 0 0; text-align: center; }
.pgr-consent a { color: var(--rose-soft); text-decoration: underline; text-underline-offset: 2px; }

/* success */
.pgr-success { text-align: center; padding: 10px 4px; }
.pgr-success-h { font-family: var(--font-display); font-size: 24px; color: var(--ink); margin: 0 0 12px; }
.pgr-success p { font-size: 15.5px; color: var(--ink-dim); line-height: 1.7; margin: 0 0 10px; }
.pgr-success strong { color: var(--gold-soft); }
.pgr-success-small { font-size: 13.5px !important; }

@media (min-width: 600px) {
  .pgr-fixed-grid { grid-template-columns: repeat(2, 1fr); }
  .pg-reminder-card { padding: 34px 34px 36px; }
  .pgr-submit { width: auto; min-width: 260px; display: block; margin: 0 auto; }
}

/* custom date rows stack on narrow phones so the name field isn't squeezed */
@media (max-width: 520px) {
  .pgr-custom-row { flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
  .pgr-custom-row .pgr-input:first-child { flex: 1 1 100%; }
  .pgr-input-date { flex: 1 1 auto; }
}

/* ============================================================
   REMINDERS — channel picker, phone field, success screen
   ============================================================ */
.pgr-channel { display: flex; gap: 10px; margin-bottom: 18px; }
.pgr-chan { flex: 1; cursor: pointer; }
.pgr-chan input { position: absolute; opacity: 0; width: 0; height: 0; }
.pgr-chan-inner {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 12px; border-radius: 14px; min-height: 52px;
  background: var(--bg); border: 1px solid var(--line);
  color: var(--ink-dim); font-size: 15px; font-weight: 600;
  transition: all .15s ease;
}
.pgr-chan:hover .pgr-chan-inner { border-color: rgba(255,255,255,.25); }
.pgr-chan input:checked ~ .pgr-chan-inner { color: #fff; border-color: transparent; }
.pgr-chan:first-child input:checked ~ .pgr-chan-inner { background: #06C755; box-shadow: 0 4px 14px rgba(6,199,85,.3); }
.pgr-chan:last-child input:checked ~ .pgr-chan-inner { background: #25D366; box-shadow: 0 4px 14px rgba(37,211,102,.3); }
.pgr-chan input:focus-visible ~ .pgr-chan-inner { outline: 2px solid var(--gold-soft); outline-offset: 2px; }

.pgr-phone { display: flex; gap: 8px; }
.pgr-input-cc { flex: 0 0 auto; max-width: 190px; }
.pgr-phone .pgr-input:last-child { flex: 1; min-width: 0; }
.pgr-field-hint { font-size: 12.5px; color: var(--ink-dim); opacity: .85; line-height: 1.5; margin-top: 2px; display: block; }

/* success / result screen */
.pgr-result { text-align: center; padding: 8px 4px 4px; }
.pgr-result-art { margin: 0 auto 14px; width: 120px; }
.pgr-result-art .pg-mascot { animation: pg-float 4s ease-in-out infinite; }
.pgr-result-kicker {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ok); font-weight: 700; margin: 0 0 10px;
}
.pgr-result-h {
  font-family: var(--font-display); font-size: clamp(22px,4.6vw,28px);
  font-weight: 500; color: var(--ink); margin: 0 0 18px; line-height: 1.25;
}
.pgr-saved-list {
  list-style: none; margin: 0 auto 20px; padding: 0;
  display: inline-flex; flex-direction: column; gap: 8px; text-align: left;
}
.pgr-saved-list li { font-size: 15px; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.pgr-tick {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 999px;
  background: rgba(127,176,138,.18); color: var(--ok);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.pgr-result-text { font-size: 15.5px; color: var(--ink-dim); line-height: 1.7; margin: 0 auto 12px; max-width: 46ch; }
.pgr-result-text strong { color: var(--ink); }
.pgr-result-small { font-size: 13.5px; color: var(--ink-dim); opacity: .85; line-height: 1.6; margin: 0 auto 22px; max-width: 44ch; }
.pgr-result-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.pgr-result-cta {
  display: inline-block; background: var(--rose); color: #fff;
  padding: 14px 30px; border-radius: 14px; font-weight: 600; font-size: 16px;
  box-shadow: 0 6px 22px rgba(198,96,122,.35);
}
.pgr-result-cta:hover { color: #fff; transform: translateY(-2px); }
.pgr-again { font-size: 14.5px; color: var(--rose-soft); text-decoration: underline; text-underline-offset: 3px; }
.pgr-result--error .pgr-result-h { color: var(--rose-soft); }

@media (min-width: 600px) {
  .pgr-result-actions { flex-direction: row; justify-content: center; gap: 20px; }
}
@media (max-width: 520px) {
  .pgr-phone { flex-wrap: wrap; }
  .pgr-input-cc { flex: 1 1 100%; max-width: none; }
}

/* day + month selects (locale-proof, replaces native date picker) */
.pgr-daymonth { display: flex; gap: 8px; flex: 0 0 auto; }
.pgr-input-day { flex: 0 0 88px; }
.pgr-input-month { flex: 0 0 132px; }
.pgr-daymonth select { color-scheme: dark; }

/* confirmation state — tighter, appears at top of page */
.pg-reminder-form-wrap.is-done { padding-top: 8px; }
.pg-reminder-form-wrap.is-done .pg-reminder-card { padding-top: 22px; }

@media (max-width: 640px) {
  .pgr-custom-row { flex-wrap: wrap; }
  .pgr-custom-row .pgr-input:first-child { flex: 1 1 100%; }
  .pgr-daymonth { flex: 1 1 auto; }
  .pgr-input-day { flex: 1 1 40%; }
  .pgr-input-month { flex: 1 1 55%; }
}

/* ============================================================
   SET PAGE — the conversion screen
   ============================================================ */
.pg-set { padding: 28px 0 40px; }
.pg-set-head { text-align: center; margin-bottom: 26px; }
.pg-set-title { font-family: var(--font-display); font-size: clamp(30px,7vw,48px); font-weight: 500; margin: 6px 0 12px; line-height: 1.05; }
.pg-set-intro { font-size: 16.5px; color: var(--ink-dim); max-width: 46ch; margin: 0 auto; line-height: 1.65; }
.pg-h2 { font-family: var(--font-display); font-size: clamp(21px,4.4vw,27px); font-weight: 500; color: var(--ink); margin: 0 0 6px; }
.pg-sub { font-size: 14.5px; color: var(--ink-dim); margin: 0 0 16px; line-height: 1.6; }

/* ---- tier picker ---- */
.pg-tiers { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; margin-bottom: 30px; }
.pg-tier {
  position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 3px;
  padding: 26px 14px 14px; border-radius: 16px; cursor: pointer; text-align: left;
  background: var(--surface); border: 1px solid var(--line); color: var(--ink);
  min-height: 104px; transition: all .16s ease; font-family: inherit;
}
.pg-tier:hover { border-color: rgba(198,96,122,.5); }
.pg-tier.is-on { background: var(--surface-hi); border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 6px 20px rgba(201,162,75,.14); }
.pg-tier-badge {
  position: absolute; top: 7px; left: 14px; font-size: 9.5px; font-weight: 700;
  letter-spacing: .4px; text-transform: uppercase; background: var(--gold);
  color: var(--bg); padding: 3px 8px; border-radius: 999px; white-space: nowrap;
}
.pg-tier-name { font-size: 15px; font-weight: 600; }
.pg-tier-price { font-family: var(--font-display); font-size: 22px; color: var(--ink); line-height: 1.1; }
.pg-tier.is-on .pg-tier-price { color: var(--gold-soft); }
.pg-tier-count { font-size: 12px; color: var(--ink-dim); }

/* ---- the box stage ---- */
.pg-boxstage {
  position: relative; text-align: center; padding: 22px 12px 18px; margin-bottom: 26px;
  background: radial-gradient(90% 70% at 50% 78%, rgba(198,96,122,.12), transparent 62%);
  border-radius: 24px;
}
.pg-boxstage-label { font-size: 13px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ink-dim); margin: 0 0 14px; }
.pg-boxstage-label strong { color: var(--gold-soft); font-weight: 700; }

/* floating contents */
.pg-float {
  display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; align-items: flex-end;
  min-height: 84px; margin-bottom: -10px; position: relative; z-index: 2;
}
.pg-fi {
  position: relative; background: transparent; border: none; padding: 0;
  cursor: pointer; font-family: inherit;
  animation: pg-drop .42s cubic-bezier(.2,.9,.3,1.2) backwards;
  animation-delay: calc(var(--i, 0) * 55ms);
}
@keyframes pg-drop {
  from { opacity: 0; transform: translateY(-26px) scale(.82) rotate(-6deg); }
  to   { opacity: 1; transform: none; }
}
.pg-fi-thumb {
  display: flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 14px; overflow: hidden;
  background: var(--surface-hi); border: 1px solid var(--line);
  box-shadow: 0 6px 16px rgba(0,0,0,.4);
  transition: transform .16s ease, border-color .16s ease;
}
.pg-fi:hover .pg-fi-thumb { transform: translateY(-4px); }
.pg-fi-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pg-fi-ini { font-family: var(--font-display); font-size: 17px; color: var(--rose-soft); }
.pg-fi.is-addon .pg-fi-thumb { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 6px 16px rgba(0,0,0,.4); }
.pg-fi-plus {
  position: absolute; top: -5px; right: -5px; width: 19px; height: 19px; border-radius: 999px;
  background: var(--gold); color: var(--bg); font-size: 13px; font-weight: 800; line-height: 19px;
}
.pg-fi.is-new .pg-fi-thumb { animation: pg-pop .5s ease; }
@keyframes pg-pop { 0%,100% { transform: none; } 45% { transform: scale(1.14) rotate(3deg); } }

/* the label appears on tap */
.pg-fi-label {
  position: absolute; bottom: calc(100% + 7px); left: 50%; transform: translateX(-50%) translateY(4px);
  background: var(--ink); color: var(--bg); font-size: 12px; font-weight: 600;
  padding: 5px 10px; border-radius: 8px; white-space: nowrap; pointer-events: none;
  opacity: 0; transition: all .15s ease; z-index: 5;
}
.pg-fi-label { display: none; }
@media (min-width: 1000px) and (hover: hover) {
  .pg-fi-label { display: block; max-width: 180px; overflow: hidden; text-overflow: ellipsis; }
  .pg-fi:hover .pg-fi-label { opacity: 1; transform: translateX(-50%); }
}
.pg-fi-more {
  display: flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 14px; font-size: 11px; font-weight: 600;
  color: var(--ink-dim); background: var(--surface); border: 1px dashed var(--line);
}

.pg-boxart { position: relative; z-index: 1; display: flex; justify-content: center; }
.pg-openbox { max-width: 100%; height: auto; }
.pg-float-hint { font-size: 12.5px; color: var(--ink-dim); opacity: .7; margin: 8px 0 0; min-height: 18px; transition: color .15s ease; }
.pg-float-hint.is-named { opacity: 1; color: var(--gold-soft); font-weight: 600; font-size: 14px; }

/* ---- written contents ---- */
.pg-contents { margin-bottom: 34px; }
.pg-contents-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase;
  color: var(--ink-dim); border-top: 1px solid var(--line); padding-top: 14px; margin: 0 0 10px;
}
.pg-contents-head span { color: var(--rose); text-transform: none; letter-spacing: 0; font-weight: 600; }
.pg-contents-head--addon span { color: var(--gold-soft); }
.pg-contents-list { list-style: none; margin: 0 0 18px; padding: 0; display: grid; grid-template-columns: 1fr; gap: 8px; }
.pg-contents-list li { font-size: 15px; color: var(--ink); display: flex; align-items: baseline; gap: 9px; }
.pg-contents-list em { color: var(--ink-dim); font-style: normal; font-size: 13.5px; }
.pg-contents-tick { color: var(--rose); font-size: 12px; flex-shrink: 0; }
.pg-contents-tick.is-addon { color: var(--gold); font-weight: 700; }

/* ---- add-on shelf ---- */
.pg-addons { margin-bottom: 32px; }
.pg-addon-shelf { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
.pg-addon {
  position: relative; flex: 0 0 auto; width: 150px; display: flex; flex-direction: column;
  gap: 6px; padding: 12px; border-radius: 16px; cursor: pointer; text-align: left;
  background: var(--surface); border: 1px solid var(--line); color: var(--ink);
  font-family: inherit; transition: all .16s ease;
}
.pg-addon:hover { border-color: rgba(201,162,75,.5); }
.pg-addon.is-on { background: var(--surface-hi); border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.pg-addon-thumb {
  display: block; width: 100%; aspect-ratio: 4/3; border-radius: 10px;
  background: radial-gradient(85% 80% at 50% 30%, rgba(198,96,122,.20), transparent 62%), var(--surface-hi);
}
.pg-addon-name { font-size: 13.5px; font-weight: 600; line-height: 1.3; }
.pg-addon-price { font-size: 14px; font-weight: 700; color: var(--gold-soft); }
.pg-addon-pod { font-size: 10.5px; color: var(--rose-soft); border: 1px solid rgba(198,96,122,.4); border-radius: 999px; padding: 1px 7px; align-self: flex-start; }
.pg-addon-state { font-size: 12.5px; font-weight: 600; color: var(--ink-dim); border: 1px solid var(--line); border-radius: 999px; padding: 5px 11px; text-align: center; margin-top: 2px; }
.pg-addon.is-on .pg-addon-state { background: var(--gold); border-color: var(--gold); color: var(--bg); }

/* ---- message ---- */
.pg-message { margin-bottom: 30px; }
.pg-textarea {
  width: 100%; min-height: 92px; resize: vertical; box-sizing: border-box;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 14px; color: var(--ink); font-size: 15px; font-family: inherit; line-height: 1.55;
}
.pg-textarea:focus { outline: none; border-color: var(--rose); }
.pg-msg-count { font-size: 12px; color: var(--ink-dim); text-align: right; margin-top: 5px; }

/* ---- sticky bar ---- */
.pg-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: rgba(20,16,14,.94); border-top: 1px solid var(--line); backdrop-filter: blur(10px);
}
.pg-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 11px 18px; }
.pg-bar-left { min-width: 0; }
.pg-bar-total { font-family: var(--font-display); font-size: 25px; font-weight: 600; line-height: 1.05; }
.pg-bar-sub { font-size: 12px; color: var(--ink-dim); margin-top: 2px; line-height: 1.35; }
.pg-bar-sub.is-free { color: var(--ok); }
.pg-bar-cta {
  flex-shrink: 0; background: var(--rose); color: #fff; border: none; border-radius: 14px;
  padding: 14px 26px; font-size: 16px; font-weight: 600; cursor: pointer; font-family: inherit;
  min-height: 50px; box-shadow: 0 6px 20px rgba(198,96,122,.35);
}
.pg-bar-cta:hover { transform: translateY(-1px); }

/* page needs room for the sticky bar */
body.page-template-page-occasion { padding-bottom: 86px; }

/* ---- tablet ---- */
@media (min-width: 620px) {
  .pg-tiers { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .pg-float { gap: 14px; min-height: 110px; }
  .pg-fi-thumb, .pg-fi-more { width: 68px; height: 68px; }
  .pg-contents-list { grid-template-columns: repeat(2, 1fr); }
}
/* ---- desktop ---- */
@media (min-width: 1000px) {
  .pg-boxstage { padding: 30px 20px 24px; }
  .pg-fi-thumb, .pg-fi-more { width: 76px; height: 76px; }
  .pg-contents { max-width: 760px; margin: 0 auto 38px; }
  .pg-addons, .pg-message { max-width: 900px; margin-left: auto; margin-right: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .pg-fi { animation: none; }
  .pg-fi.is-new .pg-fi-thumb { animation: none; }
}

/* ---- print-on-demand photo uploads ---- */
.pg-pod[hidden] { display: none !important; }
.pg-pod {
  margin-bottom: 32px; padding: 20px 18px; border-radius: 20px;
  background: radial-gradient(110% 90% at 0% 0%, rgba(198,96,122,.12), transparent 58%), var(--surface);
  border: 1px solid rgba(198,96,122,.32);
}
.pg-pod-head { margin-bottom: 14px; }
.pg-pod-rows { display: flex; flex-direction: column; gap: 12px; }
.pg-pod-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 12px; border-radius: 14px; background: var(--bg); border: 1px solid var(--line);
  transition: border-color .15s ease;
}
.pg-pod-row.has-photo { border-color: rgba(127,176,138,.4); }
.pg-pod-thumb {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 12px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; background: var(--surface-hi);
}
.pg-pod-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pg-pod-thumb.is-empty { border: 1px dashed var(--line); color: var(--ink-dim); font-size: 20px; }
.pg-pod-text { flex: 1 1 160px; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.pg-pod-name { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.pg-pod-state { font-size: 12.5px; color: var(--rose-soft); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pg-pod-state.is-ok { color: var(--ok); }
.pg-pod-warn { font-size: 11.5px; color: var(--gold-soft); line-height: 1.45; margin-top: 3px; }
.pg-pod-btn {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 10px 18px; border-radius: 999px; cursor: pointer;
  background: var(--rose); color: #fff; font-size: 13.5px; font-weight: 600;
}
.pg-pod-btn:hover { background: #b35068; }
.pg-pod-btn input { display: none; }
.pg-pod-remove {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 999px; cursor: pointer;
  background: transparent; border: 1px solid var(--line); color: var(--ink-dim);
  font-size: 17px; line-height: 1; font-family: inherit;
}
.pg-pod-remove:hover { border-color: var(--rose); color: var(--rose-soft); }

/* blocked cart button */
.pg-bar-cta.is-blocked {
  background: var(--surface-hi); color: var(--ink-dim); box-shadow: none;
  cursor: not-allowed; font-size: 14.5px;
}
.pg-bar-cta.is-blocked:hover { transform: none; }

/* ---- homepage hero illustration ---- */
.pg-hero-media { position: absolute; inset: 0; overflow: hidden; }
.pg-heroart { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
/* scrim keeps the headline readable over the brighter right side */
.pg-hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,14,.55) 0%, rgba(20,16,14,.25) 42%, rgba(20,16,14,.72) 100%),
    linear-gradient(90deg, rgba(20,16,14,.80) 0%, rgba(20,16,14,.35) 46%, rgba(20,16,14,.10) 100%);
}
.pg-heroart-rider { animation: pg-ride 9s ease-in-out infinite; }
@keyframes pg-ride { 0%,100% { transform: translateX(0); } 50% { transform: translateX(14px); } }
.pg-heroart-petals circle { animation: pg-drift 7s ease-in-out infinite; }
.pg-heroart-petals circle:nth-child(2n) { animation-duration: 9s; }
.pg-heroart-petals circle:nth-child(3n) { animation-duration: 11s; }
@keyframes pg-drift { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* on phones the scene needs less side-weight so text sits clear */
@media (max-width: 720px) {
  .pg-hero-scrim {
    background: linear-gradient(180deg, rgba(20,16,14,.74) 0%, rgba(20,16,14,.44) 45%, rgba(20,16,14,.82) 100%);
  }
  .pg-hero-inner { padding-top: 56px; padding-bottom: 84px; }
  /* frame on the sunset side — the scooter half-cropped looked odd at
     narrow widths, so let the skyline and sun carry it instead */
  /* SVG preserveAspectRatio can't be set in CSS, so nudge the whole scene
     left instead — the sun, palms and towers fill the narrow frame. */
  .pg-heroart { width: 150%; left: -28%; }
}
@media (prefers-reduced-motion: reduce) {
  .pg-heroart-rider, .pg-heroart-petals circle { animation: none; }
}

/* ---- illustrated scene band (delivery page) ---- */
.pg-scene {
  position: relative; width: 100%; height: 220px; overflow: hidden;
  margin-bottom: 44px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.pg-scene .pg-heroart { position: absolute; inset: 0; width: 100%; height: 100%; }
/* fade the edges into the page so it reads as a band, not a boxed image */
.pg-scene-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(20,16,14,0) 16%, rgba(20,16,14,0) 84%, var(--bg) 100%),
    linear-gradient(180deg, rgba(20,16,14,.45) 0%, rgba(20,16,14,0) 30%, rgba(20,16,14,0) 74%, rgba(20,16,14,.55) 100%);
}
@media (min-width: 900px) { .pg-scene { height: 300px; } }
@media (max-width: 600px) {
  .pg-scene { height: 180px; }
  .pg-scene .pg-heroart { width: 170%; left: -35%; }
}

/* quiet delivery reassurance link on the buying path */
.pg-delivery-link { font-size: 13px; color: var(--ink-dim); margin: 12px 0 0; line-height: 1.6; }
.pg-delivery-link a { color: var(--rose-soft); text-decoration: underline; text-underline-offset: 3px; }

/* ---- homepage hero photo (two crops) ---- */
.pg-hero-picture { position: absolute; inset: 0; display: block; }
.pg-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
@media (max-width: 720px) {
  /* the square crop fills a taller frame, so centre it and give the
     hero a bit more height so the subject isn't squeezed */
  .pg-hero-img { object-position: center center; }
  .pg-hero { min-height: 460px; }
  .pg-hero-inner { display: flex; flex-direction: column; justify-content: center; min-height: 460px; }
}

/* tier framing line — helps people self-select the right box */
.pg-tier-note {
  font-size: 11.5px; color: var(--ink-dim); line-height: 1.4; margin-top: 6px;
  display: block;
}
@media (min-width: 620px) { .pg-tier-note { font-size: 12px; line-height: 1.45; } }
.pg-tier.is-on .pg-tier-note { color: var(--ink); }

/* ============================================================
   LOGO — mark + wordmark
   ============================================================ */
.pg-logo {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--ink); text-decoration: none; min-height: 44px;
}
.pg-logo:hover { color: var(--ink); }
.pg-logo-mark { flex-shrink: 0; transition: transform .25s cubic-bezier(.2,.9,.3,1.3); }
.pg-logo:hover .pg-logo-mark { transform: translateY(-2px) rotate(-6deg); }
.pg-logo-word {
  font-family: var(--font-display); font-size: 23px; font-weight: 500;
  letter-spacing: -.2px; line-height: 1; white-space: nowrap;
}
.pg-logo-a { color: var(--ink); }
.pg-logo-b { color: var(--rose); }
.pg-logo:hover .pg-logo-b { color: var(--rose-soft); }

/* footer version sits a little larger and doesn't link */
.pg-footer-brand .pg-logo { min-height: 0; }
.pg-footer-brand .pg-logo-word { font-size: 26px; }

@media (min-width: 900px) { .pg-logo-word { font-size: 25px; } }
@media (max-width: 380px) { .pg-logo-word { font-size: 21px; } .pg-logo { gap: 7px; } }
@media (prefers-reduced-motion: reduce) { .pg-logo:hover .pg-logo-mark { transform: none; } }

/* ============================================================
   FLOWER PAGE — variants, size ladder, number meanings
   ============================================================ */
.pg-variants { display: grid; grid-template-columns: 1fr; gap: 14px; }
.pg-variant {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 20px 20px 22px; transition: border-color .16s ease;
}
.pg-variant:hover { border-color: rgba(198,96,122,.45); }
.pg-variant-swatch { display: block; width: 46px; height: 46px; border-radius: 999px; margin-bottom: 12px; box-shadow: 0 4px 14px rgba(0,0,0,.35); }
.pg-variant-name { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--ink); margin: 0 0 8px; }
.pg-variant-text { font-size: 14.5px; color: var(--ink-dim); line-height: 1.65; margin: 0; }

/* size ladder */
.pg-sizes { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.pg-size {
  position: relative; display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 2px; padding: 22px 12px 16px; border-radius: 18px;
  background: var(--surface); border: 1px solid var(--line); color: var(--ink);
  transition: transform .16s ease, border-color .16s ease;
}
.pg-size:hover { transform: translateY(-3px); border-color: rgba(198,96,122,.55); color: var(--ink); }
.pg-size.is-featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.pg-size-badge {
  position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  font-size: 9px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase;
  background: var(--gold); color: var(--bg); padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.pg-size-n { font-family: var(--font-display); font-size: 34px; line-height: 1; color: var(--ink); }
.pg-size.is-featured .pg-size-n { color: var(--gold-soft); }
.pg-size-unit { font-size: 11.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 6px; }
.pg-size-meaning { font-size: 12.5px; color: var(--ink-dim); line-height: 1.4; min-height: 34px; }
.pg-size-price { font-size: 16px; font-weight: 700; color: var(--gold-soft); margin-top: 6px; }
.pg-size-note { font-size: 11px; color: var(--rose-soft); margin-top: 3px; line-height: 1.35; }

/* number meanings */
.pg-numbers {
  background: radial-gradient(110% 90% at 0% 0%, rgba(201,162,75,.13), transparent 58%), var(--surface);
  border: 1px solid rgba(201,162,75,.30); border-radius: 22px;
  padding: 26px 22px; margin-bottom: 34px;
}
.pg-numbers-head p { font-size: 15.5px; color: var(--ink-dim); line-height: 1.7; margin: 0 0 18px; }
.pg-numbers-list { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.pg-numbers-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: var(--ink-dim); line-height: 1.7; }
.pg-numbers-list strong { color: var(--ink); font-weight: 600; }
.pg-numbers-list em { font-style: italic; color: var(--rose-soft); }
.pg-numbers-n {
  flex-shrink: 0; min-width: 52px; height: 52px; padding: 0 8px; border-radius: 14px;
  background: var(--surface-hi); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 21px; color: var(--gold-soft);
}
.pg-numbers-foot {
  font-size: 14.5px; color: var(--ink-dim); line-height: 1.7; margin: 0;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.pg-numbers-foot strong { color: var(--ink); }

@media (min-width: 620px) {
  .pg-variants { grid-template-columns: repeat(3, 1fr); }
  .pg-sizes { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (min-width: 1000px) {
  .pg-sizes { grid-template-columns: repeat(5, minmax(0,1fr)); }
  .pg-numbers { padding: 32px 34px; }
}

/* ============================================================
   GIFT PLAN
   ============================================================ */
.pg-plan { padding: 8px 0 48px; }
.pg-plan-step { margin-bottom: 30px; }
.pg-plan-step-head { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.pg-plan-step-head .pg-step-n {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 999px;
  background: var(--surface-hi); border: 1px solid var(--line); color: var(--gold);
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.pg-plan-step-head .pg-step-h { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--ink); margin: 0; }

.pg-plan-opts { display: grid; grid-template-columns: 1fr; gap: 12px; }
.pg-plan-opt {
  position: relative; display: flex; flex-direction: column; align-items: flex-start;
  gap: 4px; padding: 22px 18px 18px; border-radius: 18px; cursor: pointer; text-align: left;
  background: var(--surface); border: 1px solid var(--line); color: var(--ink);
  font-family: inherit; transition: all .16s ease;
}
.pg-plan-opt:hover { border-color: rgba(198,96,122,.5); }
.pg-plan-opt.is-on { background: var(--surface-hi); border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.pg-plan-badge {
  position: absolute; top: 8px; right: 12px; font-size: 9.5px; font-weight: 700;
  letter-spacing: .4px; text-transform: uppercase; background: var(--gold);
  color: var(--bg); padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.pg-plan-opt-n { font-family: var(--font-display); font-size: 30px; line-height: 1; color: var(--ink); }
.pg-plan-opt.is-on .pg-plan-opt-n { color: var(--gold-soft); }
.pg-plan-opt-name { font-size: 16px; font-weight: 600; }
.pg-plan-opt-price { font-size: 15px; font-weight: 700; color: var(--gold-soft); }
.pg-plan-opt-price em { font-style: normal; font-size: 12px; font-weight: 500; color: var(--ink-dim); }
.pg-plan-opt-text { font-size: 13.5px; color: var(--ink-dim); line-height: 1.55; margin-top: 3px; }

/* live summary */
.pg-plan-summary {
  display: flex; flex-direction: column; gap: 20px; margin-top: 34px;
  background: radial-gradient(110% 100% at 0% 0%, rgba(201,162,75,.15), transparent 58%), var(--surface);
  border: 1px solid rgba(201,162,75,.34); border-radius: 22px; padding: 26px 22px;
}
.pg-plan-summary-label { font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin: 0 0 8px; }
.pg-plan-summary-line { font-size: 16px; color: var(--ink-dim); margin: 0 0 10px; }
.pg-plan-summary-line strong { color: var(--ink); font-weight: 600; }
/* per-gift is the hero figure — it's what compares to a single order */
.pg-plan-hero {
  font-family: var(--font-display); font-size: clamp(36px,9vw,52px);
  color: var(--ink); margin: 0; line-height: 1;
}
.pg-plan-hero em { font-family: var(--font-body); font-style: normal; font-size: 17px; font-weight: 500; color: var(--ink-dim); }
/* monthly is an EQUIVALENCE, not a payment plan — worded accordingly */
.pg-plan-month { font-size: 15.5px; color: var(--gold-soft); font-weight: 600; margin: 9px 0 0; }
/* the real total stays visible, just not shouted */
.pg-plan-total { font-size: 14px; color: var(--ink-dim); margin: 12px 0 0; }
.pg-plan-save { font-size: 13.5px; color: var(--ok); margin: 4px 0 0; }
.pg-plan-summary-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.pg-plan-cta-note { font-size: 12.5px; color: var(--ink-dim); margin: 0; line-height: 1.55; }

/* the proposal / chat mockup */
.pg-proposal {
  display: flex; flex-direction: column; gap: 20px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 26px 22px;
}
.pg-proposal-art { flex-shrink: 0; }
.pg-proposal-intro { font-size: 15.5px; color: var(--ink-dim); line-height: 1.7; margin: 0 0 18px; }
.pg-chat { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.pg-chat-bubble {
  max-width: 88%; padding: 13px 16px; border-radius: 16px 16px 16px 5px;
  background: var(--bg); border: 1px solid var(--line); align-self: flex-start;
}
.pg-chat-bubble p { font-size: 14.5px; color: var(--ink-dim); line-height: 1.6; margin: 0 0 8px; }
.pg-chat-bubble p:last-child { margin-bottom: 0; }
.pg-chat-bubble--you {
  align-self: flex-end; border-radius: 16px 16px 5px 16px;
  background: rgba(6,199,85,.14); border-color: rgba(6,199,85,.34);
}
.pg-chat-bubble--you p { color: var(--ink); }
.pg-proposal-foot { font-size: 14px; color: var(--ink-dim); line-height: 1.65; margin: 0; font-style: italic; }

@media (min-width: 640px) {
  .pg-plan-opts { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (min-width: 860px) {
  .pg-plan-summary { flex-direction: row; align-items: center; justify-content: space-between; padding: 30px 34px; }
  .pg-plan-summary-cta { align-items: flex-end; text-align: right; }
  .pg-proposal { flex-direction: row; padding: 32px 34px; gap: 28px; }
  .pg-proposal-body { flex: 1; }
}

/* ---- gift plan sign-up form ---- */
.pg-plan-start { padding: 8px 0 48px; }
.pgp-chosen {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px;
  padding: 14px 16px; margin-bottom: 26px; border-radius: 14px;
  background: rgba(201,162,75,.10); border: 1px solid rgba(201,162,75,.30);
}
.pgp-chosen-label { font-size: 11.5px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.pgp-chosen-value { font-size: 15px; color: var(--ink-dim); }
.pgp-chosen-value strong { color: var(--ink); font-weight: 600; }
.pgp-chosen-change { margin-left: auto; font-size: 13.5px; color: var(--rose-soft); text-decoration: underline; text-underline-offset: 3px; }

.pgp-date-row {
  display: flex; flex-direction: column; gap: 8px; padding: 16px;
  border-radius: 14px; background: var(--bg); border: 1px solid var(--line);
  margin-bottom: 12px;
}
.pgp-date-n { font-size: 11.5px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin: 0; }
.pgp-date-remove {
  align-self: flex-start; background: transparent; border: none; padding: 4px 0;
  color: var(--ink-dim); font-size: 12.5px; cursor: pointer; font-family: inherit;
  text-decoration: underline; text-underline-offset: 3px;
}
.pgp-date-remove:hover { color: var(--rose-soft); }
.pgp-form .pgr-input[rows] { min-height: 76px; resize: vertical; }

@media (min-width: 620px) {
  .pgp-date-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-items: center; }
  .pgp-date-n { grid-column: 1 / -1; }
  .pgp-date-row .pgr-daymonth { grid-column: 1 / -1; }
  .pgp-date-remove { grid-column: 1 / -1; }
}

/* ---- which dates the plan covers ---- */
.pgp-cover { display: flex; align-items: flex-start; gap: 9px; cursor: pointer; font-size: 13px; }
.pgp-cover input { width: 19px; height: 19px; flex-shrink: 0; margin-top: 1px; accent-color: #C9A24B; }
.pgp-cover-text { line-height: 1.45; }
.pgp-cover-on { color: var(--gold-soft); font-weight: 600; }
.pgp-cover-off { color: var(--ink-dim); display: none; }
.pgp-cover input:not(:checked) ~ .pgp-cover-text .pgp-cover-on { display: none; }
.pgp-cover input:not(:checked) ~ .pgp-cover-text .pgp-cover-off { display: inline; }
.pgp-date-row.is-reminder-only { border-style: dashed; opacity: .88; }
.pgp-date-row.is-reminder-only .pgp-date-n { color: var(--ink-dim); }

.pgp-cover-note {
  font-size: 13.5px; line-height: 1.6; margin: 14px 0 0; padding: 12px 14px;
  border-radius: 12px; background: rgba(201,162,75,.10);
  border: 1px solid rgba(201,162,75,.28); color: var(--ink-dim);
}
.pgp-cover-note strong { color: var(--ink); }
.pgp-cover-note.is-over { background: rgba(198,96,122,.12); border-color: rgba(198,96,122,.38); }
.pgp-cover-note.is-under { background: rgba(127,176,138,.10); border-color: rgba(127,176,138,.30); }

.pgp-tag { font-size: 11px; padding: 2px 8px; border-radius: 999px; background: var(--surface-hi); color: var(--ink-dim); white-space: nowrap; }
.pgp-tag--covered { background: rgba(201,162,75,.20); color: var(--gold-soft); }

/* ---- homepage: subscription + gift plan ---- */
.pg-ongoing { padding: 40px 0 44px; }
.pg-ongoing-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.pg-ongoing-card {
  display: flex; flex-direction: column; padding: 26px 24px 24px; border-radius: 22px;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(201,162,75,.14), transparent 56%),
    radial-gradient(100% 110% at 100% 100%, rgba(198,96,122,.12), transparent 56%),
    var(--surface);
  border: 1px solid var(--line); color: var(--ink);
  transition: transform .18s ease, border-color .18s ease;
}
.pg-ongoing-card:hover { transform: translateY(-3px); border-color: rgba(201,162,75,.55); color: var(--ink); }
.pg-ongoing-art { display: block; width: 76px; height: 76px; margin-bottom: 12px; }
.pg-ongoing-art .pg-step-art { width: 100%; height: 100%; }
.pg-ongoing-kicker { font-size: 11.5px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.pg-ongoing-h { font-family: var(--font-display); font-size: clamp(21px,4.4vw,26px); font-weight: 500; line-height: 1.2; margin-bottom: 10px; }
.pg-ongoing-text { font-size: 15px; color: var(--ink-dim); line-height: 1.65; margin-bottom: 14px; }
.pg-ongoing-go { font-size: 14.5px; font-weight: 600; color: var(--rose-soft); margin-top: auto; }
@media (min-width: 760px) { .pg-ongoing-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }

/* the tier picker needs an instruction — it's the main decision on the page */
.pg-tier-head { text-align: center; margin-bottom: 18px; }
.pg-tier-head .pg-sub { max-width: 46ch; margin-left: auto; margin-right: auto; }

/* ---- About: who you're dealing with ---- */
.pg-entity {
  display: flex; flex-direction: column; gap: 20px;
  background: radial-gradient(110% 90% at 0% 0%, rgba(201,162,75,.12), transparent 58%), var(--surface);
  border: 1px solid rgba(201,162,75,.30); border-radius: 22px; padding: 26px 22px;
}
.pg-entity-art { flex-shrink: 0; }
.pg-entity-intro { font-size: 15.5px; color: var(--ink-dim); line-height: 1.7; margin: 0 0 20px; max-width: 56ch; }
.pg-entity-list { display: grid; grid-template-columns: 1fr; gap: 18px; margin: 0; }
.pg-entity-list dt {
  font-size: 11.5px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 5px;
}
.pg-entity-list dd { margin: 0; font-size: 15px; color: var(--ink); line-height: 1.6; }
.pg-entity-list dd a { color: var(--rose-soft); text-decoration: underline; text-underline-offset: 3px; }
.pg-entity-note { display: block; font-size: 13px; color: var(--ink-dim); margin-top: 4px; line-height: 1.55; }
@media (min-width: 700px) {
  .pg-entity { flex-direction: row; padding: 32px 34px; gap: 28px; }
  .pg-entity-body { flex: 1; }
  .pg-entity-list { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

/* ---- flower page: selectable variants & sizes ---- */
.pg-variant {
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
  cursor: pointer; font-family: inherit; color: var(--ink); width: 100%;
}
.pg-variant.is-on { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); background: var(--surface-hi); }
.pg-variant-state {
  margin-top: 12px; font-size: 12.5px; font-weight: 600; color: var(--ink-dim);
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px;
}
.pg-variant.is-on .pg-variant-state { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.pg-variant.is-on .pg-variant-state::after { content: "n"; }
.pg-variant.is-on .pg-variant-state { font-size: 0; }
.pg-variant.is-on .pg-variant-state::before { content: "✓ Chosen"; font-size: 12.5px; }

.pg-size { cursor: pointer; font-family: inherit; width: 100%; }
.pg-size.is-on { background: var(--surface-hi); border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.pg-size.is-on .pg-size-n { color: var(--gold-soft); }

.pg-fl-message { max-width: 640px; margin: 34px auto 0; }
.pg-fl-message .pg-h2 { text-align: center; }
.pg-fl-message .pg-sub { text-align: center; }

/* nudge the running total when a choice is made on a phone */
.pg-bar.is-pulse { animation: pg-barpulse .6s ease; }
@keyframes pg-barpulse { 0%,100% { transform: none; } 40% { transform: translateY(-4px); } }

/* room for the sticky bar */
body.page-template-page-flowers { padding-bottom: 86px; }
@media (prefers-reduced-motion: reduce) { .pg-bar.is-pulse { animation: none; } }

/* ---- subscription sizes ---- */
.pg-subsizes { display: grid; grid-template-columns: 1fr; gap: 14px; }
.pg-subsize {
  position: relative; display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 26px 18px 22px; border-radius: 20px;
  background: radial-gradient(120% 90% at 50% 0%, rgba(198,96,122,.10), transparent 60%), var(--surface);
  border: 1px solid var(--line); transition: transform .18s ease, border-color .18s ease;
}
.pg-subsize:hover { transform: translateY(-3px); border-color: rgba(198,96,122,.5); }
.pg-subsize.is-featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.pg-subsize-badge {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  font-size: 9.5px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase;
  background: var(--gold); color: var(--bg); padding: 3px 10px; border-radius: 999px; white-space: nowrap;
}
.pg-subsize-art { display: block; width: 62px; height: 62px; margin-bottom: 10px; }
.pg-subsize-art .pg-step-art { width: 100%; height: 100%; }
.pg-subsize-n { font-family: var(--font-display); font-size: 38px; line-height: 1; color: var(--ink); }
.pg-subsize.is-featured .pg-subsize-n { color: var(--gold-soft); }
.pg-subsize-unit { font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 8px; }
.pg-subsize-name { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--ink); margin: 0 0 6px; }
.pg-subsize-price { font-size: 19px; font-weight: 700; color: var(--gold-soft); margin: 0 0 10px; }
.pg-subsize-price span { font-size: 12.5px; font-weight: 500; color: var(--ink-dim); }
.pg-subsize-text { font-size: 13.5px; color: var(--ink-dim); line-height: 1.6; margin: 0; }

@media (min-width: 620px) { .pg-subsizes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pg-subsizes { grid-template-columns: repeat(5, minmax(0,1fr)); gap: 12px; } }

/* subscription sizes & terms are now selectable */
.pg-subsize { cursor: pointer; font-family: inherit; width: 100%; color: var(--ink); }
.pg-subsize.is-on { background: var(--surface-hi); border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.pg-subsize.is-on .pg-subsize-n { color: var(--gold-soft); }
.pg-subsize-name, .pg-subsize-price, .pg-subsize-text { display: block; }
.pg-term-card { cursor: pointer; font-family: inherit; width: 100%; text-align: center; color: var(--ink); }
.pg-term-card.is-on { background: var(--surface-hi); border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.pg-term-name, .pg-term-save, .pg-term-text { display: block; }
#pg-sub-summary { margin-top: 30px; }
#pg-sub-cta { border: none; cursor: pointer; font-family: inherit; }

/* footer link columns */
.pg-footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.pg-footer-links li { margin: 0; }
.pg-footer-links a {
  display: inline-flex; align-items: center; min-height: 38px;
  font-size: 14.5px; color: var(--ink-dim); line-height: 1.4;
}
.pg-footer-links a:hover { color: var(--rose-soft); }

/* add-on thumbnails: real photo when we have one, soft placeholder when we don't */
.pg-addon-thumb { overflow: hidden; position: relative; }
.pg-addon-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pg-addon-thumb.is-empty::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(255,255,255,.02) 8px, rgba(255,255,255,.02) 16px);
}
