/**
 * FarmEco Events Hub Styles
 * Calendar Schedule View, Multi-Event Selection, Info (i) Popups & Responsive Layout.
 */

:root {
    --fe-green-dark: #1b3824;
    --fe-green-primary: #2d5a3c;
    --fe-green-medium: #3b744f;
    --fe-green-light: #eaf3ed;
    --fe-green-subtle: #f4f8f5;
    --fe-gold: #d4a72c;
    --fe-gold-soft: #fdf8eb;
    --fe-text-main: #242e27;
    --fe-text-muted: #5e6d63;
    --fe-bg-warm: #fcfbf8;
    --fe-card-bg: #ffffff;
    --fe-border: #e2e9e3;
    --fe-radius: 14px;
    --fe-shadow: 0 4px 18px rgba(27, 56, 36, 0.07);
    --fe-shadow-hover: 0 10px 28px rgba(27, 56, 36, 0.13);
}

body.fe-modal-open {
    overflow: hidden;
}

.farmeco-events-hub {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--fe-text-main);
    max-width: 1200px;
    margin: 0 auto 5rem auto;
    padding: 1rem 0;
    position: relative;
}

/* Header & Controls */
.fe-hub-header {
    margin-bottom: 2rem;
}

.fe-hub-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 1.5rem auto;
}

.fe-hub-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--fe-green-dark);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.fe-hub-subtitle {
    font-size: 1.05rem;
    color: var(--fe-text-muted);
    line-height: 1.5;
    margin: 0;
}

.fe-controls-wrapper {
    background: var(--fe-bg-warm);
    border: 1px solid var(--fe-border);
    border-radius: var(--fe-radius);
    padding: 1.25rem;
    box-shadow: var(--fe-shadow);
    margin-bottom: 2rem;
}

.fe-search-row {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1.25rem;
}

.fe-search-input-wrap {
    flex: 1;
    min-width: 240px;
    position: relative;
}

.fe-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--fe-text-muted);
    pointer-events: none;
    font-size: 1rem;
}

.fe-search-input {
    width: 100% !important;
    padding: 11px 14px 11px 40px !important;
    border: 1.5px solid var(--fe-border) !important;
    border-radius: 999px !important;
    font-size: 0.95rem !important;
    background: #ffffff !important;
    color: var(--fe-text-main) !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
}

.fe-search-input:focus {
    border-color: var(--fe-green-primary) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(45, 90, 60, 0.15) !important;
}

/* Time Horizon Tabs */
.fe-horizon-tabs {
    display: inline-flex;
    background: #ffffff;
    border: 1px solid var(--fe-border);
    border-radius: 999px;
    padding: 3px;
}

.fe-horizon-btn {
    border: none;
    background: transparent;
    padding: 7px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--fe-text-muted);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
}

.fe-horizon-btn.active {
    background: var(--fe-green-primary);
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(45, 90, 60, 0.2);
}

/* View Switcher */
.fe-view-switcher {
    display: inline-flex;
    background: #ffffff;
    border: 1px solid var(--fe-border);
    border-radius: 999px;
    padding: 3px;
}

.fe-view-btn {
    border: none;
    background: transparent;
    padding: 7px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--fe-text-muted);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.18s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.fe-view-btn.active {
    background: var(--fe-green-medium);
    color: #ffffff;
}

/* Category Pills */
.fe-category-pills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.fe-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--fe-border);
    background: #ffffff;
    color: var(--fe-text-main);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.18s ease;
}

.fe-pill-btn:hover {
    border-color: var(--fe-green-primary);
    color: var(--fe-green-primary);
    background: var(--fe-green-light);
}

.fe-pill-btn.active {
    background: var(--fe-green-primary);
    border-color: var(--fe-green-primary);
    color: #ffffff;
}

.fe-pill-count {
    display: inline-block;
    background: rgba(0, 0, 0, 0.08);
    font-size: 0.75rem;
    padding: 1px 7px;
    border-radius: 999px;
    font-weight: 600;
}

.fe-pill-btn.active .fe-pill-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* Visibility toggles */
.fe-view-hidden {
    display: none !important;
}

/* --- Calendar Schedule View Styles --- */
.fe-calendar-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.fe-calendar-day-section {
    background: #ffffff;
    border: 1px solid var(--fe-border);
    border-radius: var(--fe-radius);
    box-shadow: var(--fe-shadow);
    overflow: hidden;
}

.fe-day-banner {
    background: var(--fe-green-subtle);
    border-bottom: 1.5px solid var(--fe-border);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fe-day-banner-badge {
    background: var(--fe-green-primary);
    color: #ffffff;
    border-radius: 8px;
    padding: 4px 10px;
    text-align: center;
    min-width: 50px;
}

.fe-day-badge-name {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.fe-day-badge-num {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.1;
}

.fe-day-banner-text {
    flex: 1;
}

.fe-day-banner-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fe-green-dark);
    margin: 0 0 2px 0;
}

.fe-day-banner-count {
    font-size: 0.82rem;
    color: var(--fe-text-muted);
}

.fe-day-schedule-rows {
    display: flex;
    flex-direction: column;
}

.fe-schedule-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f0f4f1;
    transition: background 0.18s ease;
}

.fe-schedule-row:last-child {
    border-bottom: none;
}

.fe-schedule-row:hover {
    background: #fafcfb;
}

.fe-schedule-row.row-selected {
    background: #f1f8f3;
    border-color: #d4ebd9;
}

.fe-schedule-row.row-sold-out {
    opacity: 0.85;
}

/* Checkbox Column */
.fe-row-select-col {
    display: flex;
    align-items: center;
}

.fe-row-checkbox-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.fe-row-checkbox-label input[type="checkbox"] {
    width: 22px !important;
    height: 22px !important;
    accent-color: var(--fe-green-primary) !important;
    cursor: pointer !important;
    margin: 0 !important;
}

/* Schedule Row Thumbnail Photo */
.fe-row-thumb-col {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fe-row-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--fe-border);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    background: #eef2ee;
}

.fe-row-thumb-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: var(--fe-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

@media (max-width: 640px) {
    .fe-row-thumb,
    .fe-row-thumb-placeholder {
        width: 44px;
        height: 44px;
    }
}

/* Time Column */
.fe-row-time-col {
    min-width: 140px;
}

.fe-row-time-main {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--fe-green-dark);
    white-space: nowrap;
}

/* Main Column (Title, Meta, Slots) */
.fe-row-main-col {
    flex: 1;
    min-width: 220px;
}

.fe-row-title-bar {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.fe-row-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--fe-green-dark);
    margin: 0;
    line-height: 1.3;
}

.fe-row-cat-pill {
    font-size: 0.72rem;
    background: var(--fe-green-light);
    color: var(--fe-green-primary);
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
}

.fe-row-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.82rem;
    color: var(--fe-text-muted);
    flex-wrap: wrap;
}

.fe-row-slots {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.fe-row-slots-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--fe-text-muted);
}

.fe-session-chip {
    font-size: 0.76rem;
    background: #ffffff;
    border: 1px solid var(--fe-border);
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 600;
}

.fe-session-chip.slot-avail {
    border-color: #b7e1cd;
    color: #137333;
}

.fe-session-chip.slot-sold {
    border-color: #d1d5db;
    color: #6b7280;
    text-decoration: line-through;
}

/* Badge Column */
.fe-row-badge-col {
    white-space: nowrap;
}

.fe-badge-status {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.badge-available {
    background: #e6f4ea;
    color: #137333;
    border: 1px solid #b7e1cd;
}

.badge-limited {
    background: #fef7e0;
    color: #b06000;
    border: 1px solid #fce8b2;
}

.badge-sold-out {
    background: #202124;
    color: #ffffff;
    border: 1px solid #3c4043;
}

/* Actions Column (i button & book link) */
.fe-row-actions-col {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* The (i) Circular Info Button */
.fe-btn-info-circle,
.fe-card-btn-info {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--fe-green-primary);
    background: #ffffff;
    color: var(--fe-green-primary);
    font-family: Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.18s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.fe-btn-info-circle:hover,
.fe-card-btn-info:hover {
    background: var(--fe-green-primary);
    color: #ffffff;
    transform: scale(1.08);
}

.fe-row-btn-book {
    background: var(--fe-green-primary);
    color: #ffffff !important;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: background 0.18s ease;
    white-space: nowrap;
}

.fe-row-btn-book:hover {
    background: var(--fe-green-dark);
}

.fe-row-btn-sold {
    background: #f0f2f0;
    color: #6a776e;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid var(--fe-border);
    cursor: pointer;
}

/* --- Card Grid View Styles --- */
.fe-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
}

.fe-event-card {
    background: var(--fe-card-bg);
    border: 1px solid var(--fe-border);
    border-radius: var(--fe-radius);
    overflow: hidden;
    box-shadow: var(--fe-shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    position: relative;
}

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

.fe-event-card.card-selected {
    border-color: var(--fe-green-primary);
    box-shadow: 0 0 0 2px var(--fe-green-primary);
}

.fe-card-media {
    position: relative;
    aspect-ratio: 16/9;
    background: #eef2ee;
    overflow: hidden;
}

.fe-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fe-badge-row-top {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.fe-badge-cost {
    background: rgba(27, 56, 36, 0.88);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 999px;
}

.fe-card-btn-info {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.fe-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fe-event-date-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.fe-date-badge {
    background: var(--fe-green-light);
    border: 1px solid #c9e0d1;
    border-radius: 8px;
    padding: 4px 8px;
    text-align: center;
    min-width: 44px;
}

.fe-date-day-name {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--fe-green-primary);
}

.fe-date-day-num {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--fe-green-dark);
}

.fe-date-meta-text {
    font-size: 0.88rem;
    font-weight: 600;
}

.fe-date-meta-time {
    font-size: 0.82rem;
    color: var(--fe-text-muted);
}

.fe-event-title {
    font-size: 1.18rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.35;
    color: var(--fe-green-dark);
}

.fe-event-title a {
    color: inherit;
    text-decoration: none;
}

.fe-event-venue {
    font-size: 0.82rem;
    color: var(--fe-text-muted);
    margin-bottom: 0.75rem;
}

.fe-event-excerpt {
    font-size: 0.9rem;
    color: var(--fe-text-muted);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.fe-sessions-group {
    background: var(--fe-green-subtle);
    border: 1px solid var(--fe-border);
    border-radius: 8px;
    padding: 8px 10px;
    margin-bottom: 1rem;
}

.fe-sessions-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--fe-text-muted);
    margin-bottom: 4px;
}

.fe-session-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.fe-card-footer {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f4f1;
}

.fe-card-select-wrap {
    margin-bottom: 0.75rem;
}

.fe-card-select-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
}

.fe-btn-book {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--fe-green-primary);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background 0.18s ease;
}

.fe-btn-book:hover {
    background: var(--fe-green-dark);
}

.fe-btn-soldout {
    display: block;
    width: 100%;
    text-align: center;
    background: #f3f5f3;
    color: #718076 !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid var(--fe-border);
    text-decoration: none !important;
}

/* --- (i) Details Popup Modal --- */
.fe-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 30, 20, 0.65);
    backdrop-filter: blur(5px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.fe-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.fe-modal-window {
    background: #ffffff;
    border-radius: 16px;
    max-width: 620px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    animation: feModalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes feModalPop {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fe-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--fe-border);
    font-size: 1.5rem;
    line-height: 1;
    color: var(--fe-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.15s ease;
}

.fe-modal-close:hover {
    background: #ffffff;
    color: #000000;
}

.fe-modal-media {
    position: relative;
    aspect-ratio: 16/9;
    max-height: 240px;
    background: #eef2ee;
    overflow: hidden;
}

.fe-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fe-modal-badges {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.fe-modal-cost {
    background: rgba(27, 56, 36, 0.9);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
}

.fe-modal-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.fe-modal-meta-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.fe-modal-date-chip,
.fe-modal-time-chip,
.fe-modal-category-chip {
    font-size: 0.8rem;
    background: var(--fe-green-light);
    color: var(--fe-green-primary);
    padding: 3px 9px;
    border-radius: 999px;
    font-weight: 600;
}

.fe-modal-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--fe-green-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.fe-modal-location {
    font-size: 0.88rem;
    color: var(--fe-text-muted);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.fe-modal-sessions {
    background: var(--fe-green-subtle);
    border: 1px solid var(--fe-border);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 1.25rem;
}

.fe-modal-sessions-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--fe-green-dark);
    margin-bottom: 6px;
}

.fe-modal-session-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* Description Embedded Photo */
.fe-modal-desc-photo-wrap {
    margin-bottom: 1.25rem;
    border-radius: 12px;
    overflow: hidden;
    max-height: 280px;
    border: 1px solid var(--fe-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background: #eef2ee;
}

.fe-modal-desc-photo {
    width: 100%;
    height: 100%;
    max-height: 280px;
    object-fit: cover;
    display: block;
}

.fe-modal-description {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--fe-text-main);
    margin-bottom: 1.5rem;
}

.fe-modal-description p {
    margin-bottom: 0.85rem;
}

.fe-modal-footer {
    display: flex;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--fe-border);
}

.fe-modal-btn-select {
    flex: 1;
    background: var(--fe-green-primary);
    color: #ffffff;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.18s ease;
}

.fe-modal-btn-select:hover {
    background: var(--fe-green-dark);
}

.fe-modal-btn-select.selected {
    background: #1e7e34;
}

.fe-modal-btn-select.disabled {
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
}

.fe-modal-btn-direct {
    background: #ffffff;
    color: var(--fe-green-primary) !important;
    border: 1.5px solid var(--fe-green-primary);
    padding: 11px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.18s ease;
}

.fe-modal-btn-direct:hover {
    background: var(--fe-green-light);
}

/* --- Sleek Floating Action Dock --- */
.fe-main-view {
    padding-bottom: 120px; /* Ensures content is never obscured by floating dock */
}

.fe-booking-tray {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(140%);
    width: min(92%, 840px);
    background: #0f172a;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #ffffff;
    z-index: 99999;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 2px 6px rgba(0, 0, 0, 0.2);
    padding: 10px 16px 10px 20px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    opacity: 0;
    pointer-events: none;
}

.fe-booking-tray.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.fe-tray-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: nowrap;
    width: 100%;
}

.fe-tray-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.fe-tray-badge-wrap {
    background: #10b981;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
}

.fe-tray-text {
    display: flex;
    flex-direction: column;
}

.fe-tray-heading {
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.2;
    color: #ffffff;
}

.fe-tray-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.fe-tray-chips {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 0;
    max-width: 360px;
    scrollbar-width: none; /* Firefox */
}

.fe-tray-chips::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.fe-tray-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    color: #ffffff;
    white-space: nowrap;
    max-width: 170px;
    flex-shrink: 0;
}

.fe-tray-chip-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fe-tray-chip-remove {
    background: rgba(255, 255, 255, 0.25) !important;
    border: none !important;
    color: #ffffff !important;
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    margin: 0 0 0 2px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: none !important;
    outline: none !important;
    transition: background 0.15s ease !important;
}

.fe-tray-chip-remove:hover {
    background: #ef4444 !important;
}

.fe-tray-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.fe-tray-clear-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 6px 8px;
    text-decoration: underline;
    transition: color 0.15s ease;
}

.fe-tray-clear-btn:hover {
    color: #ffffff;
}

.fe-tray-proceed-btn {
    background: #059669;
    color: #ffffff !important;
    border: none;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    white-space: nowrap;
}

.fe-tray-proceed-btn:hover {
    background: #047857;
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 6px 18px rgba(5, 150, 105, 0.45);
}

/* --- Review Drawer Styles --- */
.fe-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 30, 20, 0.6);
    backdrop-filter: blur(4px);
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.fe-drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.fe-drawer-window {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(560px, 100vw);
    background: #ffffff;
    box-shadow: -12px 0 45px rgba(0, 0, 0, 0.22);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100001;
}

.fe-drawer-backdrop.active .fe-drawer-window {
    transform: translateX(0);
}

.fe-drawer-header {
    padding: 1.25rem 1.75rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.fe-drawer-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    font-size: 1.35rem;
    font-weight: 800;
    color: #1e3a2f;
    letter-spacing: -0.015em;
    margin: 0 0 4px 0;
}

.fe-drawer-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    font-size: 0.84rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.fe-drawer-close {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.35rem;
    line-height: 1;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.fe-drawer-close:hover {
    background: #fee2e2;
    color: #ef4444;
    border-color: #fecaca;
}

/* Scrollable Drawer Body */
.fe-drawer-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1.5rem 1.75rem 2.5rem;
}

.fe-drawer-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1e3a2f;
    margin: 1.5rem 0 0.85rem;
    padding-bottom: 8px;
    border-bottom: 2px solid #edf2f7;
}

.fe-drawer-body > .fe-drawer-section-title:first-child {
    margin-top: 0;
}

.fe-section-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #e8f5e9;
    color: #1b5e20;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 50%;
}

.fe-drawer-list {
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.fe-drawer-empty {
    text-align: center;
    color: #64748b;
    padding: 2.5rem 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px dashed #cbd5e1;
    font-size: 0.92rem;
}

/* Activity Item in Drawer */
.fe-drawer-item {
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.fe-drawer-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.fe-drawer-item-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.fe-drawer-item-num {
    background: #e8f5e9;
    color: #1b5e20;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    flex-shrink: 0;
}

.fe-drawer-item-thumb-wrap {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #cbd5e1;
    background: #eef2ee;
}

.fe-drawer-item-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fe-drawer-item-title-wrap {
    flex: 1;
    min-width: 0;
}

.fe-drawer-item-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
    line-height: 1.35;
}

.fe-drawer-item-date {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.4;
}

.fe-drawer-remove-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #94a3b8;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1.15rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.15s ease;
    flex-shrink: 0;
    padding: 0;
    margin-left: 8px;
}

.fe-drawer-remove-item:hover {
    background: #fee2e2;
    color: #ef4444;
    border-color: #fecaca;
}

.fe-drawer-item-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

.fe-drawer-attendees-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fe-attendees-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
}

.fe-attendees-spinner {
    display: inline-flex;
    align-items: center;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
}

.fe-spin-btn {
    background: #ffffff;
    border: none;
    width: 32px;
    height: 32px;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}

.fe-spin-btn:hover:not(:disabled) {
    background: #e2e8f0;
    color: #0f172a;
}

.fe-spin-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    background: #f8fafc;
}

.fe-spin-value {
    min-width: 34px;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 800;
    color: #0f172a;
}

.fe-drawer-item-cost {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1b5e20;
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* Unified Form */
.fe-unified-form {
    margin-top: 0.5rem;
}

.fe-form-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fe-form-field {
    margin-bottom: 0;
}

.fe-form-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
}

.fe-req {
    color: #ef4444;
    font-weight: 700;
}

.fe-form-field input[type="text"],
.fe-form-field input[type="email"],
.fe-form-field input[type="tel"],
.fe-form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #0f172a;
    background: #ffffff;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
}

.fe-form-field input:focus,
.fe-form-field textarea:focus {
    border-color: #2d5a27;
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.15);
    outline: none;
}

.fe-form-field textarea {
    resize: vertical;
    min-height: 72px;
}

.fe-field-hint {
    display: block;
    font-size: 0.78rem;
    color: #64748b;
    margin-top: 5px;
    line-height: 1.3;
}

/* FluentCRM Newsletter Opt-In */
.fe-newsletter-optin-wrap {
    margin: 1.25rem 0;
    padding: 14px 16px;
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.fe-newsletter-optin-wrap:hover {
    border-color: #86efac;
    background: #ecfdf5;
}

.fe-newsletter-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.fe-newsletter-label input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    accent-color: #2d5a27 !important;
    cursor: pointer !important;
    margin-top: 2px !important;
    flex-shrink: 0 !important;
}

.fe-newsletter-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.fe-newsletter-text strong {
    font-size: 0.92rem;
    color: #166534;
    line-height: 1.3;
}

.fe-newsletter-sub {
    font-size: 0.8rem;
    color: #15803d;
    line-height: 1.4;
}

.fe-booking-error-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.88rem;
    margin-top: 1rem;
    line-height: 1.4;
}

.fe-drawer-footer {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fe-drawer-submit-btn {
    width: 100%;
    background: #2d5a27;
    color: #ffffff;
    border: none;
    padding: 16px 20px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.02rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(45, 90, 39, 0.25);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.fe-drawer-submit-btn:hover:not(:disabled) {
    background: #21431d;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(45, 90, 39, 0.35);
}

.fe-drawer-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.fe-drawer-clear-btn {
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 0.85rem;
    cursor: pointer;
    text-align: center;
    padding: 8px;
    text-decoration: underline;
    transition: color 0.15s ease;
}

.fe-drawer-clear-btn:hover {
    color: #dc2626;
}

/* Success View */
.fe-success-view {
    text-align: center;
    padding: 2rem 1.75rem;
}

.fe-success-icon {
    width: 64px;
    height: 64px;
    line-height: 64px;
    background: #dcfce7;
    color: #166534;
    border-radius: 50%;
    font-size: 32px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fe-success-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    font-size: 1.45rem;
    font-weight: 800;
    color: #1e3a2f;
    margin: 0 0 8px;
}

.fe-success-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0 0 20px;
    line-height: 1.5;
}

.fe-success-ref-card {
    background: #f0fdf4;
    border: 1.5px dashed #22c55e;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 20px;
}

.fe-ref-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #166534;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.fe-ref-code {
    font-family: monospace;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e3a2f;
    letter-spacing: 1px;
}

.fe-success-activities-list {
    text-align: left;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.fe-success-act-item {
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.88rem;
    gap: 4px;
}

.fe-success-act-item:last-child {
    border-bottom: none;
}

.fe-success-badge {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    align-self: flex-start;
}

.fe-success-farm-card {
    text-align: left;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 24px;
}

.fe-btn-done {
    width: 100%;
    background: #2d5a27;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.98rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.2);
    transition: background 0.15s ease;
}

.fe-btn-done:hover {
    background: #21431d;
}

/* --- Multi-Session Slot Chips & Buttons --- */
.fe-row-slots,
.fe-card-slots {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.fe-row-slots-label,
.fe-card-slots-label {
    font-size: 0.76rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fe-slot-pills {
    display: inline-flex;
    gap: 6px;
    flex-wrap: wrap;
}

.fe-session-chip-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
    color: #166534;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
    line-height: 1.3;
}

.fe-session-chip-btn:hover:not(:disabled) {
    background: #dcfce7;
    border-color: #86efac;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(22, 101, 52, 0.15);
}

.fe-session-chip-btn.slot-active {
    background: #2d5a27;
    color: #ffffff;
    border-color: #2d5a27;
    box-shadow: 0 2px 6px rgba(45, 90, 39, 0.25);
}

.fe-session-chip-btn.slot-sold,
.fe-session-chip-btn:disabled {
    background: #f1f5f9;
    color: #94a3b8;
    border-color: #e2e8f0;
    cursor: not-allowed;
    opacity: 0.75;
}

/* Modal Session Chips */
.fe-modal-session-chip-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
    color: #166534;
    cursor: pointer;
    transition: all 0.15s ease;
    margin: 3px 4px 3px 0;
}

.fe-modal-session-chip-btn:hover:not(:disabled) {
    background: #dcfce7;
    border-color: #86efac;
}

.fe-modal-session-chip-btn.active {
    background: #2d5a27;
    color: #ffffff;
    border-color: #2d5a27;
}

.fe-modal-session-chip-btn.sold-out,
.fe-modal-session-chip-btn:disabled {
    background: #f1f5f9;
    color: #94a3b8;
    border-color: #e2e8f0;
    cursor: not-allowed;
}

/* Drawer Slot Picker */
.fe-drawer-slot-picker {
    background: #f8fafc;
    border: 1.5px dashed #cbd5e1;
    border-radius: 8px;
    padding: 10px 12px;
    margin: 8px 0 10px 0;
}

.fe-drawer-slot-label {
    display: block;
    font-size: 0.76rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.fe-drawer-slot-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.fe-drawer-slot-btn {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1.5px solid #cbd5e1;
    background: #ffffff;
    color: #334155;
    cursor: pointer;
    transition: all 0.15s ease;
}

.fe-drawer-slot-btn:hover:not(:disabled) {
    border-color: #2d5a27;
    color: #2d5a27;
    background: #f0fdf4;
}

.fe-drawer-slot-btn.active {
    background: #2d5a27;
    border-color: #2d5a27;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(45, 90, 39, 0.2);
}

.fe-drawer-slot-btn.disabled,
.fe-drawer-slot-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #94a3b8;
}

.fe-drawer-active-slot-text {
    color: #166534;
    font-weight: 600;
}

/* --- Payment & Donation Styles --- */
.fe-payment-box {
    background: #fbfbf9;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 1.5rem;
}

.fe-donation-section {
    margin-bottom: 14px;
}

.fe-donation-label {
    display: block;
    font-weight: 700;
    font-size: 0.92rem;
    color: #1e3a2f;
    margin-bottom: 4px;
}

.fe-donation-sub {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.fe-donation-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.fe-donation-pill {
    padding: 7px 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 999px;
    background: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    color: #334155;
    cursor: pointer;
    transition: all 0.15s ease;
}

.fe-donation-pill:hover {
    border-color: #2d5a27;
    color: #2d5a27;
    background: #f0fdf4;
}

.fe-donation-pill.active {
    background: #2d5a27;
    color: #ffffff;
    border-color: #2d5a27;
    box-shadow: 0 2px 6px rgba(45, 90, 39, 0.2);
}

.fe-custom-donation-wrap {
    margin-top: 10px;
}

.fe-custom-input-group {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    overflow: hidden;
}

.fe-currency-prefix {
    padding: 6px 10px;
    background: #f1f5f9;
    color: #475569;
    font-weight: 700;
    font-size: 0.9rem;
    border-right: 1px solid #cbd5e1;
}

.fe-custom-input {
    border: none !important;
    padding: 6px 10px !important;
    width: 100px !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    outline: none !important;
    box-shadow: none !important;
}

.fe-price-summary {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 14px;
}

.fe-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: #475569;
    padding: 3px 0;
}

.fe-summary-total {
    border-top: 1.5px solid #e2e8f0;
    margin-top: 6px;
    padding-top: 8px;
    font-size: 1.05rem;
    font-weight: 800;
    color: #1e3a2f;
}

.fe-stripe-badge-note {
    font-size: 0.78rem;
    color: #64748b;
    margin-top: 6px;
    text-align: right;
}

.fe-drawer-submit-btn.fe-btn-stripe {
    background: #635bff;
    box-shadow: 0 4px 14px rgba(99, 91, 255, 0.3);
}

.fe-drawer-submit-btn.fe-btn-stripe:hover:not(:disabled) {
    background: #5046e5;
    box-shadow: 0 6px 18px rgba(99, 91, 255, 0.4);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .fe-hub-title {
        font-size: 1.8rem;
    }
    .fe-schedule-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .fe-row-select-col {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .fe-row-actions-col {
        width: 100%;
        justify-content: space-between;
    }
    .fe-tray-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .fe-tray-chips {
        display: none;
    }
    .fe-tray-actions {
        width: 100%;
        justify-content: space-between;
    }
    .fe-tray-proceed-btn {
        flex: 1;
    }
    .fe-modal-footer {
        flex-direction: column;
    }
    .fe-category-pills {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        padding-bottom: 6px;
    }
}
