/**
 * GPC Enchanted Menu — watercolour theme
 * Class prefix: gpe-  (never collides with the original plugin's gpc- styles)
 */

/* ── Licensed brand fonts ─────────────────────────────────────────────
   When webfont licences are purchased, drop the files into assets/fonts/
   with these names and uncomment — the menu picks them up automatically
   (they are already first in the --gpe-dish-font / --gpe-desc-font stacks).

@font-face {
    font-family: 'Interstate';
    src: url('../fonts/Interstate-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Mrs Eaves XL Serif';
    src: url('../fonts/MrsEavesXLSerif-RegItalic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
──────────────────────────────────────────────────────────────────────── */

:root {
    --gpe-paper:    #fafafa;
    --gpe-card:     #ffffff;
    --gpe-ink:      #3a4440;
    --gpe-primary:  #1a3c34;
    --gpe-gold:     #b98a2e;
    --gpe-rose:     #cd6f57;   /* coral — accent (name kept for compatibility) */
    --gpe-lav:      #93ad7c;   /* leaf */
    --gpe-sage:     #93ac89;
    --gpe-sky:      #93ad7c;
    --gpe-heading:  'Playfair Display', serif;
    --gpe-body:     'Cormorant Garamond', serif;
    --gpe-script:   'Parisienne', cursive;
    /* Brand fonts — licensed faces first, free lookalikes as fallback */
    --gpe-dish-font: 'Interstate', 'Overpass', 'Helvetica Neue', sans-serif;
    --gpe-desc-font: 'Mrs Eaves XL Serif', 'Libre Baskerville', Baskerville, serif;
}

/* ================= Page / wrapper ================= */

.gpe-wrapper {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 5rem;
    font-family: var(--gpe-body);
    font-size: 1.12rem;
    color: var(--gpe-ink);
    line-height: 1.55;
}

/* paper grain on the embed body (and any theme page carrying the shortcode) */
.gpe-embed-body,
body.gpe-page {
    background-color: var(--gpe-paper);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.5 0 0 0 0 0.5 0 0 0 0.025 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
    overflow-x: hidden;
}

/* Big soft ambient washes pinned to the viewport corners */
.gpe-wash {
    position: fixed;
    width: 55vmax;
    height: 55vmax;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}
.gpe-wash--tl {
    top: -25vmax;
    left: -20vmax;
    background: radial-gradient(circle at 60% 60%, rgba(225,138,114,0.16), rgba(147,173,124,0.1) 55%, transparent 75%);
}
.gpe-wash--br {
    bottom: -28vmax;
    right: -22vmax;
    background: radial-gradient(circle at 40% 40%, rgba(147,173,124,0.15), rgba(225,138,114,0.08) 55%, transparent 75%);
}

/* Let the paper show through common theme content containers on the
   enchanted page only (body.gpe-page is added by JS when the menu is present) */
body.gpe-page #main,
body.gpe-page #content,
body.gpe-page .site-content,
body.gpe-page .page-content,
body.gpe-page .entry-content {
    background: transparent !important;
}

/* Butterfly / petal canvas overlay */
#gpe-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 40;
}

.gpe-wrapper > *:not(.gpe-wash):not(#gpe-canvas):not(.gpe-popup-overlay):not(.gpe-garden) {
    position: relative;
    z-index: 1;
}

/* ================= The garden ================= */

.gpe-garden {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.gpe-bloom { overflow: visible; }
.gpe-bloom-petal {
    transform-box: view-box;
    transform-origin: 60px 60px;
    transform: rotate(var(--a));
    opacity: 0.85;
    mix-blend-mode: multiply;   /* overlapping petals pool like wet pigment */
    animation: gpe-bloom-cycle var(--dur, 14s) cubic-bezier(0.45, 0.05, 0.35, 1) infinite alternate;
    animation-delay: calc(var(--delay, 0s) + var(--i, 0) * -0.65s);
}
@keyframes gpe-bloom-cycle {
    0% {
        transform: rotate(calc(var(--a) - 14deg)) scale(0.12);
        opacity: 0.3;
    }
    35% { opacity: 0.75; }
    100% {
        transform: rotate(var(--a)) scale(1);
        opacity: 0.9;
    }
}
.gpe-bloom-core {
    transform-box: view-box;
    transform-origin: 60px 60px;
    animation: gpe-core-cycle var(--dur, 14s) cubic-bezier(0.45, 0.05, 0.35, 1) infinite alternate;
    animation-delay: var(--delay, 0s);
}
@keyframes gpe-core-cycle {
    0%   { transform: scale(0.45); opacity: 0.5; }
    100% { transform: scale(1);    opacity: 1; }
}

/* Three oversized blooms, cropped by the viewport — composition, not pattern */
.gpe-garden-bloom {
    position: absolute;
    animation: gpe-sway var(--dur, 18s) ease-in-out infinite alternate;
    transform-origin: 50% 110%;
}
.gpe-garden-bloom--1 { width: 540px; height: 540px; top: -190px; right: -230px; opacity: 0.5; }
.gpe-garden-bloom--2 { width: 640px; height: 640px; top: 30%;    left: -300px;  opacity: 0.42; }
.gpe-garden-bloom--3 { width: 460px; height: 460px; top: 68%;    right: -190px; opacity: 0.48; }

/* Planting beds: clusters of stems, flowers, seed-heads and grasses
   growing up the page margins */
.gpe-cluster {
    position: absolute;
    animation: gpe-cluster-sway var(--dur, 9s) ease-in-out infinite alternate;
    animation-delay: var(--delay, 0s);
    transform-origin: 50% 100%;
}
@keyframes gpe-cluster-sway {
    from { transform: rotate(-1.3deg); }
    to   { transform: rotate(1.6deg); }
}
.gpe-cluster--1 { width: 180px; height: 198px; top: 4%;  left: -45px; }
.gpe-cluster--2 { width: 210px; height: 231px; top: 12%; right: -55px; }
.gpe-cluster--3 { width: 190px; height: 209px; top: 46%; left: -50px; }
.gpe-cluster--4 { width: 175px; height: 193px; top: 40%; right: -45px; }
.gpe-cluster--5 { width: 205px; height: 226px; top: 63%; left: -40px; }
.gpe-cluster--6 { width: 185px; height: 204px; top: 80%; right: -60px; }
.gpe-cluster--7 { width: 170px; height: 187px; top: 92%; left: -55px; }

/* Vines trailing down the edges between beds */
.gpe-vine { position: absolute; opacity: 0.85; }
.gpe-vine--l { width: 74px; height: 575px; left: 6px;  top: 22%; }
.gpe-vine--r { width: 74px; height: 575px; right: 6px; top: 56%; }

/* Hand-drawn ink swash under each course title */
.gpe-swash {
    display: block;
    width: 190px;
    height: 24px;
    margin: 0.4rem auto 0;
    opacity: 0.75;
}

/* ================= Hero ================= */

.gpe-hero {
    text-align: center;
    padding: 1.5rem 0 0.5rem;
    position: relative;
}

.gpe-tagline {
    font-family: var(--gpe-script);
    font-size: 1.9rem;
    color: var(--gpe-gold);
    margin: 0 0 0.2rem;
}
.gpe-main-title {
    font-family: var(--gpe-heading);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 600;
    color: var(--gpe-primary);
    margin: 0 0 0.6rem;
    letter-spacing: 0.5px;
}
@keyframes gpe-sway {
    0%, 100% { transform: rotate(-3deg); }
    50%      { transform: rotate(3.5deg); }
}

/* ================= Switcher ================= */

.gpe-switcher {
    text-align: center;
    margin: 1.5rem auto 0.5rem;
    max-width: 380px;
}
.gpe-switcher-label {
    display: block;
    font-family: var(--gpe-script);
    font-size: 1.5rem;
    color: var(--gpe-primary);
    margin-bottom: 0.4rem;
}
.gpe-select-wrap {
    position: relative;
}
.gpe-select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 0.75rem 2.6rem 0.75rem 1.2rem;
    font-family: var(--gpe-heading);
    font-size: 1.05rem;
    color: var(--gpe-primary);
    background: var(--gpe-card);
    border: 1.5px solid rgba(26, 60, 52, 0.25);
    border-radius: 18px 22px 16px 24px / 22px 16px 24px 18px;
    box-shadow: 0 3px 14px rgba(90, 70, 50, 0.08);
    cursor: pointer;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.gpe-select:hover,
.gpe-select:focus {
    box-shadow: 0 6px 20px rgba(90, 70, 50, 0.14);
    outline: none;
    transform: translateY(-1px);
}
.gpe-select-chevron {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gpe-gold);
    pointer-events: none;
}

/* ================= Filters ================= */

.gpe-filter-section {
    max-width: 760px;
    margin: 1.4rem auto 2.2rem;
}
.gpe-filter-toggle {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 auto;
    padding: 0.65rem 1.5rem;
    font-family: var(--gpe-heading);
    font-size: 1rem;
    color: var(--gpe-primary);
    background: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(26, 60, 52, 0.22);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.gpe-filter-toggle:hover {
    border-color: var(--gpe-gold);
    box-shadow: 0 4px 16px rgba(185, 138, 46, 0.15);
}
.gpe-filter-count {
    background: var(--gpe-rose);
    color: #fff;
    font-family: var(--gpe-body);
    font-weight: 600;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}
.gpe-filter-chevron { transition: transform 0.25s ease; display: inline-flex; }
.gpe-filter-toggle[aria-expanded="true"] .gpe-filter-chevron { transform: rotate(180deg); }

.gpe-filter-panel {
    margin-top: 1rem;
    padding: 1.4rem 1.6rem 1.6rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1.5px solid rgba(26, 60, 52, 0.14);
    border-radius: 22px 28px 20px 30px / 28px 20px 30px 22px;
    box-shadow: 0 8px 30px rgba(90, 70, 50, 0.1);
}
.gpe-filter-desc {
    text-align: center;
    font-style: italic;
    margin: 0 0 1rem;
    color: rgba(58, 68, 64, 0.85);
}
.gpe-filter-group { margin-bottom: 1rem; }
.gpe-filter-group:last-of-type { margin-bottom: 0.4rem; }
.gpe-filter-group-label {
    display: block;
    font-family: var(--gpe-script);
    font-size: 1.4rem;
    color: var(--gpe-gold);
    margin-bottom: 0.5rem;
}
.gpe-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.gpe-pill-label { cursor: pointer; }
.gpe-pill-label input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.gpe-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    font-family: var(--gpe-heading);
    font-size: 0.92rem;
    color: var(--gpe-ink);
    background: color-mix(in srgb, var(--pill-color, #ccc) 14%, #fffdf8);
    border: 1.5px solid color-mix(in srgb, var(--pill-color, #ccc) 45%, transparent);
    border-radius: 16px 20px 14px 22px / 20px 14px 22px 16px;
    transition: all 0.22s ease;
}
.gpe-pill-label:hover .gpe-pill {
    transform: translateY(-2px) rotate(-0.5deg);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--pill-color, #ccc) 30%, transparent);
}
.gpe-pill-label input:checked + .gpe-pill {
    background: color-mix(in srgb, var(--pill-color, #ccc) 45%, #fffdf8);
    border-color: var(--pill-color, #ccc);
    box-shadow: 0 3px 12px color-mix(in srgb, var(--pill-color, #ccc) 40%, transparent);
    animation: gpe-pill-pop 0.35s ease;
}
@keyframes gpe-pill-pop {
    0%   { transform: scale(1); }
    45%  { transform: scale(1.12) rotate(1.5deg); }
    100% { transform: scale(1); }
}
.gpe-filter-clear {
    display: block;
    margin: 1rem auto 0;
    padding: 0.45rem 1.3rem;
    font-family: var(--gpe-heading);
    font-size: 0.9rem;
    color: #fff;
    background: var(--gpe-primary);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.22s ease;
}
.gpe-filter-clear:hover { background: #245248; transform: translateY(-1px); }

/* ================= Menu block / header ================= */

.gpe-menu-block { animation: gpe-fade-in 0.5s ease; }
@keyframes gpe-fade-in {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
}

.gpe-menu-header { text-align: center; margin: 1.2rem 0 0.8rem; }
.gpe-menu-title {
    font-family: var(--gpe-heading);
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    font-weight: 600;
    color: var(--gpe-primary);
    margin: 0;
}
.gpe-menu-subtitle {
    font-style: italic;
    color: rgba(58, 68, 64, 0.8);
    margin: 0.4rem auto 0;
    max-width: 620px;
}

/* ================= Course nav ================= */

.gpe-course-nav {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(250, 250, 250, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(26, 60, 52, 0.1);
    margin: 1rem -1.25rem 1.6rem;
    padding: 0 1.25rem;
}
.gpe-course-nav-inner {
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: safe center;
}
.gpe-course-nav-inner::-webkit-scrollbar { display: none; }
.gpe-nav-link {
    position: relative;
    flex: 0 0 auto;
    padding: 0.8rem 1.1rem;
    font-family: var(--gpe-heading);
    font-size: 0.98rem;
    color: rgba(26, 60, 52, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}
.gpe-nav-link:hover { color: var(--gpe-primary); }
.gpe-nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gpe-rose);
    transform: translateX(-50%) scale(0);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gpe-nav-link.active { color: var(--gpe-primary); font-weight: 600; }
.gpe-nav-link.active::after { transform: translateX(-50%) scale(1); }

/* ================= Course sections ================= */

.gpe-course-section { margin-bottom: 3rem; scroll-margin-top: 90px; }
.gpe-course-heading { text-align: center; margin-bottom: 1.6rem; padding: 1.4rem 0; }
.gpe-course-title {
    font-family: var(--gpe-heading);
    font-size: clamp(1.5rem, 3.4vw, 2rem);
    font-weight: 600;
    color: var(--gpe-primary);
    margin: 0;
}
.gpe-course-desc {
    font-style: italic;
    color: rgba(58, 68, 64, 0.8);
    margin: 0.35rem auto 0;
    max-width: 560px;
}

.gpe-course-empty-msg {
    display: none;
    text-align: center;
    font-style: italic;
    color: rgba(58, 68, 64, 0.65);
}
.gpe-course-empty .gpe-course-empty-msg { display: block; }
.gpe-course-empty .gpe-items-grid { display: none; }

/* ================= Cards ================= */

.gpe-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.2rem;
}

.gpe-card {
    position: relative;
    padding: 1.15rem 1.25rem 1.1rem;
    background: var(--gpe-card);
    border: 1px solid rgba(26, 60, 52, 0.1);
    border-radius: 16px 22px 14px 24px / 22px 14px 24px 16px;
    box-shadow: 0 3px 14px rgba(90, 70, 50, 0.07);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    overflow: hidden;
}
/* watercolour wash that blooms on hover */
.gpe-card::before {
    content: '';
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle at 18% 12%, rgba(225, 138, 114, 0.14), transparent 42%),
        radial-gradient(circle at 85% 90%, rgba(147, 173, 124, 0.13), transparent 45%);
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.45s ease, transform 0.6s ease;
    pointer-events: none;
}
.gpe-card:hover {
    transform: translateY(-4px) rotate(-0.35deg);
    box-shadow: 0 10px 26px rgba(90, 70, 50, 0.13);
}
.gpe-card:hover::before { opacity: 1; transform: scale(1); }
.gpe-card > * { position: relative; }

.gpe-card-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.8rem;
}
.gpe-card-title-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
    flex-wrap: wrap;
}
.gpe-card-title {
    font-family: var(--gpe-dish-font);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--gpe-primary);
    margin: 0;
}
.gpe-card-badges { display: inline-flex; gap: 0.25rem; }
.gpe-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 4px;
    border-radius: 50%;
    color: #fff;
    font-family: var(--gpe-body);
    font-weight: 600;
    font-size: 0.68rem;
}
.gpe-card-price {
    font-family: var(--gpe-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gpe-gold);
    white-space: nowrap;
}
.gpe-card-desc {
    font-family: var(--gpe-desc-font);
    font-style: italic;
    font-weight: 400;
    margin: 0.45rem 0 0;
    color: rgba(58, 68, 64, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.gpe-card-info-btn {
    margin-top: 0.6rem;
    padding: 0;
    background: none;
    border: none;
    font-family: var(--gpe-script);
    font-size: 1.15rem;
    color: var(--gpe-gold);
    cursor: pointer;
    border-bottom: 1px dotted rgba(185, 138, 46, 0.6);
    transition: color 0.2s ease;
}
.gpe-card-info-btn:hover { color: #96700f; }
.gpe-card-info { margin-top: 0.7rem; animation: gpe-fade-in 0.3s ease; }

.gpe-card-taglist {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.4rem;
}
.gpe-card-taglist-label {
    font-family: var(--gpe-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(26, 60, 52, 0.75);
}
.gpe-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    padding: 0.18rem 0.55rem;
    font-size: 0.85rem;
    background: color-mix(in srgb, var(--tag-color, #ccc) 14%, #fffdf8);
    border: 1px solid color-mix(in srgb, var(--tag-color, #ccc) 40%, transparent);
    border-radius: 12px 15px 11px 16px / 15px 11px 16px 12px;
}
.gpe-card-options { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.gpe-card-option-tag {
    padding: 0.18rem 0.6rem;
    font-size: 0.85rem;
    font-style: italic;
    color: #4c6b45;
    background: rgba(147, 172, 137, 0.16);
    border: 1px dashed rgba(147, 172, 137, 0.6);
    border-radius: 12px 15px 11px 16px / 15px 11px 16px 12px;
}

/* Filtering states */
.gpe-filtered-out { display: none; }
.gpe-has-option {
    border-color: rgba(147, 172, 137, 0.75);
    box-shadow: 0 3px 16px rgba(147, 172, 137, 0.25);
}
.gpe-card-mod-msg {
    margin-top: 0.65rem;
    padding: 0.5rem 0.8rem;
    font-size: 0.95rem;
    font-style: italic;
    color: #44603d;
    background: rgba(147, 172, 137, 0.14);
    border-left: 3px solid var(--gpe-sage);
    border-radius: 0 12px 12px 0;
}

/* ================= Footer ================= */

.gpe-menu-footer { text-align: center; margin-top: 2rem; }
.gpe-footer-text {
    font-style: italic;
    color: rgba(58, 68, 64, 0.8);
    margin: 0.3rem 0 0;
}

/* ================= Popup ================= */

.gpe-popup-overlay {
    position: fixed !important;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    background: rgba(46, 56, 52, 0.45);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.gpe-popup {
    position: relative;
    max-width: 480px;
    padding: 2.2rem 2rem 1.8rem;
    text-align: center;
    background: var(--gpe-paper);
    border-radius: 24px 30px 22px 32px / 30px 22px 32px 24px;
    box-shadow: 0 20px 60px rgba(30, 30, 30, 0.35);
    animation: gpe-fade-in 0.45s ease;
}
.gpe-popup-butterfly {
    position: absolute;
    top: -34px;
    right: 14px;
    width: 84px;
    height: 68px;
    animation: gpe-sway 5s ease-in-out infinite;
}
.gpe-popup-title {
    font-family: var(--gpe-heading);
    font-size: 1.6rem;
    color: var(--gpe-primary);
    margin: 0 0 0.7rem;
}
.gpe-popup-text { margin: 0 0 0.8rem; }
.gpe-popup-important {
    font-size: 0.98rem;
    padding: 0.6rem 0.9rem;
    background: rgba(225, 138, 114, 0.12);
    border-left: 3px solid var(--gpe-rose);
    border-radius: 0 12px 12px 0;
    text-align: left;
    margin: 0 0 1.1rem;
}
.gpe-popup-btn {
    padding: 0.6rem 2.2rem;
    font-family: var(--gpe-heading);
    font-size: 1rem;
    color: #fff;
    background: var(--gpe-primary);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.22s ease;
}
.gpe-popup-btn:hover { background: #245248; transform: translateY(-1px); }

/* ================= Small screens ================= */

@media (max-width: 640px) {
    .gpe-items-grid { grid-template-columns: 1fr; }
    .gpe-wash { opacity: 0.4; }
    .gpe-garden-bloom--1 { width: 340px; height: 340px; top: -130px; right: -160px; opacity: 0.4; }
    .gpe-garden-bloom--2 { width: 400px; height: 400px; left: -220px; opacity: 0.32; }
    .gpe-garden-bloom--3 { width: 300px; height: 300px; right: -150px; opacity: 0.38; }
    .gpe-swash { width: 150px; }
    .gpe-cluster { transform: scale(0.62); transform-origin: 50% 100%; animation: none; }
    .gpe-cluster--2, .gpe-cluster--4, .gpe-cluster--7 { display: none; }
    .gpe-vine { display: none; }
}

/* ================= Reduced motion ================= */

@media (prefers-reduced-motion: reduce) {
    .gpe-popup-butterfly { animation: none; }
    .gpe-bloom-petal,
    .gpe-bloom-core { animation: none; }   /* petals rest fully open */
    .gpe-card,
    .gpe-pill,
    .gpe-select { transition: none; }
    .gpe-menu-block { animation: none; }
    #gpe-canvas { display: none; }
}
