/* =============================================
   FluffyFlowers — Stylesheet
   Design: forest green + blush, Playfair + Inter
   ============================================= */

/* ---------- TOKENS ---------- */
:root {
    --green-deep: #1a3d2b;
    --green-mid: #2d6246;
    --green-light: #7a9e82;
    --green-mist: #e8f0ea;
    --blush: #f9f0f3;
    --rose: #c97b8a;
    --rose-dark: #a85e6d;
    --rose-light: #f2d5db;
    --white: #ffffff;
    --ink: #1c1c1c;
    --ink-soft: #4a4a4a;
    --ink-muted: #8a8a8a;
    --border: #e0dfe0;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 999px;

    --shadow-card: 0 2px 16px rgba(26, 61, 43, 0.08);
    --shadow-hover: 0 8px 32px rgba(26, 61, 43, 0.14);
    --shadow-modal: 0 20px 60px rgba(0, 0, 0, 0.22);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --transition: 200ms ease;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--blush);
    color: var(--ink);
    line-height: 1.6;
    font-size: 16px;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ---------- TYPOGRAPHY ---------- */
h1,
h2,
h3 {
    font-family: var(--font-display);
    line-height: 1.2;
}

/* ---------- HEADER ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--green-deep);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.header-nav {
    display: flex;
    gap: 1.75rem;
    margin-left: auto;
}

.header-nav a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}

.header-nav a:hover {
    color: var(--white);
}

.cart-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--rose);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    transition: background var(--transition), transform var(--transition);
    margin-left: 0.5rem;
}

.cart-toggle i {
    font-size: 1rem;
    display: block;
}

.cart-toggle:hover {
    background: var(--rose-dark);
    transform: scale(1.04);
}

.cart-count {
    background: var(--white);
    color: var(--rose-dark);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    transition: transform var(--transition);
}

.cart-count.bump {
    transform: scale(1.4);
}

/* ---------- HERO ---------- */
.hero {
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
    padding: 5rem 2rem 4rem;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(201, 123, 138, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--green-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: var(--white);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.hero-title em {
    color: var(--rose-light);
    font-style: italic;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    max-width: 44ch;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bloom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    font-size: 3.2rem;
    text-align: center;
    opacity: 0.9;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.hero-bloom span {
    display: block;
    animation: floatBloom 4s ease-in-out infinite;
}

.hero-bloom span:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-bloom span:nth-child(3) {
    animation-delay: 1s;
}

.hero-bloom span:nth-child(4) {
    animation-delay: 1.5s;
}

.hero-bloom span:nth-child(5) {
    animation-delay: 2s;
}

.hero-bloom span:nth-child(6) {
    animation-delay: 2.5s;
}

.hero-bloom span:nth-child(7) {
    animation-delay: 0.3s;
}

.hero-bloom span:nth-child(8) {
    animation-delay: 0.8s;
}

.hero-bloom span:nth-child(9) {
    animation-delay: 1.3s;
}

@keyframes floatBloom {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--rose);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--rose-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(201, 123, 138, 0.4);
}

.btn-add {
    background: var(--green-deep);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

.btn-add:hover {
    background: var(--green-mid);
    transform: translateY(-1px);
}

.btn-checkout {
    width: 100%;
    background: var(--rose);
    color: var(--white);
    padding: 0.85rem;
    font-size: 1rem;
}

.btn-checkout:hover {
    background: var(--rose-dark);
}

/* ---------- FILTER BAR ---------- */
.filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 68px;
    z-index: 90;
}

.filter-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.85rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-muted);
    white-space: nowrap;
}

.filter-chips {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.chip {
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 500;
    border: 1.5px solid var(--border);
    color: var(--ink-soft);
    background: transparent;
    transition: all var(--transition);
}

.chip:hover,
.chip.active {
    background: var(--green-deep);
    border-color: var(--green-deep);
    color: var(--white);
}

/* ---------- SHOP LAYOUT ---------- */
.shop-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}

.products-section {
    min-width: 0;
}

/* ---------- PRODUCT GRID ---------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--rose);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.03em;
}

.product-emoji {
    font-size: 3rem;
    line-height: 1;
    display: block;
}

.product-info {
    flex: 1;
}

.product-category {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--green-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 0.3rem;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--ink-soft);
    line-height: 1.55;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-deep);
    text-wrap: nowrap;
}

.no-results {
    text-align: center;
    color: var(--ink-muted);
    padding: 3rem;
    font-size: 1rem;
}

/* ---------- CART SIDEBAR ---------- */
.cart-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    position: sticky;
    top: calc(68px + 56px + 1rem);
    max-height: calc(100vh - 68px - 56px - 3rem);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), opacity var(--transition);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1;
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
}

.cart-close {
    color: var(--ink-muted);
    font-size: 1rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    display: none;
}

.cart-close:hover {
    background: var(--blush);
    color: var(--ink);
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 3rem 1.5rem;
    text-align: center;
    color: var(--ink-muted);
}

.cart-empty span {
    font-size: 2.5rem;
}

.cart-empty p {
    font-size: 0.88rem;
    line-height: 1.55;
}

.cart-items {
    padding: 0.75rem 1.5rem;
    flex: 1;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
}

.cart-item:last-child {
    border-bottom: none;
}

.ci-emoji {
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.ci-body {
    flex: 1;
    min-width: 0;
}

.ci-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ci-qty-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.4rem;
}

.ci-qty-btn {
    width: 22px;
    height: 22px;
    border-radius: var(--radius-full);
    background: var(--blush);
    color: var(--ink);
    font-size: 0.9rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.ci-qty-btn:hover {
    background: var(--rose-light);
}

.ci-qty {
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 16px;
    text-align: center;
}

.ci-unit-price {
    font-size: 0.78rem;
    color: var(--ink-muted);
}

.ci-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--green-deep);
    white-space: nowrap;
    margin-top: 2px;
}

.ci-remove {
    color: var(--ink-muted);
    font-size: 0.8rem;
    padding: 0.15rem 0.3rem;
    border-radius: var(--radius-sm);
    margin-top: 2px;
    transition: color var(--transition), background var(--transition);
    flex-shrink: 0;
}

.ci-remove:hover {
    color: var(--rose-dark);
    background: var(--rose-light);
}

.cart-footer {
    padding: 1rem 1.5rem 1.25rem;
    border-top: 1px solid var(--border);
    background: var(--white);
    position: sticky;
    bottom: 0;
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
}

.cart-total strong {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--green-deep);
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
    background: var(--green-deep);
    color: var(--white);
    padding: 4.5rem 2rem;
}

.about-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 0.85rem;
    max-width: 50ch;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-item>span {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 2.6rem;
    height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(201, 123, 138, 0.18);
    color: var(--rose-light);
}

.value-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.value-item p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
    padding: 4.5rem 2rem;
    background: var(--blush);
}

.contact-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.contact-inner h2 {
    font-size: 2rem;
    color: var(--green-deep);
    margin-bottom: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.contact-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: var(--shadow-card);
}

.contact-item>span {
    font-size: 1.25rem;
    width: 2.6rem;
    height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--green-mist);
    color: var(--green-deep);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.contact-item p {
    font-size: 0.85rem;
    color: var(--ink-soft);
    line-height: 1.55;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.55);
    padding: 1.5rem 2rem;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-inner .logo-text {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.footer-inner p {
    font-size: 0.8rem;
}

/* ---------- MODAL ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 250ms ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: var(--shadow-modal);
    transform: translateY(20px);
    transition: transform 250ms ease;
}

.modal-overlay.open .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--ink-muted);
    font-size: 1rem;
    padding: 0.3rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.modal-close:hover {
    background: var(--blush);
}

.modal-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.modal h2 {
    font-size: 1.6rem;
    color: var(--green-deep);
    margin-bottom: 0.35rem;
}

.modal-subtitle {
    font-size: 0.88rem;
    color: var(--ink-muted);
    margin-bottom: 1.25rem;
}

.modal-order-id {
    font-family: monospace;
    font-size: 0.8rem;
    background: var(--green-mist);
    color: var(--green-mid);
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.modal-items {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1rem;
}

.modal-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1rem;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border);
    gap: 0.75rem;
}

.modal-item:last-child {
    border-bottom: none;
}

.modal-item:nth-child(even) {
    background: var(--blush);
}

.mi-name {
    flex: 1;
    font-weight: 500;
}

.mi-qty {
    color: var(--ink-muted);
    white-space: nowrap;
}

.mi-price {
    font-weight: 700;
    color: var(--green-deep);
    white-space: nowrap;
}

.modal-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 0.75rem 1rem;
    background: var(--green-mist);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    color: var(--green-deep);
}

.modal-discord-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #f0f4ff;
    border: 1.5px solid #c7d2fe;
    border-radius: var(--radius-md);
    padding: 0.9rem 1rem;
    margin-bottom: 1.5rem;
}

.modal-discord-note>span {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.modal-discord-note p {
    font-size: 0.83rem;
    color: #3730a3;
    line-height: 1.5;
}

/* ---------- TOAST ---------- */
.toast {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--green-deep);
    color: var(--white);
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    z-index: 300;
    opacity: 0;
    transition: transform 300ms ease, opacity 300ms ease;
    white-space: nowrap;
    pointer-events: none;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .cart-sidebar {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        height: 100dvh;
        width: min(360px, 92vw);
        border-radius: 0;
        z-index: 150;
        max-height: 100dvh;
    }

    .cart-sidebar.mobile-open {
        display: flex;
    }

    .cart-close {
        display: flex;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .support-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .support-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .support-actions {
        justify-content: center;
    }

    .support-progress {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .header-nav {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .hero {
        padding: 3.5rem 1.25rem 3rem;
    }

    .shop-layout {
        padding: 1.5rem 1rem 3rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
    }

    .contact-section,
    .about-section {
        padding: 3rem 1.25rem;
    }

    .support-section {
        padding: 3rem 1.25rem;
    }

    .support-visual {
        width: 160px;
        height: 160px;
    }

    .support-emoji {
        font-size: 4.5rem;
    }
}

.about-owner {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
}

.owner-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--rose);
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.about-owner .owner-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-light);
    font-weight: 600;
}

.about-owner strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.25;
}

/* ---------- SUPPORT / CHARITY SECTION ---------- */
.support-section {
    padding: 4.5rem 2rem;
    background: linear-gradient(135deg, var(--blush) 0%, #fdf6ee 100%);
    border-top: 1px solid var(--border);
}

.support-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 3rem;
    align-items: center;
}

.support-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: var(--radius-full);
    background: radial-gradient(circle at 30% 30%, var(--rose-light) 0%, var(--rose) 100%);
    box-shadow: var(--shadow-card);
}

.support-emoji {
    font-size: 6rem;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.support-heart {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 2rem;
    background: var(--white);
    border-radius: var(--radius-full);
    padding: 0.35rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    animation: heartBeat 1.6s ease-in-out infinite;
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.15);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.1);
    }
}

.support-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    color: var(--green-deep);
    margin-bottom: 1rem;
}

.support-eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rose-dark);
    margin-bottom: 0.6rem;
}

.support-text p {
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 0.85rem;
    max-width: 60ch;
}

.support-text strong {
    color: var(--green-deep);
}

.support-account {
    background: var(--white);
    border: 1.5px dashed var(--rose);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
    display: inline-block;
    min-width: 260px;
}

.support-account-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 0.25rem;
}

.support-account-number {
    font-family: monospace;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--green-deep);
    letter-spacing: 0.05em;
}

.support-account-note {
    font-size: 0.8rem;
    color: var(--ink-muted);
    margin-top: 0.35rem;
}

.support-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.btn-ghost {
    background: transparent;
    color: var(--green-deep);
    border: 1.5px solid var(--green-deep);
}

.btn-ghost:hover {
    background: var(--green-deep);
    color: var(--white);
}

.support-progress {
    max-width: 480px;
}

.support-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin-bottom: 0.4rem;
}

.support-progress-header strong {
    color: var(--green-deep);
    font-family: var(--font-display);
}

.support-progress-bar {
    height: 10px;
    background: var(--green-mist);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.support-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--rose) 0%, var(--rose-dark) 100%);
    border-radius: var(--radius-full);
    transition: width 600ms ease;
}

/* Make the overlay scroll instead of clipping the taller modal */
.modal-overlay {
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 2rem 1.5rem;
    -webkit-overflow-scrolling: touch;
}

.modal {
    margin: 0 auto;
}

.order-form {
    margin-top: 1.25rem;
    text-align: left;
}

.order-form-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--green-deep);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.form-field {
    margin-bottom: 0.9rem;
}

.form-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 0.3rem;
    letter-spacing: 0.02em;
}

.req {
    color: var(--rose-dark);
}

.form-field input {
    width: 100%;
    padding: 0.6rem 0.85rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--ink);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field input:focus {
    outline: none;
    border-color: var(--green-mid);
    box-shadow: 0 0 0 3px rgba(45, 98, 70, 0.12);
}

.form-field input.invalid {
    border-color: #d64545;
    box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.12);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (max-width: 420px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.field-hint {
    font-size: 0.72rem;
    color: var(--ink-muted);
    margin-top: 0.25rem;
}

.field-error {
    display: none;
    font-size: 0.75rem;
    color: #d64545;
    margin-top: 0.25rem;
}

.field-error.show {
    display: block;
}

.form-error {
    display: none;
    font-size: 0.82rem;
    color: #b03030;
    background: #fdecec;
    border: 1.5px solid #f5c2c2;
    border-radius: var(--radius-md);
    padding: 0.6rem 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.45;
}

.form-error.show {
    display: block;
}

/* Honeypot — invisible to humans, still parseable by bots */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

@media (max-width: 640px) {
    .modal-overlay {
        padding: 1rem;
    }
}