@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,600;1,600&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --esp-green:        #2F6B3D;
    --esp-green-hover:  #245430;
    --esp-gold:         #E8B547;
    --esp-cream:        #FBF7EE;
    --esp-charcoal:     #1F2A22;
    --esp-slate:        #5A6660;
    --esp-radius-card:  16px;
    --esp-radius-pill:  999px;
    --esp-radius-xl:    24px;
    --esp-shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
    --esp-shadow-md:    0 4px 16px rgba(0,0,0,.08);
    --esp-shadow-lg:    0 8px 32px rgba(0,0,0,.10);
}

.ecospot-landing *,
.ecospot-form-root * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.ecospot-landing {
    font-family: 'Inter', sans-serif;
    color: var(--esp-charcoal);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}
.ecospot-landing img { max-width: 100%; display: block; }
.ecospot-landing a   { color: inherit; }
.ecospot-landing button { cursor: pointer; font-family: inherit; }

.esp-skip-link {
    position: absolute;
    left:-9999px;
    top:4px;
    background:var(--esp-green);
    color:#fff;
    padding:8px 18px;
    border-radius:var(--esp-radius-pill);
    font-size:14px;
    font-weight:600;
    z-index:100;
    text-decoration:none;
}
.esp-skip-link:focus { left:16px; }

.esp-header {
    position: sticky;
    top: 0;
    z-index: 40;
    height: 56px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.esp-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.esp-header-logo img { height: 32px; width: auto; }
.esp-header-right { display: flex; align-items: center; gap: 16px; }
.esp-header-phone {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--esp-charcoal);
    text-decoration: none;
}
.esp-header-phone:hover { color: var(--esp-green); }
.esp-header-phone svg { width: 16px; height: 16px; }
@media (min-width: 640px) { .esp-header-phone { display: flex; } }
.esp-btn-header {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--esp-green);
    color: #fff;
    border: none;
    border-radius: var(--esp-radius-pill);
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
}
.esp-btn-header:hover { background: var(--esp-green-hover); color: #fff; }

.esp-section { padding: 80px 24px; }
.esp-section--cream  { background: var(--esp-cream); }
.esp-section--green  { background: var(--esp-green); }
.esp-section--white  { background: #fff; }
@media (min-width: 768px) { .esp-section { padding: 112px 24px; } }

.esp-container      { max-width: 1280px; margin: 0 auto; }
.esp-container--md  { max-width: 900px; margin: 0 auto; }
.esp-container--sm  { max-width: 720px; margin: 0 auto; }

.esp-section-kicker {
    display: inline-flex;
    align-items: center;
    background: rgba(232,181,71,.15);
    color: var(--esp-gold);
    border-radius: var(--esp-radius-pill);
    padding: 4px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.esp-hero { background: #fff; overflow: hidden; }
.esp-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 24px;
    display: grid;
    align-items: center;
    gap: 48px;
}
@media (min-width: 768px) {
    .esp-hero-inner {
        grid-template-columns: 1fr 1fr;
        padding: 96px 24px;
        min-height: 85vh;
    }
}
.esp-hero-h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--esp-charcoal);
    margin-top: 16px;
}
.esp-hero-h1 em { font-style: normal; color: var(--esp-green); }
.esp-hero-sub {
    margin-top: 20px;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--esp-slate);
    max-width: 480px;
}
.esp-hero-cta-wrap { margin-top: 32px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.esp-trust-line { font-size: 13px; color: var(--esp-slate); }
.esp-trust-line span.check { color: var(--esp-green); }
.esp-trust-sep { margin: 0 8px; opacity: .3; }

.esp-hero-img-wrap { position: relative; }
.esp-hero-img { border-radius: 24px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.12); }
.esp-hero-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.esp-hero-badge {
    position: absolute;
    top: -16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: var(--esp-radius-pill);
    padding: 8px 16px 8px 8px;
    box-shadow: var(--esp-shadow-lg);
    border: 1px solid rgba(0,0,0,.06);
}
.esp-hero-badge img { width: 36px; height: 36px; border-radius: 50%; object-fit: contain; }
.esp-hero-badge-text { font-size: 11px; font-weight: 700; color: var(--esp-charcoal); line-height: 1.3; }
.esp-hero-badge-sub  { font-size: 10px; font-weight: 400; color: var(--esp-slate); }

.esp-area-strip { background: var(--esp-cream); padding: 40px 24px; }
.esp-area-strip-label { text-align: center; font-size: 1rem; color: var(--esp-charcoal); }
.esp-area-grid { display: grid; gap: 14px; margin-top: 24px; grid-template-columns: 1fr; }
@media (min-width: 480px) { .esp-area-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .esp-area-grid { grid-template-columns: repeat(3, 1fr); } }
.esp-area-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255,255,255,.7);
    border-radius: var(--esp-radius-xl);
    padding: 12px 16px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}
.esp-area-code {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(47,107,61,.1);
    font-size: 12px;
    font-weight: 700;
    color: var(--esp-green);
    flex-shrink: 0;
}
.esp-area-label { font-size: 13px; font-weight: 500; color: var(--esp-charcoal); }

.esp-ps-headline {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -.02em;
    color: var(--esp-charcoal);
    text-align: center;
}
.esp-ps-headline span { color: var(--esp-green); }
.esp-ps-sub { text-align: center; margin-top: 20px; font-size: 1.1rem; color: var(--esp-slate); max-width: 680px; margin-left: auto; margin-right: auto; }
.esp-ps-grid { display: grid; gap: 20px; margin-top: 56px; }
@media (min-width: 768px) { .esp-ps-grid { grid-template-columns: 1fr 1fr; } }
.esp-ps-photo { position: relative; border-radius: 24px; overflow: hidden; }
.esp-ps-photo img { width: 100%; height: 320px; object-fit: cover; display: block; }
@media (min-width: 768px) { .esp-ps-photo img { height: 400px; } }
.esp-ps-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.15) 50%, transparent 100%); }
.esp-ps-photo-caption { position: absolute; bottom: 24px; left: 24px; right: 24px; color: #fff; }
.esp-ps-photo-caption .kicker { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; opacity: .85; }
.esp-ps-photo-caption .title { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 600; margin-top: 4px; }
.esp-ps-photo--green .esp-ps-photo-overlay { background: linear-gradient(to top, rgba(47,107,61,.8) 0%, rgba(47,107,61,.1) 50%, transparent 100%); }
.esp-ps-photo--landfill img { filter: saturate(.6) brightness(.9); }

.esp-props { display: grid; gap: 14px; margin-top: 48px; }
@media (min-width: 768px) { .esp-props { grid-template-columns: repeat(3, 1fr); } }
.esp-prop {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--esp-cream);
    border-radius: var(--esp-radius-pill);
    padding: 20px 24px;
}
.esp-prop-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--esp-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.esp-prop-icon svg { width: 20px; height: 20px; }
.esp-prop-title { font-weight: 600; color: var(--esp-charcoal); font-size: 15px; }
.esp-prop-body  { font-size: 13px; color: var(--esp-slate); margin-top: 2px; }

.esp-how-h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.6rem, 3.5vw, 3rem);
    font-weight: 600;
    text-align: center;
    color: var(--esp-charcoal);
    letter-spacing: -.02em;
}
.esp-how-h2 span { color: var(--esp-green); }
.esp-steps { display: grid; gap: 24px; margin-top: 56px; }
@media (min-width: 768px) { .esp-steps { grid-template-columns: repeat(3, 1fr); } }
.esp-step-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--esp-shadow-sm);
    border: 1px solid rgba(0,0,0,.05);
}
.esp-step-num {
    position: absolute;
    top: -16px;
    left: 32px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--esp-gold);
    color: var(--esp-charcoal);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.esp-step-card svg { width: 36px; height: 36px; color: var(--esp-green); }
.esp-step-card h3 { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 600; color: var(--esp-charcoal); margin-top: 20px; }
.esp-step-card p  { font-size: 15px; color: var(--esp-slate); margin-top: 10px; line-height: 1.6; }
.esp-how-cta { text-align: center; margin-top: 48px; }

.esp-donate-h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 600;
    text-align: center;
    color: var(--esp-charcoal);
    letter-spacing: -.02em;
}
.esp-donate-h2 span { color: var(--esp-green); }
.esp-donate-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; }
@media (min-width: 768px) { .esp-donate-grid { grid-template-columns: repeat(4, 1fr); } }
.esp-donate-card {
    background: var(--esp-cream);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(0,0,0,.05);
    transition: box-shadow .2s;
}
.esp-donate-card:hover { box-shadow: var(--esp-shadow-md); }
.esp-donate-card-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--esp-green);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}
.esp-donate-card-icon svg { width: 24px; height: 24px; }
.esp-donate-card h3 { font-family: 'Fraunces', serif; font-size: 1.25rem; font-weight: 600; color: var(--esp-charcoal); margin-top: 20px; }
.esp-donate-card p  { font-size: 13px; color: var(--esp-slate); margin-top: 6px; }
.esp-donate-note { text-align: center; font-size: 13px; color: var(--esp-slate); margin-top: 28px; }

.esp-impact-h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 600;
    text-align: center;
    color: #fff;
    letter-spacing: -.02em;
}
.esp-impact-h2 span { color: var(--esp-gold); }
.esp-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 24px; margin-top: 56px; }
@media (min-width: 768px) { .esp-stats { grid-template-columns: repeat(4, 1fr); } }
.esp-stat { text-align: center; }
.esp-stat-value {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--esp-gold);
    line-height: 1;
    letter-spacing: -.02em;
    white-space: nowrap;
}
.esp-stat-label { font-size: 14px; color: rgba(255,255,255,.85); margin-top: 12px; }

.esp-mow-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 768px) { .esp-mow-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.esp-mow-img { border-radius: 24px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,.12); }
.esp-mow-img img { width: 100%; object-fit: cover; }
.esp-mow-kicker { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--esp-gold); }
.esp-mow-h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    font-weight: 600;
    color: var(--esp-charcoal);
    margin-top: 12px;
    letter-spacing: -.02em;
}
.esp-mow-h2 span { color: var(--esp-green); }
.esp-mow-body { font-size: 1.05rem; color: var(--esp-slate); margin-top: 20px; line-height: 1.7; }
.esp-mow-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.esp-mow-stat-val { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 600; color: var(--esp-green); }
.esp-mow-stat-lbl { font-size: 12px; color: var(--esp-slate); margin-top: 4px; }
.esp-mow-link { display: inline-flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 600; color: var(--esp-green); text-decoration: none; margin-top: 28px; }
.esp-mow-link:hover { text-decoration: underline; }

.esp-schedule-section { background: #fff; }
.esp-schedule-h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 600;
    text-align: center;
    color: var(--esp-charcoal);
    letter-spacing: -.02em;
}
.esp-schedule-h2 span { color: var(--esp-green); }
.esp-schedule-sub { text-align: center; font-size: 1.1rem; color: var(--esp-slate); margin-top: 14px; }
.esp-schedule-card {
    margin-top: 40px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,.06);
    padding: 32px;
    box-shadow: 0 8px 40px rgba(0,0,0,.06);
}
@media (min-width: 640px) { .esp-schedule-card { padding: 40px; } }

.esp-faq-h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 600;
    text-align: center;
    color: var(--esp-charcoal);
    letter-spacing: -.02em;
}
.esp-faq-h2 span { color: var(--esp-green); }
.esp-faq-list {
    margin-top: 40px;
    background: #fff;
    border-radius: 24px;
    padding: 8px 16px;
    box-shadow: var(--esp-shadow-sm);
    border: 1px solid rgba(0,0,0,.06);
}
.esp-faq-item { border-bottom: 1px solid rgba(0,0,0,.06); }
.esp-faq-item:last-child { border-bottom: none; }
.esp-faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--esp-charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.esp-faq-q:hover { color: var(--esp-green); }
.esp-faq-q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s; color: var(--esp-slate); }
.esp-faq-item.open .esp-faq-q svg { transform: rotate(180deg); }
.esp-faq-a { display: none; padding: 0 16px 20px; font-size: 15px; color: var(--esp-slate); line-height: 1.7; }
.esp-faq-item.open .esp-faq-a { display: block; }

.esp-final-cta { text-align: center; }
.esp-final-h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: -.02em;
}
.esp-final-sub { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-top: 14px; }
.esp-final-cta-row { margin-top: 32px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.esp-final-phone { font-size: 14px; color: rgba(255,255,255,.85); }
.esp-final-phone a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.esp-footer {
    background: var(--esp-charcoal);
    color: rgba(255,255,255,.8);
    font-size: 13px;
    padding: 48px 24px 96px;
}
@media (min-width: 768px) { .esp-footer { padding-bottom: 48px; } }
.esp-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}
@media (min-width: 768px) {
    .esp-footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.esp-footer-logo img { height: 28px; width: auto; }
.esp-footer-tagline { color: rgba(255,255,255,.6); margin-top: 8px; }
.esp-footer-links { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.esp-footer-links a { color: rgba(255,255,255,.6); text-decoration: none; }
.esp-footer-links a:hover { color: #fff; }
.esp-footer-links span { opacity: .25; }
.esp-footer-right { display: flex; flex-direction: column; align-items: center; gap: 8px; }
@media (min-width: 768px) { .esp-footer-right { align-items: flex-end; } }
.esp-footer-contact a { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.7); text-decoration: none; }
.esp-footer-contact a:hover { color: #fff; }
.esp-footer-contact svg { width: 14px; height: 14px; }
.esp-footer-mow img { width: 48px; height: 48px; border-radius: 50%; background: #fff; padding: 4px; margin-top: 8px; }

.esp-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 12px 16px 20px;
    background: linear-gradient(to top, rgba(255,255,255,1) 60%, rgba(255,255,255,0));
    pointer-events: none;
}
.esp-sticky-cta.hidden { display: none; }
.esp-sticky-cta a {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--esp-green);
    color: #fff;
    border-radius: var(--esp-radius-pill);
    padding: 16px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(47,107,61,.4);
    transition: background .2s;
}
@media (min-width: 768px) { .esp-sticky-cta { display: none !important; } }

.esp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--esp-green);
    color: #fff;
    border: none;
    border-radius: var(--esp-radius-pill);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s, opacity .2s;
}
.esp-btn:hover:not(:disabled) { background: var(--esp-green-hover); }
.esp-btn:disabled { opacity: .5; cursor: not-allowed; }
.esp-btn svg { width: 20px; height: 20px; }
.esp-btn--xl { height: 56px; font-size: 16px; }
.esp-btn--full { width: 100%; }
.esp-btn--gold { background: var(--esp-gold); color: var(--esp-charcoal); }
.esp-btn--gold:hover:not(:disabled) { transform: scale(1.02); background: var(--esp-gold); }
.esp-btn--outline {
    background: transparent;
    border: 2px solid rgba(0,0,0,.15);
    color: var(--esp-charcoal);
}
.esp-btn--outline:hover { border-color: var(--esp-green); color: var(--esp-green); background: transparent; }
.esp-btn--back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--esp-slate);
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    padding: 0;
}
.esp-btn--back svg { width: 16px; height: 16px; }
.esp-btn--back:hover { color: var(--esp-charcoal); }

.ecospot-form-root {
    font-family: 'Inter', sans-serif;
    color: var(--esp-charcoal);
    -webkit-font-smoothing: antialiased;
}
.ecospot-phase > * + * { margin-top: 20px; }

.esp-label { display: block; font-size: 14px; font-weight: 600; color: var(--esp-charcoal); margin-bottom: 6px; }
.esp-label--lg { font-size: 16px; font-weight: 600; }
.esp-hint { font-size: 13px; color: var(--esp-slate); margin-top: 4px; }
.esp-input, .esp-select, .esp-textarea {
    width: 100%;
    border: 2px solid rgba(0,0,0,.1);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: var(--esp-charcoal);
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
    appearance: none;
}
.esp-input:focus, .esp-select:focus, .esp-textarea:focus {
    border-color: var(--esp-gold);
    box-shadow: 0 0 0 3px rgba(232,181,71,.2);
}
.esp-input--xl { height: 56px; }
.esp-textarea { resize: vertical; min-height: 80px; }
.esp-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A6660' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 20px; padding-right: 44px; }
.esp-field-group { margin-bottom: 0; }
.esp-field-grid { display: grid; gap: 14px; }
.esp-field-grid--2 { grid-template-columns: 1fr 1fr; }
.esp-field-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 520px) {
    .esp-field-grid--2, .esp-field-grid--3 { grid-template-columns: 1fr; }
}
.esp-state-display {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--esp-cream);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--esp-charcoal);
}
.esp-error { font-size: 13px; color: #dc2626; font-weight: 500; margin-top: 6px; }

.esp-type-grid { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; margin-top: 10px; }
@media (max-width: 440px) { .esp-type-grid { grid-template-columns: 1fr; } }
.esp-type-card {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 2px solid rgba(0,0,0,.1);
    border-radius: 20px;
    padding: 16px;
    text-align: left;
    background: #fff;
    cursor: pointer;
    transition: border-color .2s, background .2s, box-shadow .2s;
    font-family: 'Inter', sans-serif;
}
.esp-type-card:hover { border-color: rgba(47,107,61,.4); }
.esp-type-card.selected {
    border-color: var(--esp-green);
    background: rgba(47,107,61,.04);
    box-shadow: var(--esp-shadow-sm);
}
.esp-type-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--esp-cream);
    color: var(--esp-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, color .2s;
}
.esp-type-card.selected .esp-type-icon { background: var(--esp-green); color: #fff; }
.esp-type-icon svg { width: 24px; height: 24px; }
.esp-type-title { font-size: 14px; font-weight: 600; color: var(--esp-charcoal); }
.esp-type-sub   { font-size: 12px; color: var(--esp-slate); margin-top: 2px; }

.esp-notice { border-radius: 16px; padding: 18px 20px; }
.esp-notice--gold { border: 1px solid rgba(232,181,71,.5); background: var(--esp-cream); }
.esp-notice-title { font-weight: 600; color: var(--esp-charcoal); font-size: 15px; }
.esp-notice-sub   { font-size: 13px; color: var(--esp-slate); margin-top: 4px; }

.esp-stepper { display: flex; align-items: flex-start; list-style: none; padding: 0; margin: 0; gap: 0; }
.esp-step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; position: relative; }
.esp-step-line { position: absolute; top: 16px; height: 2px; background: rgba(0,0,0,.1); width: calc(50% - 16px); z-index: 0; }
.esp-step-line--before { left: 0; }
.esp-step-line--after  { right: 0; }
.esp-step:first-child .esp-step-line--before { display: none; }
.esp-step:last-child  .esp-step-line--after  { display: none; }
.esp-step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,.1);
    color: var(--esp-slate);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
    transition: background .2s, color .2s, box-shadow .2s;
}
.esp-step.active .esp-step-circle { background: var(--esp-green); color: #fff; box-shadow: 0 0 0 4px rgba(47,107,61,.15); }
.esp-step.done .esp-step-circle   { background: var(--esp-green); color: #fff; }
.esp-step.active .esp-step-line--before,
.esp-step.done   .esp-step-line--before,
.esp-step.done   .esp-step-line--after { background: var(--esp-green); }
.esp-step-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--esp-slate); }
.esp-step.active .esp-step-label,
.esp-step.done   .esp-step-label { color: var(--esp-charcoal); }

.esp-wizard-meta { display: flex; align-items: center; justify-content: space-between; font-size: 13px; gap: 12px; }
.esp-back-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: var(--esp-slate);
    font-size: 13px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    padding: 0;
}
.esp-back-link svg { width: 14px; height: 14px; }
.esp-back-link:hover { color: var(--esp-charcoal); }
.esp-wizard-context { color: var(--esp-slate); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.esp-step-title { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 600; color: var(--esp-charcoal); letter-spacing: -.01em; }
.esp-step-hint { font-size: 13px; color: var(--esp-slate); margin-top: 4px; }
.esp-wizard-step > * + * { margin-top: 20px; }

.esp-categories { display: flex; flex-direction: column; gap: 10px; }
.esp-category { border-radius: 16px; border: 1px solid rgba(0,0,0,.1); background: #fff; overflow: hidden; transition: border-color .2s; }
.esp-category--featured { border-color: rgba(47,107,61,.35); box-shadow: 0 0 0 1px rgba(47,107,61,.15); }
.esp-cat-header { width: 100%; display: flex; align-items: center; gap: 12px; padding: 14px 16px; text-align: left; background: none; border: none; cursor: pointer; font-family: inherit; }
.esp-cat-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--esp-cream); color: var(--esp-green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.esp-category--featured .esp-cat-icon { background: var(--esp-green); color: #fff; }
.esp-cat-icon svg { width: 20px; height: 20px; }
.esp-cat-title { flex: 1; font-size: 14px; font-weight: 600; color: var(--esp-charcoal); }
.esp-cat-badge { background: rgba(47,107,61,.1); color: var(--esp-green); border-radius: var(--esp-radius-pill); padding: 2px 10px; font-size: 11px; font-weight: 600; }
.esp-cat-toggle { font-size: 11px; color: var(--esp-slate); flex-shrink: 0; }
.esp-cat-items { display: none; flex-direction: column; gap: 8px; border-top: 1px solid rgba(0,0,0,.05); background: rgba(251,247,238,.4); padding: 14px 16px; }
.esp-category.open .esp-cat-items { display: flex; }
.esp-cat-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: #fff; border-radius: 12px; padding: 10px 12px; }
.esp-cat-item-label { font-size: 13px; color: var(--esp-charcoal); }
.esp-qty-ctrl { display: flex; align-items: center; gap: 8px; }
.esp-qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.1);
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--esp-charcoal);
    font-size: 18px;
    line-height: 1;
    font-family: inherit;
    transition: border-color .15s;
}
.esp-qty-btn:hover:not(:disabled) { border-color: var(--esp-green); color: var(--esp-green); }
.esp-qty-btn:disabled { opacity: .3; cursor: not-allowed; }
.esp-qty-btn--plus { background: var(--esp-green); color: #fff; border-color: var(--esp-green); }
.esp-qty-btn--plus:hover { background: var(--esp-green-hover); border-color: var(--esp-green-hover); color: #fff; }
.esp-qty-val { min-width: 24px; text-align: center; font-size: 14px; font-weight: 600; }

.esp-items-summary { background: var(--esp-cream); border-radius: 12px; padding: 12px 16px; font-size: 14px; font-weight: 500; color: var(--esp-charcoal); }

.esp-ack-box { background: var(--esp-cream); border-radius: 16px; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.esp-checkbox-row { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--esp-charcoal); line-height: 1.5; cursor: pointer; }
.esp-checkbox-row input[type=checkbox] { margin-top: 2px; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--esp-green); cursor: pointer; }

.esp-calendar-wrapper { border: 2px solid rgba(0,0,0,.1); border-radius: 16px; overflow: hidden; background: #fff; }
.esp-calendar-nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid rgba(0,0,0,.06); font-weight: 600; font-size: 15px; color: var(--esp-charcoal); }
.esp-cal-nav-btn { background: none; border: 1px solid rgba(0,0,0,.1); border-radius: 8px; width: 32px; height: 32px; font-size: 20px; cursor: pointer; color: var(--esp-charcoal); display: flex; align-items: center; justify-content: center; transition: border-color .15s; }
.esp-cal-nav-btn:hover { border-color: var(--esp-green); color: var(--esp-green); }
.esp-calendar-grid { padding: 12px 16px 16px; }
.esp-cal-dow { display: inline-block; width: calc(100% / 7); text-align: center; font-size: 11px; font-weight: 600; color: var(--esp-slate); text-transform: uppercase; padding: 6px 0; }
#esp-cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.esp-cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; border: none; background: none; color: var(--esp-charcoal); transition: background .15s, color .15s; }
.esp-cal-day:hover:not(.disabled):not(.selected) { background: rgba(47,107,61,.08); }
.esp-cal-day.disabled { color: rgba(0,0,0,.2); cursor: not-allowed; }
.esp-cal-day.selected { background: var(--esp-green); color: #fff; font-weight: 700; }
.esp-cal-day.today:not(.selected) { font-weight: 700; color: var(--esp-green); }
.esp-cal-day.empty { pointer-events: none; }

.esp-time-notice { display: flex; align-items: center; gap: 14px; border: 2px solid rgba(47,107,61,.25); background: rgba(47,107,61,.05); border-radius: 16px; padding: 16px; }
.esp-time-icon { width: 44px; height: 44px; background: var(--esp-green); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.esp-time-icon svg { width: 22px; height: 22px; }
.esp-time-notice p { font-size: 14px; color: var(--esp-charcoal); }

.esp-review-block { border: 1px solid rgba(0,0,0,.1); border-radius: 16px; background: #fff; padding: 16px; margin-bottom: 12px; }
.esp-review-block-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.esp-review-block-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--esp-slate); }
.esp-review-edit { font-size: 12px; font-weight: 600; color: var(--esp-green); background: none; border: none; cursor: pointer; }
.esp-review-edit:hover { text-decoration: underline; }
.esp-review-body { font-size: 14px; color: var(--esp-charcoal); line-height: 1.6; }
.esp-review-body p + p { margin-top: 2px; }
.esp-review-body .muted { color: var(--esp-slate); }
.esp-review-body ul { list-style: none; padding: 0; }
.esp-review-body li { display: flex; justify-content: space-between; padding: 2px 0; }

.esp-success { background: var(--esp-cream); border: 1px solid rgba(232,181,71,.4); border-radius: 24px; padding: 48px 32px; text-align: center; box-shadow: var(--esp-shadow-sm); }
.esp-success-icon { width: 56px; height: 56px; background: var(--esp-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; margin: 0 auto 20px; }
.esp-success-icon svg { width: 28px; height: 28px; }
.esp-success-title { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 600; color: var(--esp-charcoal); letter-spacing: -.01em; }
.esp-success-body { font-size: 15px; color: var(--esp-slate); margin-top: 12px; line-height: 1.7; }

.esp-wizard-actions { padding-top: 8px; }

.ecospot-form-root button,
.ecospot-landing button {
    all: unset;
    box-sizing: border-box;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.ecospot-form-root .esp-btn,
.ecospot-landing .esp-btn,
.ecospot-landing .esp-btn-header {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: var(--esp-green) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--esp-radius-pill) !important;
    padding: 14px 28px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: background .2s !important;
    line-height: 1 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
}
.ecospot-form-root .esp-btn--xl,
.ecospot-landing .esp-btn--xl {
    height: 56px !important;
    font-size: 16px !important;
}
.ecospot-form-root .esp-btn--full,
.ecospot-landing .esp-btn--full {
    width: 100% !important;
}
.ecospot-form-root .esp-btn--gold,
.ecospot-landing .esp-btn--gold {
    background: var(--esp-gold) !important;
    color: var(--esp-charcoal) !important;
}
.ecospot-form-root .esp-btn--outline,
.ecospot-landing .esp-btn--outline {
    background: transparent !important;
    border: 2px solid rgba(0,0,0,.15) !important;
    color: var(--esp-charcoal) !important;
}
.ecospot-form-root .esp-btn:hover:not(:disabled),
.ecospot-landing .esp-btn:hover:not(:disabled) {
    background: var(--esp-green-hover) !important;
    color: #fff !important;
}
.ecospot-form-root .esp-btn:disabled {
    opacity: .5 !important;
    cursor: not-allowed !important;
}
.ecospot-form-root .esp-btn svg,
.ecospot-landing .esp-btn svg {
    width: 20px !important;
    height: 20px !important;
}

.ecospot-form-root .esp-type-card {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    border: 2px solid rgba(0,0,0,.1) !important;
    border-radius: 20px !important;
    padding: 16px !important;
    text-align: left !important;
    background: #fff !important;
    color: var(--esp-charcoal) !important;
    font-size: 14px !important;
    font-weight: normal !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: normal !important;
    width: 100% !important;
    height: auto !important;
    box-shadow: none !important;
    transition: border-color .2s, background .2s !important;
}
.ecospot-form-root .esp-type-card.selected {
    border-color: var(--esp-green) !important;
    background: rgba(47,107,61,.04) !important;
}
.ecospot-form-root .esp-type-card .esp-type-icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 14px !important;
    background: var(--esp-cream) !important;
    color: var(--esp-green) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}
.ecospot-form-root .esp-type-card.selected .esp-type-icon {
    background: var(--esp-green) !important;
    color: #fff !important;
}

.ecospot-form-root .esp-input,
.ecospot-form-root .esp-select,
.ecospot-form-root .esp-textarea {
    display: block !important;
    width: 100% !important;
    border: 2px solid rgba(0,0,0,.1) !important;
    border-radius: 12px !important;
    padding: 12px 14px !important;
    font-size: 16px !important;
    font-family: 'Inter', sans-serif !important;
    color: var(--esp-charcoal) !important;
    background: #fff !important;
    outline: none !important;
    box-shadow: none !important;
    line-height: normal !important;
    height: auto !important;
    margin: 0 !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}
.ecospot-form-root .esp-input--xl,
.ecospot-form-root .esp-select {
    height: 56px !important;
}
.ecospot-form-root .esp-input:focus,
.ecospot-form-root .esp-select:focus,
.ecospot-form-root .esp-textarea:focus {
    border-color: var(--esp-gold) !important;
    box-shadow: 0 0 0 3px rgba(232,181,71,.2) !important;
    outline: none !important;
}

.ecospot-landing .esp-faq-q {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    text-align: left !important;
    padding: 20px 16px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--esp-charcoal) !important;
    font-family: 'Inter', sans-serif !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: normal !important;
    height: auto !important;
    box-shadow: none !important;
    gap: 12px !important;
}
.ecospot-landing .esp-faq-q:hover {
    color: var(--esp-green) !important;
    background: none !important;
    background-color: transparent !important;
}
.ecospot-landing .esp-faq-q svg {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
    color: var(--esp-slate) !important;
    transition: transform .25s !important;
    fill: none !important;
    stroke: currentColor !important;
}
.ecospot-landing .esp-faq-item.open .esp-faq-q svg {
    transform: rotate(180deg) !important;
}

.ecospot-form-root .esp-qty-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(0,0,0,.1) !important;
    background: none !important;
    color: var(--esp-charcoal) !important;
    font-size: 18px !important;
    line-height: 1 !important;
    padding: 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-weight: normal !important;
    box-shadow: none !important;
}
.ecospot-form-root .esp-qty-btn--plus {
    background: var(--esp-green) !important;
    color: #fff !important;
    border-color: var(--esp-green) !important;
}
.ecospot-form-root .esp-qty-btn:disabled {
    opacity: .3 !important;
    cursor: not-allowed !important;
}

.ecospot-form-root .esp-cat-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 14px 16px !important;
    text-align: left !important;
    color: var(--esp-charcoal) !important;
    font-size: 14px !important;
    font-weight: normal !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    height: auto !important;
    box-shadow: none !important;
}

.ecospot-form-root .esp-cal-nav-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: none !important;
    border: 1px solid rgba(0,0,0,.1) !important;
    border-radius: 8px !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 20px !important;
    color: var(--esp-charcoal) !important;
    padding: 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-weight: normal !important;
    box-shadow: none !important;
    line-height: 1 !important;
}

.ecospot-form-root .esp-back-link,
.ecospot-form-root #esp-wizard-back {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: none !important;
    border: none !important;
    color: var(--esp-slate) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    padding: 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    box-shadow: none !important;
    height: auto !important;
    border-radius: 0 !important;
}

.ecospot-form-root .esp-cal-day {
    aspect-ratio: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    border: none !important;
    background: none !important;
    background-color: transparent !important;
    color: var(--esp-charcoal) !important;
    padding: 0 !important;
    width: 100% !important;
    height: auto !important;
    line-height: 1 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    box-shadow: none !important;
}
.ecospot-form-root .esp-cal-day:hover:not(.disabled):not(.selected) {
    background-color: rgba(47,107,61,.08) !important;
    color: var(--esp-charcoal) !important;
}
.ecospot-form-root .esp-cal-day.disabled {
    color: rgba(0,0,0,.2) !important;
    cursor: not-allowed !important;
    background: none !important;
    background-color: transparent !important;
}
.ecospot-form-root .esp-cal-day.selected {
    background-color: var(--esp-green) !important;
    color: #fff !important;
    font-weight: 700 !important;
}
.ecospot-form-root .esp-cal-day.today:not(.selected) {
    font-weight: 700 !important;
    color: var(--esp-green) !important;
    background: none !important;
    background-color: transparent !important;
}
.ecospot-form-root .esp-cal-day.empty {
    pointer-events: none !important;
    background: none !important;
    background-color: transparent !important;
}
.ecospot-form-root #esp-cal-days {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 4px !important;
}

.ecospot-form-root .esp-type-grid {
    margin-top: 10px !important;
    margin-bottom: 20px !important;
}

/* =============================================
   MANAGE PICKUP PAGE
   ============================================= */

.ecospot-manage-wrap {
    max-width: 520px;
    margin: 48px auto;
    padding: 0 16px;
    font-family: 'Inter', Arial, sans-serif;
}

.esm-screen { animation: esm-fade .25s ease; }
@keyframes esm-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.esm-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    text-align: center;
}

.esm-card h2 {
    color: #1F2A22;
    font-size: 22px;
    margin: 0 0 12px;
}

.esm-card p {
    color: #5A6660;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 16px;
}

.esm-card a { color: #2F6B3D; }

.esm-greeting {
    font-size: 16px;
    color: #1F2A22 !important;
    margin-bottom: 20px !important;
}

.esm-summary {
    background: #FBF7EE;
    border-radius: 12px;
    padding: 14px 18px;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.esm-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #5A6660;
}

.esm-date {
    font-size: 18px;
    font-weight: 700;
    color: #2F6B3D;
}

.esm-question {
    font-weight: 600;
    color: #1F2A22 !important;
    margin-bottom: 20px !important;
}

.esm-sub {
    margin-bottom: 20px !important;
}

.esm-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.esm-btn {
    display: block;
    width: 100%;
    padding: 13px 24px;
    border-radius: 99px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: opacity .15s;
}

.esm-btn:disabled { opacity: .45; cursor: default; }
.esm-btn--primary { background: #2F6B3D; color: #fff; }
.esm-btn--primary:hover:not(:disabled) { background: #245530; }
.esm-btn--ghost { background: transparent; color: #2F6B3D; border: 2px solid #2F6B3D; }
.esm-btn--ghost:hover { background: #f0f7f2; }
.esm-btn--danger { background: #c0392b; color: #fff; }
.esm-btn--danger:hover { background: #a93226; }

.esm-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-weight: 700;
}

.esm-icon--success { background: #e6f4ea; color: #2F6B3D; }
.esm-icon--error   { background: #fdecea; color: #c0392b; }
.esm-icon--warn    { background: #fef3e2; color: #d35400; }

.esm-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #e0e0e0;
    border-top-color: #2F6B3D;
    border-radius: 50%;
    animation: esm-spin .7s linear infinite;
    margin: 80px auto;
}
@keyframes esm-spin { to { transform: rotate(360deg); } }

.esm-calendar-wrap {
    margin: 0 0 16px;
    user-select: none;
}

#esm-calendar {
    background: #f9f9f7;
    border-radius: 12px;
    padding: 16px;
}

.esm-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.esm-cal-title {
    font-weight: 700;
    color: #1F2A22;
    font-size: 15px;
}

.esm-cal-nav {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #2F6B3D;
    padding: 4px 8px;
    border-radius: 6px;
}
.esm-cal-nav:hover { background: #e6f4ea; }

.esm-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.esm-cal-dow {
    font-size: 11px;
    font-weight: 600;
    color: #5A6660;
    padding: 4px 0;
    text-transform: uppercase;
}

.esm-cal-day {
    padding: 8px 4px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    color: #1F2A22;
    border: 2px solid transparent;
    transition: background .1s;
}

.esm-cal-day:hover:not(.esm-cal-day--disabled):not(.esm-cal-day--empty) { background: #e6f4ea; }
.esm-cal-day--disabled { color: #ccc; cursor: default; }
.esm-cal-day--empty    { cursor: default; }
.esm-cal-day--selected { background: #2F6B3D !important; color: #fff !important; border-color: #2F6B3D; }

.esm-selected-label {
    font-size: 14px;
    color: #2F6B3D !important;
    margin-bottom: 16px !important;
}
