
@font-face{font-family:'DM Sans';font-style:normal;font-weight:300 700;font-display:swap;src:url('fonts/dmsans.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Playfair Display';font-style:normal;font-weight:400 700;font-display:optional;src:url('fonts/playfairdisplay.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Playfair Display';font-style:italic;font-weight:400 700;font-display:optional;src:url('fonts/playfairdisplay-italic.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
:root {
    --cream: #F6F1EA;
    --sand: #E9DFD2;
    --clay: #B45A3C;
    --clay-deep: #7A3520;
    --clay-light: #D17C5C;
    --sage: #6F7E5C;
    --sage-deep: #4D5A3D;
    --black: #1A1612;
    --white: #FFFFFF;
    --warm-gray: #A89E92;
    --light-gray: #E8E2D9;
    --off-white: #FAF7F2;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background: var(--cream);
    color: var(--black);
    overflow-x: hidden;
    overscroll-behavior-x: none;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .editorial { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px);} to { opacity: 1; transform: translateY(0);} }
@keyframes pulseDot { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: 0.4; transform: scale(0.7);} }
@keyframes float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-6px);} }
@keyframes morphBlob {
    0%,100% { border-radius: 40% 60% 65% 35% / 40% 45% 55% 60%; transform: translate(0,0) rotate(0deg) scale(1); }
    33%     { border-radius: 55% 45% 40% 60% / 55% 60% 40% 45%; transform: translate(30px,-25px) rotate(120deg) scale(1.05); }
    66%     { border-radius: 45% 55% 55% 45% / 60% 40% 55% 45%; transform: translate(-20px,15px) rotate(240deg) scale(0.95); }
}
.reveal { animation: fadeInUp 0.9s cubic-bezier(0.22,1,0.36,1) both; }
.reveal-d1 { animation-delay: 0.15s; }
.reveal-d2 { animation-delay: 0.3s; }
.reveal-d3 { animation-delay: 0.45s; }
/* Hero is the LCP region — paint it instantly (no opacity fade) so Lighthouse LCP is stable */
.hero .reveal, .hero .reveal-d1, .hero .reveal-d2 { animation: none; opacity: 1; transform: none; }

/* ===== LIQUID BLOBS ===== */
.liquid-blob { position: absolute; pointer-events: none; z-index: 0; }
.blob-clay  { background: radial-gradient(circle at 30% 30%, var(--clay-light), var(--clay) 70%); animation: morphBlob 18s ease-in-out infinite; }
.blob-sage  { background: radial-gradient(circle at 30% 30%, #95a37e, var(--sage) 70%); animation: morphBlob 22s ease-in-out infinite reverse; }

/* ===== GRAIN ===== */
.has-grain::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    pointer-events: none;
    z-index: 1;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--clay); color: var(--white);
    padding: 16px 32px; border-radius: 999px;
    min-height: 48px;
    font-size: 12px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase;
    border: none; cursor: pointer; text-decoration: none;
    transition: background 0.2s, transform 0.2s; display: inline-flex; align-items: center; gap: 12px;
}
.btn-primary:hover { background: var(--clay-deep); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-ghost {
    background: transparent; color: var(--white);
    padding: 14px 28px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.7);
    font-size: 12px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase;
    cursor: pointer; text-decoration: none; transition: 0.3s;
    display: inline-flex; align-items: center; gap: 12px;
}
.btn-ghost:hover { background: var(--white); color: var(--clay-deep); border-color: var(--white); }

/* ===============================================
   BLOCK 1 — HERO
   SEO H1 с динамическим городом + USP + рейтинг
   =============================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;   /* stable height — doesn't resize as Safari's toolbar shows/hides (no reflow jitter on scroll reversal) */
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: url('hero-bg.webp') center 20% / cover no-repeat;
    transform: scaleX(-1);
    background-color: var(--clay);
}
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(26,22,18,0.15) 0%, rgba(26,22,18,0.50) 50%, rgba(26,22,18,0.80) 100%);
}

.hero-content {
    position: relative; z-index: 2;
    max-width: 1280px; width: 100%;
    margin: 0 auto;
    margin-top: -60px;
    padding: 120px 56px 80px;
    text-align: left;
    display: flex; flex-direction: column; align-items: flex-start;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.85);
    margin-bottom: 22px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--clay-light); border-radius: 50%; animation: pulseDot 2s infinite; }

.hero h1 {
    font-size: clamp(40px, 5.5vw, 80px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--white);
}
.hero h1 em { font-style: italic; color: var(--cream); font-weight: 500; }

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(17px, 1.8vw, 22px);
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    line-height: 1.5;
}


.hero-ctas { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: flex-start; align-items: flex-start; }
.hero-phone-group { display: inline-flex; flex-direction: column; align-items: center; gap: 6px; }
.hero-phone-hint { display: block; }

/* Hero phone link */
.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    min-height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.35);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}
.hero-phone:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: var(--white); }

/* Trust strip — between hero and content */
.trust-strip {
    background: var(--black);
    padding: 16px 24px;
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(246,241,234, 0.6);
    overflow: hidden;
}
.trust-marquee { display: flex; justify-content: center; gap: 10px; }
.trust-track { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.trust-track[aria-hidden="true"] { display: none; }
.trust-track > .dot-sep:last-child { display: none; }
.trust-strip .dot-sep { color: rgba(246,241,234, 0.25); }
.trust-strip + .timeline { margin-top: 0; }



/* ===============================================
   BLOCK 2 — FRESHNESS TIMELINE
   Comparison: online chains vs Under Wonder
   =============================================== */
.freshness {
    position: relative;
    padding: 64px 56px;
    background: var(--off-white);
    overflow: hidden;
}
.freshness-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 64px;
    row-gap: 32px;
    align-items: center;
    grid-template-areas: "text photo" "calc photo";
}
.freshness-text { grid-area: text; align-self: center; }
.freshness-photo { grid-area: photo; align-self: stretch; }
.freshness .calc { grid-area: calc; align-self: start; }

.freshness-text h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.freshness-text h2 em { font-style: italic; color: var(--clay); }
.freshness-text > p {
    font-size: 15px;
    line-height: 1.7;
    color: #6b5d4f;
    max-width: 440px;
    margin-bottom: 36px;
}

/* Process flow — horizontal steps */
.flow {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.flow-step {
    display: flex; flex-direction: column;
    gap: 2px;
}
.flow-time {
    font-size: 11px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--clay);
}
.flow-name {
    font-size: 14px; font-weight: 500; color: var(--black);
}
.flow-desc {
    font-size: 12px; color: var(--warm-gray); line-height: 1.4;
}
.flow-arrow {
    padding: 0 14px;
    color: var(--warm-gray);
    font-size: 16px;
}

/* Interactive slider — "Во сколько заказываете?" */
.calc {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    padding: 28px 32px;
}
.calc-label {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--black);
    margin-bottom: 20px;
}

.calc-slider-wrap { position: relative; margin-bottom: 24px; }
.calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(to right, var(--clay) 0%, var(--clay) var(--fill, 20%), var(--light-gray) var(--fill, 20%), var(--light-gray) 100%);
    outline: none;
    cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--clay);
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(180,90,60, 0.35);
    cursor: grab;
    transition: transform 0.15s;
}
.calc-slider::-webkit-slider-thumb:active { transform: scale(1.15); cursor: grabbing; }
.calc-slider::-moz-range-thumb {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--clay);
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(180,90,60, 0.35);
    cursor: grab;
}

.calc-ticks {
    display: flex; justify-content: space-between;
    margin-top: 8px;
    font-size: 10px; letter-spacing: 1px;
    color: var(--warm-gray);
}

.calc-display {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px 16px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}
.calc-order {
    font-size: 15px; color: #6b5d4f;
    white-space: nowrap;
    flex-shrink: 0;
}
.calc-order strong {
    font-family: 'Playfair Display', serif;
    font-size: 20px; color: var(--black);
    white-space: nowrap;
}
.calc-result {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    border: none;
    border-radius: 999px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    cursor: pointer;
    text-align: left;
    transition: transform 0.15s ease, filter 0.2s ease;
}
.calc-result:hover { filter: brightness(0.96); transform: translateY(-1px); }
.calc-result:active { transform: translateY(0); }
.calc-result.same-day {
    background: rgba(111,126,92, 0.1);
    color: var(--sage-deep);
}
.calc-result.next-day {
    background: rgba(180,90,60, 0.08);
    color: var(--clay-deep);
}
.calc-result-icon { font-size: 16px; flex-shrink: 0; }
.calc-result-text strong { font-weight: 600; }
@media (max-width: 420px) {
    .calc-result { width: 100%; justify-content: center; }
}

/* Right side — photo placeholder */
.freshness-photo {
    border-radius: 24px;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--sand), var(--clay-light));
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255, 0.5);
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    text-align: center; padding: 24px;
    overflow: hidden;
}
.freshness-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

/* ===== RESPONSIVE ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

@media (max-width: 980px) {
    .hero-content { padding: 100px 24px 64px; }
    .hero-ctas { flex-direction: column; width: 100%; align-items: stretch; }
    .hero-ctas .btn-primary, .hero-ctas .hero-phone { width: 100%; justify-content: center; }
    .hero-phone-group { width: 100%; }
    .freshness { padding: 72px 24px; }
    .freshness-inner { display: flex; flex-direction: column; gap: 28px; }
    .freshness-text { text-align: center; }
    .freshness-text h2 { margin-bottom: 14px; }
    .freshness-text > p { max-width: 420px; margin: 0 auto; }
    .flow { justify-content: center; margin-bottom: 0; }
    .freshness-photo { aspect-ratio: 16/10; }
    .tl-step .d { font-size: 10px; }
    .tl-step .t { font-size: 10px; }
}
@media (max-width: 640px) {
    .trust-strip { padding: 13px 0; }
    .trust-marquee {
        justify-content: flex-start;
        width: max-content;
        gap: 0;
        animation: trust-scroll 26s linear infinite;
    }
    .trust-track { gap: 14px; padding-right: 14px; }
    .trust-track[aria-hidden="true"] { display: flex; }
    .trust-track > .dot-sep:last-child { display: inline; }
}
.trust-strip:hover .trust-marquee { animation-play-state: paused; }
@keyframes trust-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .trust-marquee { animation: none !important; }
}

/* ===============================================
   BLOCK 3 — CATALOG (bouquet cards + pill filters)
   Ported from Serotonin production, adapted to UWF palette
   =============================================== */
.catalog {
    padding: 80px 0 100px;
    background: var(--black);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
.catalog.has-grain::before { opacity: 0.025; }
.catalog-header {
    max-width: 1280px;
    margin: 0 auto 56px;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.catalog-header h2 {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: var(--cream);
}
.catalog-header h2 em { font-style: italic; color: var(--clay-light); }

/* --- Pill-bar filters --- */
.pill-bar {
    max-width: 1280px;
    margin: 0 auto 40px;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    position: relative;
    z-index: 50;
}
.pill-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    background: rgba(255,255,255, 0.03);
    border: 1px solid rgba(255,255,255, 0.07);
    border-radius: 100px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255, 0.50);
    transition: all 0.18s ease;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
.pill-btn:hover { border-color: rgba(255,255,255, 0.14); color: rgba(255,255,255, 0.92); }
.pill-btn.open { border-color: rgba(255,255,255, 0.14); color: rgba(255,255,255, 0.92); background: rgba(255,255,255, 0.05); z-index: 201; }
.pill-btn.has-filter { border-color: var(--clay); color: var(--cream); font-weight: 500; }
.pill-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--clay-light);
    flex-shrink: 0; opacity: 0; transform: scale(0);
    transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.pill-btn.has-filter .pill-dot { opacity: 1; transform: scale(1); }
.pill-label { pointer-events: none; }
.pill-count-badge {
    font-size: 11px; font-weight: 600; color: var(--clay-light);
    background: rgba(180,90,60, 0.15); border-radius: 100px;
    padding: 1px 6px; min-width: 18px; text-align: center; line-height: 16px;
}
.pill-chev {
    width: 8px; height: 5px; opacity: 0.35; flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.32,0.72,0,1), opacity 0.15s;
}
.pill-btn.open .pill-chev { transform: rotate(180deg); opacity: 0.5; }
.pill-drop {
    position: absolute; top: calc(100% + 10px); left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 300px; max-width: 440px; width: max-content;
    background: rgba(18,14,14, 0.95);
    -webkit-backdrop-filter: blur(40px) saturate(1.5);
    backdrop-filter: blur(40px) saturate(1.5);
    border: 1px solid rgba(255,255,255, 0.12);
    border-radius: 14px; padding: 16px; z-index: 200;
    box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
    opacity: 0; pointer-events: none;
    transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.32,0.72,0,1);
}
.pill-btn.open .pill-drop { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: all; }
.pill-btn:last-child .pill-drop { left: auto; right: 0; transform: translateX(0) translateY(-6px); }
.pill-btn:last-child.open .pill-drop { transform: translateX(0) translateY(0); }
.pill-btn:first-child .pill-drop { left: 0; transform: translateX(0) translateY(-6px); }
.pill-btn:first-child.open .pill-drop { transform: translateX(0) translateY(0); }
.pill-drop-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-chip {
    padding: 8px 16px; border: 1px solid rgba(255,255,255, 0.06); border-radius: 10px;
    font-size: 13px; font-weight: 400; cursor: pointer;
    transition: all 0.18s cubic-bezier(0.32,0.72,0,1);
    background: rgba(255,255,255, 0.03); color: rgba(255,255,255, 0.50);
    display: inline-flex; align-items: center; line-height: 1.1;
    font-family: 'DM Sans', sans-serif; -webkit-tap-highlight-color: transparent; user-select: none;
}
.filter-chip:hover { color: rgba(255,255,255, 0.92); background: rgba(255,255,255, 0.06); border-color: rgba(255,255,255, 0.10); }
.filter-chip:active { transform: scale(0.95); transition-duration: 0.06s; }
.filter-chip.active { color: #fff; background: var(--clay); border-color: transparent; font-weight: 500; }
.filter-chip.active:hover { background: var(--clay-light); }
.filter-chip[data-val="all"] { font-style: italic; }
/* Bottom-sheet backdrop (mobile filters) */
.filter-backdrop {
    position: fixed; inset: 0;
    background: rgba(18,14,14, 0.55);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
    z-index: 10000;
}
body.filter-sheet-open .filter-backdrop { opacity: 1; visibility: visible; }
@media (min-width: 769px) { .filter-backdrop { display: none !important; } }
.pill-count-wrap {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: rgba(255,255,255, 0.35);
    margin-left: auto; flex-shrink: 0; padding-left: 12px;
}
.pill-count-wrap strong {
    color: var(--white, #fff); font-weight: 600;
    font-family: 'Playfair Display', serif; font-style: italic; font-size: 15px;
}
.filter-reset {
    background: none; border: none; cursor: pointer;
    font-size: 12px; color: var(--clay-light); padding: 0; font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
}
.filter-reset::before { content: '\21BA '; }
.filter-reset:hover { color: var(--cream); }

/* --- Bouquet card grid (Serotonin bento pattern) --- */
.wb-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.wb-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
    background: #1A1612;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.wb-card:hover { transform: translateY(-4px); }
.wb-card .wb-img {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; color: rgba(255,255,255,0.3);
    text-align: center; line-height: 1.8; padding: 16px;
}
/* Rotating placeholder gradients for cards without images */
.wb-card:nth-child(6n+1) .wb-img { background: linear-gradient(135deg, #3D2019, #5C3028); }
.wb-card:nth-child(6n+2) .wb-img { background: linear-gradient(145deg, #2A1A14, #4A2A20); }
.wb-card:nth-child(6n+3) .wb-img { background: linear-gradient(155deg, #1A1418, #3A2028); }
.wb-card:nth-child(6n+4) .wb-img { background: linear-gradient(135deg, #2A1818, #4A2828); }
.wb-card:nth-child(6n+5) .wb-img { background: linear-gradient(140deg, #1A1A18, #3A2A20); }
.wb-card:nth-child(6n+6) .wb-img { background: linear-gradient(150deg, #2A1A1A, #4A2A2A); }
/* Dark gradient overlay at card bottom */
.wb-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, #1A1612 0%, rgba(26,22,18,0.85) 16%, rgba(26,22,18,0.35) 38%, transparent 62%);
    z-index: 1;
}
.wb-order-btn {
    background: var(--clay); color: var(--white);
    border: none; border-radius: 12px; padding: 10px 16px;
    font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(26,22,18,0.28);
}
.wb-order-btn:hover { background: var(--clay-deep); }
.wb-order-btn:active { transform: translateY(1px); }
.wb-order-btn:disabled { opacity: 0.6; cursor: wait; }
/* Two-button action row (Buy / + Cart) — revealed on hover (desktop) */
.wb-actions {
    position: absolute; bottom: 12px; right: 12px; left: 12px; z-index: 3;
    display: flex; gap: 8px;
    opacity: 0; transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.22,1,0.36,1);
    pointer-events: none;
}
.wb-card:hover .wb-actions { opacity: 1; transform: none; pointer-events: auto; }
.wb-actions .wb-order-btn { flex: 1; white-space: nowrap; }
.wb-buy { background: var(--clay); color: var(--white); }
/* Liquid-glass "+ Cart" (Apple-style) — translucent over the photo, not flat white */
.wb-cart {
    background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.08) 100%);
    color: var(--white);
    backdrop-filter: blur(16px) saturate(1.5); -webkit-backdrop-filter: blur(16px) saturate(1.5);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 2px 10px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -1px 0 rgba(255,255,255,0.06);
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
.wb-cart:hover {
    background: linear-gradient(135deg, rgba(199,98,60,0.5) 0%, rgba(180,90,60,0.3) 100%);
    border-color: rgba(209,124,92,0.8);
}

/* Quick-add "+" — liquid glass, corner of photo. Mobile's primary cart affordance (variant A). */
.wb-quickadd {
    position: absolute; top: 12px; right: 12px; z-index: 4;
    width: 40px; height: 40px; border-radius: 50%;
    display: none; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.45);
    background-color: rgba(26,22,18,0.34);
    backdrop-filter: blur(16px) saturate(1.5); -webkit-backdrop-filter: blur(16px) saturate(1.5);
    box-shadow: 0 2px 10px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.3);
    color: var(--white); cursor: pointer; transition: transform 0.15s, background-color 0.25s, border-color 0.25s;
}
.wb-quickadd svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3)); }
.wb-quickadd:active { transform: scale(0.9); }
/* Hover/focus — the liquid glass itself tints orange (no shadow ring) */
.wb-quickadd:hover, .wb-quickadd:focus-visible {
    background-color: rgba(199,98,60,0.58);
    border-color: rgba(209,124,92,0.85);
}
/* Attention pulse on scroll-into-view: the glass fills orange and recedes — background only, no ring */
@keyframes wbGlowPulse {
    0%, 100% { background-color: rgba(26,22,18,0.34); border-color: rgba(255,255,255,0.45); }
    45%      { background-color: rgba(199,98,60,0.62); border-color: rgba(209,124,92,0.9); }
}
.wb-quickadd.glow { animation: wbGlowPulse 1.6s ease-in-out; }
@media (max-width: 768px) {
    /* Variant A: no hover on touch → drop the two-button row entirely, use a single
       liquid-glass "+" in the corner. Tapping the card opens the product (where Order lives).
       Keeps the grid a clean gallery of bouquets instead of a wall of repeated buttons. */
    .wb-actions { display: none; }
    .wb-quickadd { display: flex; }
    /* Name + price stay at the natural bottom (no button row to clear) */
    .wb-info, .wb-card:hover .wb-info { transform: none; }
    /* Lighter, softer scrim — no heavy black wash on mobile */
    .wb-overlay {
        background: linear-gradient(to top, rgba(26,22,18,0.72) 0%, rgba(26,22,18,0.30) 34%, transparent 60%);
    }
}
/* Info area at card bottom — grid layout for name + price */
.wb-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 24px;
    z-index: 2;
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 0;
    align-items: end;
    transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
/* On hover the title/price lift to make room for the action row below.
   Gated to hover-capable devices so a touch tap never lifts the title (mobile uses the corner "+"). */
@media (hover: hover) {
    .wb-card:hover .wb-info { transform: translateY(-46px); }
}
.wb-info h3 {
    grid-column: 1; grid-row: 1;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-width: 0;
}
.wb-desc {
    grid-column: 1; grid-row: 2;
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
/* Glass-pill price badge */
.wb-price {
    grid-column: 2; grid-row: 1 / 3;
    align-self: end;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--white);
    white-space: nowrap;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.08) 100%);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    padding: 10px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -1px 0 rgba(255,255,255,0.05);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
/* Card with real photo */
.wb-card .wb-img-real {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.wb-card:hover .wb-img-real { transform: scale(1.03); }
/* Card carousel arrows */
.wb-card-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: none;
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    z-index: 3;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}
.wb-card:hover .wb-card-nav { opacity: 1; }
.wb-card-nav:hover { background: rgba(255,255,255,0.3); }
.wb-card-nav.prev { left: 8px; }
.wb-card-nav.next { right: 8px; }
/* Carousel dots */
.wb-card-dots {
    position: absolute;
    bottom: 8px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 6px;
    z-index: 3;
}
.wb-card-dots span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transition: background 0.2s;
}
.wb-card-dots span.active { background: var(--white); }
/* Filtered out state */
.wb-card.filtered-out { display: none; }

/* Loading skeleton cards */
.wb-skeleton {
    background: var(--sand);
    border-radius: 16px;
    min-height: 320px;
    aspect-ratio: 3/4;
    animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 0.6; } 50% { opacity: 0.3; } }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .catalog-header { padding: 0 40px; }
    .pill-bar { padding: 0 40px; }
    .wb-grid { padding: 0 40px; grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .catalog { padding: 64px 0 80px; }
    .catalog-header { padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
    .pill-bar {
        padding: 0 24px;
        /* scroll-snap-align:start would snap the first pill flush to the edge,
           eating the left padding — scroll-padding makes snap respect the gutter
           so the first pill lines up with the bouquet cards below. */
        scroll-padding: 0 24px;
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        position: static;
        z-index: auto;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .pill-bar::-webkit-scrollbar { display: none; }
    .pill-btn {
        font-size: 13px;
        padding: 9px 15px;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }
    .pill-btn.open { z-index: 10001; }
    /* iOS Safari clips position:fixed descendants by an overflow ancestor.
       While a filter sheet is open, drop the bar's overflow so the fixed
       bottom-sheet escapes to the viewport (Blink already does this, so
       desktop/emulation was unaffected — this targets the real-device bug). */
    body.filter-sheet-open .pill-bar { overflow: visible; }
    /* Dropdown becomes a bottom sheet */
    .pill-drop {
        position: fixed;
        left: 0; right: 0; bottom: 0; top: auto;
        width: 100%; min-width: 0; max-width: 100%;
        border-radius: 22px 22px 0 0;
        padding: 18px 20px calc(24px + env(safe-area-inset-bottom));
        transform: translateY(110%);
        opacity: 1;
        transition: transform 0.36s cubic-bezier(0.32,0.72,0,1);
        z-index: 10001;
        box-shadow: 0 -14px 44px rgba(0,0,0,0.5);
    }
    .pill-drop::before {
        content: '';
        display: block;
        width: 40px; height: 4px;
        background: rgba(255,255,255,0.22);
        border-radius: 99px;
        margin: 2px auto 18px;
    }
    .pill-btn:first-child .pill-drop,
    .pill-btn:last-child .pill-drop { left: 0; right: 0; transform: translateY(110%); }
    .pill-btn.open .pill-drop,
    .pill-btn:first-child.open .pill-drop,
    .pill-btn:last-child.open .pill-drop { transform: translateY(0); }
    .pill-drop-chips { gap: 8px; }
    .filter-chip { padding: 11px 18px; font-size: 14px; border-radius: 12px; }
    .pill-count-wrap { display: none; }
    .wb-grid { padding: 0 24px; grid-template-columns: repeat(2, 1fr); }
    .wb-info { padding: 16px 18px; }
    .wb-info h3 { font-size: 16px; }
    .wb-price { font-size: 10px; padding: 8px 14px; }
}
@media (max-width: 480px) {
    .wb-grid { grid-template-columns: 1fr; }
    .wb-card { aspect-ratio: 3/4; }
}

/* ===============================================
   BLOCK 4 — PROMISE (guarantee)
   =============================================== */
.promise {
    position: relative;
    padding: 120px 56px;
    background: var(--cream);
    overflow: hidden;
    text-align: center;
}
.promise .liquid-blob { position: absolute; }
.promise .blob-clay { top: -15%; right: -12%; width: 420px; height: 420px; opacity: 0.08; }
.promise-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.promise-eyebrow {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--clay); margin-bottom: 24px; display: block;
}
.promise h2 {
    font-size: clamp(36px, 5vw, 64px); line-height: 1.05;
    letter-spacing: -0.02em; margin-bottom: 24px;
}
.promise h2 em { font-style: italic; color: var(--clay); }
.promise p {
    font-size: 16px; line-height: 1.7; color: #5a4f43;
    max-width: 600px; margin: 0 auto 32px;
}
.promise-mark {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 14px; font-weight: 600; color: var(--sage-deep);
    background: rgba(111,126,92, 0.08);
    padding: 14px 28px; border-radius: 999px;
}
.promise-mark .check {
    display: inline-flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--sage); color: var(--white); font-size: 13px;
}

/* ===============================================
   BLOCK 5 — TRUST (4 reasons)
   =============================================== */
.trust {
    padding: 120px 56px;
    background: var(--off-white);
}
.trust-inner { max-width: 1280px; margin: 0 auto; }
.trust-header { text-align: center; max-width: 700px; margin: 0 auto 72px; }
.trust-header .eyebrow {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--clay-deep); margin-bottom: 20px; display: block;
}
.trust-header h2 {
    font-size: clamp(36px, 5vw, 64px); line-height: 1.05;
    letter-spacing: -0.02em;
}
.trust-header h2 em { font-style: italic; color: var(--clay); }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.trust-card {
    padding: 36px 28px;
    border-right: 1px solid var(--light-gray);
    position: relative;
}
.trust-card:last-child { border-right: none; }
.trust-num {
    font-family: 'Playfair Display', serif;
    font-size: 48px; color: var(--sand); font-weight: 400;
    line-height: 1; margin-bottom: 20px;
}
.trust-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px; line-height: 1.3;
    margin-bottom: 12px; color: var(--black);
}
.trust-card p {
    font-size: 14px; line-height: 1.6; color: #5a4f43;
}

/* ===============================================
   BLOCK 6 — ABOUT
   =============================================== */
.about {
    position: relative;
    padding: 120px 56px;
    background: var(--cream);
    overflow: hidden;
}
.about-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 64px;
    grid-template-areas: "photo head" "photo body";
    align-items: center;
}
.about-text-head { grid-area: head; align-self: end; }
.about-photo {
    grid-area: photo;
    align-self: stretch;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 4/5;
}
.about-text-body { grid-area: body; align-self: start; }
.about-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.about-text-head .eyebrow {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: #9e4a2c; margin-bottom: 20px; display: block;
}
.about-text-head h2 {
    font-size: clamp(32px, 4vw, 52px); line-height: 1.1;
    letter-spacing: -0.02em; margin-bottom: 0;
}
.about-text-head h2 em { font-style: italic; color: var(--clay); }
.about-text-body p {
    font-size: 15px; line-height: 1.7; color: #5a4f43; margin-bottom: 16px;
}
.about-numbers {
    display: flex; gap: 0; margin-top: 36px;
    border-top: 1px solid var(--light-gray);
    padding-top: 28px;
}
.about-num {
    flex: 1;
    padding-right: 20px;
    position: relative;
}
.about-num:not(:last-child)::after {
    content: '';
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 1px; background: var(--light-gray);
}
.about-num strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 32px; color: var(--clay); font-weight: 500;
    margin-bottom: 4px;
}
.about-num span {
    font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: #6e655b;
}

/* ===============================================
   BLOCK 7 — REVIEWS (horizontal scroll)
   =============================================== */
.proof {
    background: var(--black);
    padding: 100px 0 80px;
    overflow: hidden;
}

.proof-header {
    text-align: center;
    padding: 0 24px 48px;
}

.proof-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 500;
    color: var(--cream);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.proof-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(246,241,234, 0.6);
}

.proof-subtitle .stars {
    font-size: 1rem;
    color: #D4A854;
    letter-spacing: 2px;
}

.proof-subtitle .google-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-left: 2px;
}

/* Track container */
.proof-slider {
    position: relative;
}

.proof-slider::before,
.proof-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 64px;
    z-index: 2;
    pointer-events: none;
}
@media (max-width: 768px) {
    .proof-slider::before, .proof-slider::after { display: none; }
}
.proof-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--black), transparent);
}
.proof-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--black), transparent);
}

.proof-track {
    display: flex;
    gap: 16px;
    animation: proof-scroll 60s linear infinite;
    width: max-content;
}

.proof-track:hover {
    animation-play-state: paused;
}

@keyframes proof-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Glass Card --- */
.proof-card--glass {
    flex-shrink: 0;
    width: 340px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    padding: 28px 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.3s ease, background 0.3s;
}
.proof-card--glass:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.10);
}

.proof-card--glass .card-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.proof-card--glass .card-initial {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--cream);
    background: var(--clay);
    border: 1px solid rgba(255,255,255,0.15);
}

.proof-card--glass .card-meta {
    flex: 1;
    min-width: 0;
}

.proof-card--glass .card-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--cream);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.proof-card--glass .card-stars {
    font-size: 0.8rem;
    color: #D4A854;
    letter-spacing: 1px;
}

.proof-card--glass .card-date {
    font-size: 0.75rem;
    color: rgba(246,241,234, 0.62);
    flex-shrink: 0;
}

.proof-card--glass .card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(246,241,234, 0.75);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.proof-card--glass .card-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: rgba(246,241,234, 0.62);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.proof-card--glass .card-footer svg {
    width: 14px;
    height: 14px;
}

.proof-footer-link {
    text-align: center;
    margin-top: 40px;
}

.proof-footer-link a {
    color: rgba(246,241,234, 0.5);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.02em;
}
.proof-footer-link a:hover {
    color: var(--cream);
}

/* ===============================================
   BLOCK 8 — INFO (delivery + hours + tags)
   =============================================== */
.info {
    padding: 72px 56px;
    background: var(--cream);
}
.info-inner { max-width: 1280px; margin: 0 auto; }
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-details-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 28px;
    padding: 36px;
}
.info-details-card h3 {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--clay-deep); font-weight: 600; margin-bottom: 24px;
}
.info-rows { display: flex; flex-direction: column; gap: 10px; }
.info-row {
    font-size: 14px; line-height: 1.6; color: #2c241c;
    padding: 10px 0; border-top: 1px dashed var(--light-gray);
}
.info-row:first-child { border-top: none; padding-top: 0; }
.info-row__label {
    display: inline-block;
    font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--clay-deep); font-weight: 600;
    margin-right: 8px;
}

.info-map {
    border-radius: 28px; overflow: hidden;
    border: 1px solid var(--light-gray);
    min-height: 400px;
}
.info-map iframe {
    display: block; width: 100%; height: 100%; min-height: 400px; border: 0;
}

.info-tags-card {
    grid-column: 1 / -1;
    background: var(--off-white); border: 1px solid var(--light-gray);
    border-radius: 28px; padding: 28px 36px;
    display: flex; flex-direction: column; gap: 12px;
}
.info-tags-row {
    font-size: 13px; line-height: 1.7; color: #2c241c;
    padding: 8px 0; border-top: 1px dashed var(--light-gray);
}
.info-tags-row:first-child { border-top: none; padding-top: 0; }
.info-tags-row__label {
    display: inline-block; min-width: 100px;
    font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--clay-deep); font-weight: 600;
    margin-right: 12px;
}
.info-tags-row a {
    color: #2c241c; text-decoration: none;
    border-bottom: 1px solid transparent; transition: 0.2s;
}
.info-tags-row a:hover { color: var(--clay); border-bottom-color: var(--clay); }

.info-strip {
    grid-column: 1 / -1;
    display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
    padding: 18px 28px; background: var(--off-white);
    border: 1px solid var(--light-gray); border-radius: 999px;
}
.info-strip__hours {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; color: #6b5d4f;
}
.info-strip__hours .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); animation: pulseDot 2s infinite; flex-shrink: 0; }
.info-strip__phone {
    font-family: 'Playfair Display', serif; font-size: 18px;
    color: var(--black); text-decoration: none; white-space: nowrap;
}
.info-strip__phone:hover { color: var(--clay); }

/* ===============================================
   BLOCK 9 — FINAL CTA
   =============================================== */
.final {
    position: relative;
    padding: 80px 56px;
    background: linear-gradient(160deg, var(--clay) 0%, var(--clay-deep) 100%);
    color: var(--white);
    overflow: hidden;
    text-align: center;
}
.final .blob-cream { top: -20%; left: -10%; width: 600px; height: 600px; opacity: 0.12;
    background: radial-gradient(circle at 30% 30%, var(--cream), var(--sand) 70%);
    animation: morphBlob 20s ease-in-out infinite;
}
.final .blob-sage { bottom: -25%; right: -10%; width: 500px; height: 500px; opacity: 0.15; }
.final-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.final-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.final h2 {
    font-size: clamp(48px, 8vw, 120px); line-height: 0.95; letter-spacing: -0.02em;
    margin-bottom: 32px; color: var(--white);
}
.final h2 em { font-style: italic; color: var(--cream); opacity: 0.9; }
.final p { font-size: 18px; line-height: 1.6; max-width: 560px; margin: 0 auto 40px; color: rgba(255,255,255,0.85); }
.final-ctas { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.final .btn-primary { background: var(--white); color: var(--clay-deep); }
.final .btn-primary:hover { background: var(--cream); color: var(--black); }
.final .btn-ghost { color: var(--white); border-color: var(--white); }
.final .btn-ghost:hover { background: var(--white); color: var(--clay-deep); }

/* ===============================================
   FOOTER
   =============================================== */
footer {
    padding: 44px 56px 30px;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.5px;
}
.footer-grid { display: flex; gap: 28px; }
.footer-col { flex: 1; }
.footer-col-brand { flex: 1.2; }
.footer-logo {
    font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 500;
    color: var(--cream); letter-spacing: 2.5px; text-transform: uppercase;
    margin-bottom: 12px;
}
.footer-social { display: flex; gap: 8px; margin-bottom: 12px; }
.footer-social a {
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.35); transition: color 0.2s;
}
.fi--ig:hover { color: #E4405F; }
.fi--fb:hover { color: #1877F2; }
.footer-legal-row { font-size: 12px; color: rgba(255,255,255,0.25); margin-bottom: 8px; }
.footer-legal-row a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-legal-row a:hover { color: rgba(255,255,255,0.6); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.18); }
.footer-location { display: block; margin-top: 4px; font-size: 10px; color: rgba(255,255,255,0.15); }
.footer-tags-label {
    font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: rgba(255,255,255,0.5);
    margin-bottom: 6px; display: block;
}
.footer-link {
    display: block; font-size: 13px; line-height: 1.85; padding: 3px 0;
    color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s;
}
.footer-link:hover { color: rgba(255,255,255,0.7); }
.footer-info { display: block; font-size: 12px; line-height: 1.8; color: rgba(255,255,255,0.55); }
a.footer-info { padding: 3px 0; }
.footer-seo-tags { margin-top: 12px; }
.footer-seo-tags details {
    font-size: 12px; color: rgba(255,255,255,0.25); line-height: 1.7; margin-bottom: 4px;
}
.footer-seo-tags summary {
    font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.62);
    cursor: pointer; list-style: none; display: flex; align-items: center; gap: 4px;
    padding: 6px 0; min-height: 24px;
}
.footer-seo-tags summary::before { content: '+ '; font-size: 10px; opacity: 0.5; }
.footer-seo-tags details[open] summary::before { content: '− '; }

/* ===== RESPONSIVE (remaining blocks) ===== */
@media (max-width: 980px) {
    .promise, .trust, .about, .proof, .info, .final { padding-left: 24px; padding-right: 24px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-card { border-right: none; border-bottom: 1px solid var(--light-gray); }
    .trust-card:nth-child(2n) { border-right: none; }
    .about { padding-top: 64px; padding-bottom: 64px; }
    .about-inner { display: flex; flex-direction: column; gap: 24px; align-items: stretch; }
    .about-text-head, .about-text-body, .about-photo { align-self: stretch; text-align: left; }
    .about-text-head { margin-bottom: 0; }
    .about-text-head h2 { margin-bottom: 0; }
    .about-photo { aspect-ratio: 16/11; }
    .about-text-body p:first-child { margin-top: 0; }
    .about-numbers { flex-wrap: nowrap; gap: 12px; margin-top: 24px; padding-top: 20px; }
    .about-num { flex: 1; padding-right: 12px; }
    .about-num strong { font-size: 26px; }
    .about-num span { font-size: 11px; letter-spacing: 0.5px; }
    .proof { padding-top: 72px; padding-bottom: 56px; }
    .info-grid { grid-template-columns: 1fr; }
    .info-map { order: 1; min-height: 240px; }
    .info-details-card { order: 2; padding: 24px 22px; }
    .info-map iframe { min-height: 240px; }
    .info-row { font-size: 13px; padding: 8px 0; }
    .info-tags-card { padding: 22px 24px; }
    .info-strip { border-radius: 24px; padding: 18px 24px; flex-direction: column; gap: 12px; text-align: center; }
    .footer-grid { flex-wrap: wrap; }
    .footer-col-brand { flex: 1 1 100%; margin-bottom: 8px; }
    .footer-col { flex: 1 1 calc(33% - 22px); }
    footer { padding: 48px 24px 28px; }
}
@media (max-width: 600px) {
    .trust-grid { grid-template-columns: 1fr; }
    footer { padding: 30px 22px 28px; text-align: left; }
    .footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 16px; align-items: start; }
    /* Brand row: logo left, socials right; legal/copy compact below a hairline */
    .footer-col-brand {
        grid-column: 1 / -1; flex: none; margin-bottom: 2px;
        display: grid; grid-template-columns: 1fr auto; align-items: center;
        gap: 2px 12px; padding-bottom: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .footer-logo { font-size: 16px; margin-bottom: 0; }
    .footer-social { justify-content: flex-end; margin-bottom: 0; grid-column: 2; grid-row: 1; }
    .footer-legal-row { grid-column: 1 / -1; margin: 8px 0 0; }
    .footer-copy { grid-column: 1 / -1; }
    .footer-location { grid-column: 1 / -1; margin-top: 2px; }
    .footer-col { flex: none; }
    .footer-col:last-child { grid-column: 1 / -1; }
    .footer-tags-label { margin-bottom: 4px; }
    .footer-link { line-height: 1.75; }
    .final h2 { font-size: clamp(40px, 10vw, 80px); }
}

/* ===== VERSION BADGE ===== */
/* ===== INLINE ORDER WIZARD ===== */
.order-wizard {
    position: relative;
    z-index: 2;
    margin-top: 80px;
    max-width: 648px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
    box-sizing: border-box;
    text-align: center;
}
.order-wizard-header {
    margin-bottom: 28px;
}
.order-wizard-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 34px);
    color: var(--cream);
    margin-bottom: 6px;
}
.order-wizard-header h3 em { font-style: italic; color: var(--clay-light); }
.order-wizard-header p {
    color: var(--warm-gray);
    font-size: 15px;
}

.ow-container {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 24px;
    overflow: hidden;
}
.ow-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}

/* Progress dots */
.ow-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 24px 0;
}
.ow-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
.ow-dot.active {
    background: var(--clay);
    width: 24px;
    border-radius: 4px;
}
.ow-dot.done {
    background: var(--clay-light);
}

/* Steps — auto-height container (grows with content) */
.ow-steps {
    position: relative;
    overflow: hidden;
    min-height: 240px;
}
.ow-step {
    padding: 28px 36px;
    display: none;
    flex-direction: column;
    gap: 16px;
    animation: owStepIn 0.4s cubic-bezier(0.22,1,0.36,1);
    position: absolute;
    inset: 0;
    overflow-y: auto;
    text-align: left;
}
.ow-step.active {
    display: flex;
    position: relative;
}
@keyframes owStepIn {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}
.ow-question {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.5vw, 26px);
    color: var(--cream);
    line-height: 1.3;
    letter-spacing: -0.3px;
}
.ow-hint {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    margin-top: -8px;
}

/* Option pills */
.ow-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ow-opt {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 100px;
    padding: 12px 22px;
    cursor: pointer;
    transition: all 0.18s cubic-bezier(0.22,1,0.36,1);
    -webkit-tap-highlight-color: transparent;
}
.ow-opt:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.25);
}
.ow-opt.selected {
    background: rgba(180,90,60,0.20);
    border-color: var(--clay-light);
    color: rgba(255,255,255,0.92);
}

/* "I trust the florist" — same pill as the others, clay-tinted to stand out */
.ow-opt-trust {
    background: transparent;
    border-color: rgba(209,124,92,0.45);
    color: var(--clay-light);
    font-weight: 500;
}
.ow-opt-trust:hover {
    background: rgba(180,90,60,0.12);
    border-color: var(--clay-light);
    color: var(--cream);
}
.ow-opt-trust.selected {
    background: var(--clay);
    border-color: var(--clay);
    color: #fff;
    font-weight: 600;
}

/* Divider label + expandable flower options */
.ow-opt-more { display: none; }
.ow-options.expanded .ow-opt-more { display: inline-flex; }
@keyframes owPulse {
    0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(180,90,60,0.35); }
    45%  { transform: scale(1.05); box-shadow: 0 0 0 7px rgba(180,90,60,0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(180,90,60,0); }
}
.ow-just-picked { animation: owPulse 0.5s ease; }
.ow-opt-toggle {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 600;
    color: var(--clay-light);
    background: transparent;
    border: none;
    border-radius: 100px;
    padding: 12px 14px;
    cursor: pointer;
    transition: color 0.18s;
    -webkit-tap-highlight-color: transparent;
}
.ow-opt-toggle:hover { color: var(--cream); }

/* "Request sent" badge on the photo step */
.ow-sent-badge {
    align-self: flex-start;
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; font-weight: 600; letter-spacing: 0.3px;
    color: var(--sage);
    background: rgba(111,126,92,0.16);
    border: 1px solid rgba(111,126,92,0.3);
    border-radius: 100px;
    padding: 5px 12px;
}

/* Input fields */
.ow-input {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.92);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    padding: 14px 18px;
    outline: none;
    width: 100%;
    transition: all 0.18s cubic-bezier(0.22,1,0.36,1);
}
.ow-input::placeholder { color: rgba(255,255,255,0.3); }
.ow-input:focus {
    border-color: var(--clay-light);
    background: rgba(180,90,60,0.06);
    box-shadow: 0 0 0 3px rgba(180,90,60,0.12);
}
textarea.ow-input {
    min-height: 80px;
    resize: vertical;
}
.ow-input.ow-error {
    border-color: #d76a4c;
    background: rgba(215,106,76,0.08);
    box-shadow: 0 0 0 3px rgba(215,106,76,0.14);
}
.ow-err {
    margin: -4px 0 0;
    font-size: 13px;
    color: #e08a6e;
}
.ow-err[hidden] { display: none; }
.ow-upload-area {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    background: rgba(255,255,255,0.03);
    border: 2px dashed rgba(255,255,255,0.12);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s;
}
.ow-upload-area:hover {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
}

/* Navigation */
.ow-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 36px 24px;
}
.ow-back {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.3);
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 0;
    transition: color 0.18s;
}
.ow-back:hover { color: rgba(255,255,255,0.65); }
.ow-back svg {
    width: 16px; height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}
.ow-back.hidden { visibility: hidden; }
.ow-next {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: var(--clay);
    border: none;
    border-radius: 100px;
    padding: 12px 28px;
    cursor: pointer;
    transition: all 0.18s cubic-bezier(0.22,1,0.36,1);
}
.ow-next:hover {
    background: var(--clay-light);
    transform: translateY(-1px);
}
.ow-next:active { transform: translateY(0); }

/* Confirmation */
.ow-confirmation {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 36px;
    gap: 16px;
    text-align: center;
}
.ow-confirmation.active { display: flex; }
.ow-confirmation svg { color: var(--clay-light); }
.ow-confirmation h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--cream);
}
.ow-confirmation p {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
}

@media (max-width: 768px) {
    .order-wizard { margin-top: 56px; }
    .ow-step { padding: 22px 18px; gap: 14px; }
    .ow-nav { padding: 0 18px 18px; }
    .ow-steps { min-height: 220px; }
    .ow-question { font-size: 20px; }
    .ow-opt { padding: 11px 18px; font-size: 13px; }
}

/* ===============================================
   PRODUCT DETAIL MODAL — Redesigned
   =============================================== */
.pdm-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(26,22,18,0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.pdm-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.pdm-modal {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    max-width: 920px;
    width: 100%;
    max-height: 88vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
    box-shadow: 0 24px 80px rgba(26,22,18,0.25), 0 0 0 1px rgba(0,0,0,0.04);
}
.pdm-overlay.open .pdm-modal {
    transform: scale(1);
}
.pdm-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--black);
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.pdm-close:hover { background: rgba(255,255,255,0.95); transform: scale(1.08); }

/* Hide sticky header + floating CTA while the product modal is open */
body.pdm-no-scroll .site-header,
body.pdm-no-scroll .mobile-bottom-cta { opacity: 0 !important; pointer-events: none !important; }

/* Left: photo carousel */
.pdm-photo {
    position: relative;
    background: var(--sand);
    overflow: hidden;
    min-width: 0;
}
.pdm-carousel {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.pdm-carousel::-webkit-scrollbar { display: none; }
.pdm-carousel img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    scroll-snap-align: center;
}
.pdm-dots {
    position: absolute;
    bottom: 12px; left: 0; right: 0;
    display: flex; justify-content: center; gap: 6px;
    z-index: 3; pointer-events: none;
}
.pdm-dots:empty { display: none; }
.pdm-dots span {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.55);
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    transition: all 0.25s ease;
}
.pdm-dots span.active { background: #fff; width: 18px; border-radius: 3px; }
.pdm-carousel img { cursor: zoom-in; }

/* Tap a photo → opens the lightbox (see .pdm-lightbox below) */

/* ===== Photo lightbox (popup over the product modal) ===== */
.pdm-lightbox {
    position: fixed; inset: 0; z-index: 9500;
    background: rgba(20,16,12,0.82);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 16px; padding: 56px 24px 24px;
    opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.pdm-lightbox.open { opacity: 1; pointer-events: auto; }
.pdm-lb-stage {
    flex: 1 1 auto; min-height: 0; width: 100%; max-width: 1080px;
    display: flex; align-items: center; justify-content: center;
    touch-action: pan-y;
}
.pdm-lb-img {
    max-width: 100%; max-height: 100%; object-fit: contain;
    border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    user-select: none; -webkit-user-drag: none;
    animation: pdmLbIn 0.25s cubic-bezier(0.22,1,0.36,1);
}
@keyframes pdmLbIn { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }
.pdm-lb-close, .pdm-lb-nav {
    position: absolute; border: none; cursor: pointer; color: #fff;
    background: rgba(255,255,255,0.14); line-height: 1; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, transform 0.15s;
}
.pdm-lb-close { top: 16px; right: 18px; width: 44px; height: 44px; border-radius: 50%; font-size: 22px; }
.pdm-lb-close:hover { background: rgba(255,255,255,0.28); transform: scale(1.08); }
.pdm-lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; font-size: 30px; }
.pdm-lb-nav:hover { background: rgba(255,255,255,0.28); }
.pdm-lb-prev { left: 22px; }
.pdm-lb-next { right: 22px; }
.pdm-lb-nav.hidden { display: none; }
.pdm-lb-thumbs {
    flex: 0 0 auto; display: flex; gap: 10px; justify-content: center;
    flex-wrap: wrap; max-width: 100%;
}
.pdm-lb-thumbs:empty { display: none; }
.pdm-lb-thumb {
    width: 58px; height: 58px; border-radius: 9px; object-fit: cover; cursor: pointer;
    opacity: 0.5; border: 2px solid transparent; transition: opacity 0.2s, border-color 0.2s;
}
.pdm-lb-thumb:hover { opacity: 0.85; }
.pdm-lb-thumb.active { opacity: 1; border-color: #fff; }
@media (max-width: 768px) {
    .pdm-lb-nav { width: 42px; height: 42px; font-size: 24px; }
    .pdm-lb-prev { left: 8px; } .pdm-lb-next { right: 8px; }
    .pdm-lb-thumb { width: 46px; height: 46px; }
}

/* Right: scrollable form + sticky bottom */
.pdm-info {
    display: flex;
    flex-direction: column;
    max-height: 88vh;
    position: relative;
    min-width: 0;
    overflow: hidden;
}
.pdm-info-scroll {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 26px 28px 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    -webkit-overflow-scrolling: touch;
}

/* Product header */
.pdm-name {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--black);
    letter-spacing: -0.3px;
    padding-right: 40px;
    margin-bottom: 4px;
}
.pdm-price {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--clay);
    margin-bottom: 8px;
}
.pdm-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--warm-gray);
    margin-top: -12px;
}

/* Section labels — soft, not screaming */
.pdm-section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin: 0 0 10px;
}

/* Section divider */
.pdm-divider {
    height: 1px;
    background: var(--light-gray);
    margin: 0;
    border: none;
}

/* --- Inputs — softer, more padding --- */
.pdm-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--black);
    background: var(--off-white);
    transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}
.pdm-input:focus {
    border-color: var(--clay);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 3px rgba(180,90,60,0.08);
}
.pdm-input::placeholder { color: var(--warm-gray); }
.pdm-input.has-error { border-color: #d76a4c; box-shadow: 0 0 0 3px rgba(215,106,76,0.12); }
.pdm-err { margin: 8px 0 0; font-size: 13px; line-height: 1.4; color: #c0492b; }
.pdm-err[hidden] { display: none; }
textarea.pdm-input {
    min-height: 72px;
    resize: vertical;
}

/* Inline row (name + phone side-by-side) */
.pdm-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
}
/* Phone with country code prefix */
.pdm-phone {
    display: flex; align-items: stretch;
    border: 1px solid var(--light-gray); border-radius: 12px;
    background: var(--off-white); overflow: hidden;
    transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}
.pdm-phone:focus-within { border-color: var(--clay); background: var(--white); box-shadow: 0 0 0 3px rgba(180,90,60,0.08); }
.pdm-phone.has-error { border-color: #d76a4c; box-shadow: 0 0 0 3px rgba(215,106,76,0.12); }
.pdm-phone-cc {
    display: flex; align-items: center; gap: 4px;
    padding: 0 10px 0 14px; font-size: 14px; color: var(--black);
    white-space: nowrap; border-right: 1px solid var(--light-gray); user-select: none;
}
/* Country-code picker (native select → uses iOS/Android native wheel, no custom dropdown) */
.pdm-cc {
    flex: 0 0 auto; max-width: 96px;
    border: none; border-right: 1px solid var(--light-gray);
    background: transparent; border-radius: 0;
    padding: 0 6px 0 12px; margin: 0;
    font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--black);
    cursor: pointer; -webkit-appearance: menulist; appearance: menulist;
}
.pdm-cc:focus { outline: none; }
.pdm-phone .pdm-input { border: none; background: transparent; border-radius: 0; box-shadow: none; flex: 1; min-width: 0; }
.pdm-phone .pdm-input:focus { box-shadow: none; background: transparent; }

/* --- Pill toggle (replaces radio dots) --- */
.pdm-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: var(--off-white);
    border-radius: 12px;
    padding: 4px;
    border: 1px solid var(--light-gray);
}
.pdm-pill {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 16px;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--warm-gray);
    background: transparent;
    transition: all 0.2s cubic-bezier(0.22,1,0.36,1);
    white-space: nowrap;
}
.pdm-pill:hover { color: var(--black); }
.pdm-pill.selected {
    background: var(--white);
    color: var(--black);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
}
.pdm-pill input { display: none; }

/* Recipient — visually separated from the buyer with a soft divider */
.pdm-recipient { margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--light-gray); }
.pdm-recipient .pdm-section-label { color: var(--clay); }
.pdm-mini-label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--warm-gray); margin: 16px 0 7px; }
/* Inside the flex-gap delivery block the 14px gap already spaces the label — avoid doubling */
.pdm-delivery-fields > .pdm-mini-label { margin-top: 2px; }
.pdm-check { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 13px; color: var(--black); margin-bottom: 12px; user-select: none; }
.pdm-check input { width: 16px; height: 16px; accent-color: var(--clay); cursor: pointer; margin: 0; }
.pdm-recipient.same #pdmRecipFields { display: none; }
/* 3-up pill group (notify preference) — slightly tighter, wraps on very narrow screens */
.pdm-pills-3 .pdm-pill { font-size: 12px; padding: 9px 8px; white-space: normal; line-height: 1.2; text-align: center; min-width: 0; }
.pdm-gift-theme { margin-top: 10px; }
.pdm-gift-theme.hidden { display: none; }
.pdm-gift-preview-wrap { margin-top: 10px; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.pdm-gift-preview { width: 100%; max-width: 240px; border-radius: 12px; border: 1px solid var(--light-gray); display: block; background: var(--off-white); }
.pdm-gift-preview-cap { font-size: 11px; color: var(--warm-gray, #8a7d6e); }
.pdm-date { margin-bottom: 4px; -webkit-appearance: none; appearance: none; }
.pdm-pill.disabled { opacity: 0.38; pointer-events: none; }

/* Select dropdown */
.pdm-select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--black);
    background: var(--off-white);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23A89E92' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}
.pdm-select:focus {
    border-color: var(--clay);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 3px rgba(180,90,60,0.08);
}

/* Delivery fields container — animated */
.pdm-delivery-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    max-height: 500px;
    opacity: 1;
    transition: max-height 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.25s ease, margin 0.35s ease;
}
.pdm-delivery-fields.hidden {
    max-height: 0;
    opacity: 0;
    margin-top: -8px;
    pointer-events: none;
}

/* Combined ZIP + street field (two compartments in one bordered field) */
.pdm-addr-combo {
    display: flex;
    align-items: stretch;
    min-height: 49px; /* match the standard .pdm-input height (was collapsing to ~27px in flex) */
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    background: var(--off-white);
    overflow: hidden;
    transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}
.pdm-addr-combo:focus-within {
    border-color: var(--clay);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(180,90,60,0.08);
}
.pdm-addr-combo.has-error { border-color: var(--clay); }
.pdm-addr-zip, .pdm-addr-street {
    border: none;
    background: transparent;
    outline: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--black);
    padding: 14px 16px;
}
.pdm-addr-zip {
    flex: 0 0 84px;
    width: 84px;
    letter-spacing: 1.5px;
    font-variant-numeric: tabular-nums;
}
.pdm-addr-zip::placeholder { letter-spacing: 1px; }
.pdm-addr-street { flex: 1; min-width: 0; }
.pdm-addr-zip::placeholder, .pdm-addr-street::placeholder { color: var(--warm-gray); }
.pdm-addr-div { flex: 0 0 1px; width: 1px; background: var(--light-gray); margin: 10px 0; }
.pdm-area-status {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 1.3;
    color: var(--warm-gray);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}
.pdm-area-status.show { opacity: 1; transform: none; }
.pdm-area-status .pdm-area-pin {
    flex: 0 0 auto;
    width: 15px; height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-gray);
}
.pdm-area-status .pdm-area-pin svg { width: 14px; height: 14px; }
.pdm-area-status.hint { color: var(--warm-gray); }

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
    .pdm-area-status, .pdm-delivery-fields, .pdm-pickup-card, .pdm-pill, .pdm-input, .pdm-select { transition: none !important; }
}
.pdm-area-status .pdm-area-dot {
    flex: 0 0 auto;
    width: 16px; height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.pdm-area-status .pdm-area-dot svg { width: 9px; height: 9px; }
/* In-area: on-brand clay check, calm text */
.pdm-area-status.ok .pdm-area-dot { background: var(--clay); color: #fff; }
.pdm-area-status.ok b { color: var(--black); font-weight: 600; }
/* Out-of-area: neutral, never alarming */
.pdm-area-status.warn .pdm-area-dot { background: var(--sand); color: var(--clay-deep); }
.pdm-area-status.warn { color: var(--clay-deep); }

/* Pickup note card */
.pdm-pickup-card {
    font-size: 13px;
    color: var(--sage-deep);
    background: rgba(111,126,92,0.06);
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(111,126,92,0.12);
    line-height: 1.5;
    overflow: hidden;
    max-height: 80px;
    opacity: 1;
    transition: max-height 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.25s ease;
}
.pdm-pickup-card.hidden {
    max-height: 0;
    opacity: 0;
    padding: 0 16px;
    border-color: transparent;
    pointer-events: none;
}

/* Gift message toggle */
.pdm-gift-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--clay);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
    transition: color 0.18s;
}
.pdm-gift-toggle:hover { color: var(--clay-deep); }
.pdm-gift-toggle svg {
    width: 14px; height: 14px;
    transition: transform 0.25s cubic-bezier(0.22,1,0.36,1);
}
.pdm-gift-toggle.open svg { transform: rotate(45deg); }

/* Gift message collapsible area */
.pdm-gift-area {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.25s ease, margin 0.3s ease;
    margin-top: 0;
}
.pdm-gift-area.open {
    max-height: 720px; /* greeting theme + card preview + textarea overflowed the old 160px and got clipped */
    opacity: 1;
    margin-top: 10px;
}

/* --- Sticky bottom bar --- */
.pdm-bottom-bar {
    position: sticky;
    bottom: 0;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 5;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.04);
}
.pdm-bottom-summary {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
/* Itemized mini-receipt: bouquet on top, then delivery, then total */
.pdm-receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
    font-size: 12.5px;
    color: var(--warm-gray);
    line-height: 1.3;
}
.pdm-receipt-row .pdm-rv { color: var(--black); font-variant-numeric: tabular-nums; }
.pdm-receipt-row .pdm-rv-free { color: var(--sage-deep); }
.pdm-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
    margin-top: 4px;
    padding-top: 6px;
    border-top: 1px solid var(--light-gray);
}
.pdm-total-row .pdm-total-label {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--warm-gray);
    align-self: center;
}
.pdm-total-value {
    font-family: 'Playfair Display', serif;
    font-size: 23px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}
.pdm-submit {
    flex-shrink: 0;
    padding: 14px 28px;
    border: none;
    border-radius: 999px;
    background: var(--clay);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}
.pdm-submit:hover { background: var(--clay-deep); transform: translateY(-1px); }
.pdm-submit:active { transform: translateY(0); }
.pdm-submit:disabled { opacity: 0.6; cursor: wait; }

/* Body lock */
body.pdm-no-scroll { overflow: hidden; }

/* ===== STICKY HEADER (hidden at top, reveals on scroll) ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9998;
    background: rgba(246,241,234,0.82);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid rgba(26,22,18,0.07);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
}
.site-header.visible {
    transform: translateY(0);
    opacity: 1;
}
.site-header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.site-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    letter-spacing: 0.2px;
    white-space: nowrap;
}
.site-brand em { font-style: italic; color: var(--clay); }
.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.site-nav a {
    position: relative;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: color 0.2s;
    white-space: nowrap;
}
.site-nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -5px;
    width: 0; height: 1.5px;
    background: var(--clay);
    transition: width 0.25s ease;
}
.site-nav a:hover { color: var(--clay); }
.site-nav a:hover::after { width: 100%; }
.site-header-right { display: flex; align-items: center; gap: 18px; }

/* Offset anchor scroll for fixed header */
#bouquets, #delivery, #reviews, #about { scroll-margin-top: 80px; }
.site-header-phone {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}
.site-header-phone:hover { color: var(--clay); }

/* ===== COMPACT LANGUAGE SWITCHER ===== */
/* Cart button — lives in the header, same pill style as the language switch */
.header-cart {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 34px;
    padding: 0 13px;
    border: 1px solid var(--clay);
    border-radius: 999px;
    background: rgba(180,90,60,0.09);
    color: var(--clay);
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
    box-sizing: border-box;
}
.header-cart[hidden] { display: none; }
.header-cart:hover { background: var(--clay); color: #fff; border-color: var(--clay); }
.header-cart svg { width: 17px; height: 17px; }
.header-cart-count { font-variant-numeric: tabular-nums; }
.lang-switch { position: relative; }
.lang-current {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(26,22,18,0.14);
    border-radius: 999px;
    background: transparent;
    color: var(--black);
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
    box-sizing: border-box;
}
.lang-current:hover { border-color: var(--clay); color: var(--clay); }
.lang-current svg {
    width: 10px; height: 10px;
    transition: transform 0.25s ease;
}
.lang-switch.open .lang-current svg { transform: rotate(180deg); }
.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 168px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 6px;
    background: #fff;
    border: 1px solid rgba(26,22,18,0.08);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(26,22,18,0.16), 0 2px 6px rgba(26,22,18,0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transform-origin: top right;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 60;
}
.lang-switch.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-dropdown button {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    padding: 9px 12px;
    border: none;
    border-radius: 9px;
    background: transparent;
    color: var(--black);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    line-height: 1.2;
    white-space: nowrap;
}
.lang-dropdown button:hover { background: var(--sand); color: var(--clay-deep); }
.lang-dropdown button.active {
    background: var(--sand);
    color: var(--clay-deep);
}

/* ===== HAMBURGER + MOBILE MENU ===== */
.nav-toggle { display: none; }
.mobile-menu { display: none; }
@media (max-width: 900px) {
    .site-nav { display: none; }
    .site-header-phone { display: none; }
    .nav-toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        height: 34px;
        padding: 0 13px;
        background: transparent;
        border: 1px solid rgba(26,22,18,0.14);
        border-radius: 999px;
        cursor: pointer;
        transition: border-color 0.2s;
        box-sizing: border-box;
    }
    .nav-toggle:hover { border-color: var(--clay); }
    .nav-toggle span {
        display: block;
        width: 16px; height: 1.6px;
        background: var(--black);
        border-radius: 2px;
        transition: transform 0.25s ease, opacity 0.2s ease;
    }
    .nav-toggle.open span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        padding: 0 22px;
        transition: max-height 0.32s ease, opacity 0.25s ease, padding 0.32s ease;
    }
    .mobile-menu.open {
        max-height: 380px;
        opacity: 1;
        padding: 6px 22px 18px;
        border-top: 1px solid rgba(26,22,18,0.07);
    }
    .mobile-menu a {
        font-family: 'DM Sans', sans-serif;
        font-size: 16px;
        font-weight: 500;
        color: var(--black);
        text-decoration: none;
        padding: 13px 0;
        border-bottom: 1px solid rgba(26,22,18,0.06);
    }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu-phone { color: var(--clay) !important; font-weight: 600 !important; }

    /* On mobile the language switch lives inside the burger menu, not in the header */
    .site-header-right .lang-switch { display: none; }
    .mobile-lang {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding-top: 14px;
        margin-top: 6px;
        border-top: 1px solid rgba(26,22,18,0.06);
    }
    .mobile-lang button {
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        font-weight: 600;
        padding: 9px 16px;
        border: 1px solid rgba(26,22,18,0.14);
        border-radius: 999px;
        background: transparent;
        color: var(--black);
        cursor: pointer;
        transition: border-color 0.2s, background 0.15s, color 0.15s;
    }
    .mobile-lang button:hover { border-color: var(--clay); }
    .mobile-lang button.active { background: var(--clay); border-color: var(--clay); color: #fff; }
}
@media (max-width: 640px) {
    .site-header-inner { padding: 12px 20px; }
    .site-brand { font-size: 16px; }
    .site-header-right { gap: 10px; }
    .header-cart { padding: 0 11px; gap: 5px; }
}

/* ===== MOBILE BOTTOM CTA (reveals on scroll like the header) ===== */
.mobile-bottom-cta { display: none; }
@media (max-width: 768px) {
    .mobile-bottom-cta {
        display: block;
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 8000;
        padding: 0 16px;
        padding-bottom: max(14px, env(safe-area-inset-bottom));
        background: transparent;
        pointer-events: none;
        transform: translateY(160%);
        transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
    }
    .mobile-bottom-cta.visible { transform: translateY(0); }
    .mobile-bottom-cta a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        pointer-events: auto;
        padding: 16px;
        border-radius: 999px;
        background: var(--clay);
        color: var(--white);
        font-family: 'DM Sans', sans-serif;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.3px;
        text-decoration: none;
        box-shadow: 0 8px 28px rgba(26,22,18,0.28), 0 2px 8px rgba(180,90,60,0.4);
    }
    .mobile-bottom-cta a:active { background: var(--clay-deep); }
}

/* ---- Mobile bottom-sheet ---- */
@media (max-width: 768px) {
    .pdm-overlay { padding: 0; align-items: flex-end; }
    .pdm-modal {
        display: flex;
        flex-direction: column;
        height: 92vh;
        height: 92dvh;
        max-height: 92dvh;
        border-radius: 20px 20px 0 0;
        max-width: 100%;
    }
    .pdm-photo {
        flex: 0 0 30vh;
        aspect-ratio: auto;
        height: 30vh;
        width: 100%;
    }
    .pdm-info {
        flex: 1 1 auto;
        min-height: 0;
        max-height: none;
    }
    .pdm-info-scroll {
        padding: 20px 18px 14px;
        gap: 16px;
    }
    .pdm-head-row {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 12px;
    }
    .pdm-name { font-size: 20px; padding-right: 0; margin-bottom: 0; flex: 1; }
    .pdm-price { font-size: 20px; margin-bottom: 0; white-space: nowrap; flex-shrink: 0; }
    .pdm-desc { margin-top: 8px; }
    .pdm-section-label { margin-bottom: 8px; }
    .pdm-input { padding: 11px 14px; }
    .pdm-row { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 8px; }
    .pdm-pills { flex-direction: row; }
    .pdm-pill { padding: 10px 12px; font-size: 12px; }
    .pdm-bottom-bar {
        padding: 14px 20px;
        padding-bottom: max(14px, env(safe-area-inset-bottom));
    }
    .pdm-total-value { font-size: 20px; }
    .pdm-submit { padding: 12px 22px; font-size: 13px; }
}



.cart-overlay {
    position: fixed; inset: 0; z-index: 10000; background: rgba(18,14,14,0.5);
    -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-panel {
    position: absolute; top: 0; right: 0; height: 100%; width: 440px; max-width: 92vw;
    background: var(--off-white, #f6f1ea); display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform .3s cubic-bezier(0.32,0.72,0,1);
    box-shadow: -14px 0 44px rgba(0,0,0,0.2);
}
.cart-overlay.open .cart-panel { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--light-gray); }
.cart-head h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; margin: 0; color: var(--black); }
.cart-close { border: none; background: none; font-size: 28px; line-height: 1; color: var(--warm-gray); cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 14px 22px; -webkit-overflow-scrolling: touch; }
.cart-empty { text-align: center; color: var(--warm-gray); padding: 50px 10px; }
.cart-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px dashed var(--light-gray); align-items: center; position: relative; }
.cart-item-img { width: 64px; height: 64px; border-radius: 10px; background: var(--sand) center/cover no-repeat; flex: 0 0 auto; }
.cart-item-body { flex: 1; min-width: 0; padding-right: 26px; }
.cart-item-name { font-weight: 600; color: var(--black); font-size: 14px; }
.cart-item-meta { font-size: 12px; color: var(--warm-gray); line-height: 1.5; margin-top: 3px; }
.cart-item-price { font-weight: 700; color: var(--clay); font-size: 14px; white-space: nowrap; margin-top: 4px; }
.cart-item-remove { border: none; background: none; color: var(--warm-gray); cursor: pointer; font-size: 12px; text-decoration: underline; padding: 4px 0 0; }
.cart-item-x { position: absolute; top: 50%; right: -2px; transform: translateY(-50%); border: none; background: none; font-size: 24px; line-height: 1; color: var(--warm-gray); cursor: pointer; padding: 4px 6px; transition: color .15s; }
.cart-item-x:hover { color: #c0492b; }
.cart-back { border: none; background: none; color: var(--clay); cursor: pointer; font-size: 13px; font-weight: 600; padding: 0 0 12px; }
.cart-back:hover { text-decoration: underline; }
.cart-foot { border-top: 1px solid var(--light-gray); padding: 16px 22px calc(18px + env(safe-area-inset-bottom)); background: #fff; }
.cart-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--black); margin-bottom: 6px; }
.cart-row.total { font-weight: 700; font-size: 17px; margin-top: 8px; }
.cart-foot .pdm-input { margin-bottom: 8px; }
.cart-pay { width: 100%; padding: 15px; background: var(--clay); color: #fff; border: none; border-radius: 100px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; font-size: 13px; cursor: pointer; margin-top: 8px; }
.cart-pay:hover { background: var(--clay-deep); }
.cart-pay:disabled { opacity: .6; cursor: wait; }
.cart-err { color: #c0492b; font-size: 13px; margin: 4px 0 0; }
@media (max-width: 600px) { .cart-panel { width: 100%; max-width: 100%; } }
/* Cart mode: hide the buyer section in the product modal */
#pdmOverlay.pdm-cart-mode #pdmBuyerSection, #pdmOverlay.pdm-cart-mode #pdmBuyerDivider { display: none; }

/* ===== Tip selector (shared: product modal + cart) ===== */
.uwf-tip { margin-top: 16px; }
.uwf-tip-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 8px; }
.uwf-tip-pill {
    flex: 1 1 auto; min-width: 54px; padding: 9px 10px; border-radius: 100px;
    border: 1.5px solid var(--light-gray, #e3dad0); background: #fff; color: var(--black);
    font-size: 13px; font-weight: 600; cursor: pointer; transition: all .18s;
}
.uwf-tip-pill:hover { border-color: var(--clay); }
.uwf-tip-pill.selected { background: var(--clay); border-color: var(--clay); color: #fff; }
.uwf-tip-custom { margin-top: 8px; }
.hidden { display: none !important; }

/* ===== Cart per-item editor ===== */
.cart-item-edit-btn {
    border: none; background: none; color: var(--clay); cursor: pointer;
    font-size: 12px; text-decoration: underline; padding: 4px 10px 0 0;
}
.cart-item-edit-btn.need { color: #c0492b; font-weight: 600; }
.cart-item-img.cart-item-open, .cart-item-name.cart-item-open { cursor: pointer; transition: opacity .15s, color .15s; }
.cart-item-img.cart-item-open:hover { opacity: .85; }
.cart-item-name.cart-item-open:hover { color: var(--clay); }
.cart-item-confirm { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 8px; padding-top: 4px; }
.cart-item-confirm-q { font-size: 12px; font-weight: 600; color: var(--black); }
.cart-item-remove-yes, .cart-item-remove-cancel {
    border: 1px solid; border-radius: 999px; background: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700; padding: 4px 11px; line-height: 1;
}
.cart-item-remove-yes { border-color: #c0492b; color: #c0492b; }
.cart-item-remove-yes:hover { background: #c0492b; color: #fff; }
.cart-item-remove-cancel { border-color: var(--light-gray); color: var(--warm-gray); }
.cart-item-remove-cancel:hover { border-color: var(--warm-gray); }
.cart-item-editor { margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--light-gray); display: none; }
.cart-item.editing .cart-item-editor { display: block; }
.cart-item-editor .pdm-pills { margin-bottom: 8px; }
.cart-item-editor .pdm-input { margin-bottom: 8px; }
.cart-item-editor .pdm-mini-label { font-size: 12px; color: var(--warm-gray); margin: 2px 0 4px; }
.cart-edit-addr { display: flex; gap: 6px; }
.cart-edit-addr .pdm-input { flex: 1; }
.cart-edit-addr .cart-edit-zip { flex: 0 0 78px; }
.cart-item-editor .pdm-pill { font-size: 12px; padding: 8px 6px; }
.cart-editor-done {
    width: 100%; padding: 10px; margin-top: 4px; border: none; border-radius: 100px;
    background: var(--black, #2a221c); color: #fff; font-weight: 600; font-size: 12px; cursor: pointer;
}
.cart-item-full { display: block; }
.cart-item-full .cart-item-top { display: flex; gap: 12px; }
.cart-buyer-label { font-size: 12px; font-weight: 600; color: var(--warm-gray); margin: 14px 0 6px; text-transform: uppercase; letter-spacing: .4px; }

/* ===== Checkout form — uniform vertical rhythm (no touching/overlapping fields) ===== */
.cart-co .pdm-input,
.cart-co .pdm-phone,
.cart-co .pdm-pills,
.cart-co .cart-edit-addr,
.cart-co #coGiftTheme { margin: 0 0 10px; }
.cart-co .cart-edit-addr .pdm-input { margin-bottom: 0; }
.cart-co .cart-buyer-label { margin: 18px 0 8px; }
.cart-co .cart-back + .cart-buyer-label { margin-top: 2px; }
.cart-co .pdm-mini-label { margin: 14px 0 7px; }
.cart-co .uwf-tip { margin-top: 4px; }
.cart-co .uwf-tip .cart-buyer-label { margin-top: 0; }

/* ===== Fly-to-cart animation ===== */
.uwf-fly {
    position: fixed; z-index: 11000; border-radius: 12px;
    background-size: cover; background-position: center; pointer-events: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    transition: transform .7s cubic-bezier(.5,-0.3,.4,1.2), opacity .7s ease, width .7s, height .7s;
}
.header-cart.bump { animation: cartBump .4s ease; }
@keyframes cartBump { 0%,100% { transform: scale(1); } 35% { transform: scale(1.28); } }
