@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg: #3a5a40;
    --bg-dark: #2d4730;
    --bg-card: rgba(255, 255, 255, 0.07);
    --bg-card-hover: rgba(255, 255, 255, 0.11);
    --bg-selected: rgba(201, 160, 82, 0.15);
    --gold: #c9a052;
    --gold-hover: #d4b574;
    --white: #ffffff;
    --white-80: rgba(255, 255, 255, 0.8);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-08: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.14);
    --border-gold: rgba(201, 160, 82, 0.5);
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

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

html { font-size: 16px; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-dark);
    color: var(--white);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ─── HEADER ─── */
.site-header {
    background: var(--bg);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.logo-name {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--white);
}

.logo-sub {
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.2px;
}

/* ─── PROGRESS BAR ─── */
.progress-wrap {
    background: var(--bg);
    padding: 20px 24px 24px;
    border-bottom: 1px solid var(--border);
}

.progress-steps {
    display: flex;
    align-items: center;
    max-width: 480px;
    margin: 0 auto;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}

.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--white-30);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    font-size: 11px;
    font-weight: 700;
    color: var(--white-30);
}

.progress-step.active .step-dot,
.progress-step.done .step-dot {
    border-color: var(--gold);
    color: var(--gold);
}

.progress-step.done .step-dot {
    background: var(--gold);
    color: var(--bg-dark);
}

.step-dot::after {
    content: attr(data-num);
}

.progress-step.done .step-dot::after {
    content: '✓';
}

.step-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--white-30);
    transition: color 0.25s;
    white-space: nowrap;
}

.progress-step.active .step-label,
.progress-step.done .step-label {
    color: var(--white-80);
}

.progress-line {
    flex: 1;
    height: 2px;
    background: var(--white-15);
    margin: 0 8px;
    margin-bottom: 22px;
    transition: background 0.25s;
}

.progress-line.done {
    background: var(--gold);
}

/* ─── MAIN CONTENT ─── */
.main-content {
    max-width: 560px;
    margin: 0 auto;
    padding: 28px 20px 60px;
}

/* ─── STEP SECTIONS ─── */
.step-section { display: none; }
.step-section.active { display: block; }

.step-title {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.4px;
    margin-bottom: 6px;
}

.step-subtitle {
    font-size: 14px;
    color: var(--white-60);
    margin-bottom: 28px;
}

/* ─── SECTION GROUPS ─── */
.section-group {
    margin-bottom: 28px;
}

.group-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.group-desc {
    font-size: 13px;
    color: var(--white-60);
    margin-bottom: 12px;
}

/* ─── ITEM CARDS ─── */
.item-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 18px;
    margin-bottom: 8px;
    transition: background 0.15s, border-color 0.15s;
}

.item-card.has-qty {
    background: var(--bg-selected);
    border-color: var(--border-gold);
}

.item-info {
    flex: 1;
    margin-right: 16px;
}

.item-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.item-desc {
    font-size: 12px;
    color: var(--white-60);
    margin-bottom: 2px;
}

.item-price {
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
}

/* ─── STEPPER ─── */
.stepper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.stepper-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--white-30);
    background: transparent;
    color: var(--white);
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.15s;
    user-select: none;
}

.stepper-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 160, 82, 0.1);
}

.stepper-btn:active { transform: scale(0.92); }

.stepper-btn.dec:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.stepper-qty {
    font-size: 18px;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}

/* ─── RUNNING TOTAL ─── */
.running-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-top: 4px;
    margin-bottom: 12px;
}

.total-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--white-80);
}

.total-amount {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}

/* ─── DATE OPTIONS ─── */
.date-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.date-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 18px;
    cursor: pointer;
    transition: all 0.15s;
    text-align: center;
    user-select: none;
}

.date-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--white-30);
}

.date-card.selected {
    background: var(--bg-selected);
    border-color: var(--gold);
}

.date-card-day {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.date-card-date {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.date-card-label {
    font-size: 12px;
    color: var(--white-60);
}

.date-card.selected .date-card-label {
    color: var(--gold);
}

.collection-note {
    font-size: 13px;
    color: var(--white-60);
    line-height: 1.6;
    padding: 14px 16px;
    background: var(--white-08);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
    margin-bottom: 12px;
}

/* ─── FORM ─── */
.form-group {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--white-80);
    margin-bottom: 7px;
}

.optional {
    font-weight: 400;
    color: var(--white-30);
    font-size: 12px;
}

.form-input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 15px;
    font-family: inherit;
    color: var(--white);
    outline: none;
    transition: border-color 0.15s, background 0.15s;
}

.form-input::placeholder { color: var(--white-30); }

.form-input:focus {
    border-color: var(--gold);
    background: var(--bg-card-hover);
}

.form-input.error {
    border-color: #e74c3c;
}

/* ─── REVIEW ─── */
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 16px;
}

.review-section {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.review-section:last-child { border-bottom: none; }

.review-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.review-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.5;
}

.review-items-list { display: flex; flex-direction: column; gap: 6px; }

.review-item-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--white-80);
}

.review-item-row span:last-child {
    font-weight: 600;
    color: var(--white);
}

.review-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: rgba(201, 160, 82, 0.1);
    border-top: 1px solid var(--border-gold);
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
}

.payment-note {
    font-size: 13px;
    color: var(--white-60);
    text-align: center;
    margin-bottom: 16px;
    padding: 12px;
}

/* ─── BUTTONS ─── */
.step-nav {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.btn-primary, .btn-secondary, .btn-pay {
    flex: 1;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all 0.15s;
    letter-spacing: 0.2px;
}

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

.btn-primary:hover { background: #f0f0f0; }
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
    background: transparent;
    color: var(--white-80);
    border: 2px solid var(--border);
    flex: 0 0 auto;
    padding: 16px 24px;
}

.btn-secondary:hover {
    border-color: var(--white-30);
    color: var(--white);
}

.btn-pay {
    background: var(--gold);
    color: var(--bg-dark);
}

.btn-pay:hover { background: var(--gold-hover); }
.btn-pay:active { transform: scale(0.98); }

.btn-pay:disabled, .btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ─── ERRORS ─── */
.error-msg {
    font-size: 13px;
    color: #ff7b7b;
    margin-top: 8px;
    margin-bottom: 4px;
}

.hidden { display: none !important; }

/* ─── LOADING ─── */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(29, 55, 35, 0.92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 100;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--white-15);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-overlay p {
    font-size: 15px;
    color: var(--white-80);
    font-weight: 500;
}

/* ─── CONFIRMATION PAGE ─── */
.confirm-wrap {
    max-width: 540px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.confirm-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(92, 184, 92, 0.15);
    border: 2px solid #5cb85c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 24px;
    color: #5cb85c;
}

.confirm-heading {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    text-align: center;
}

.confirm-sub {
    font-size: 15px;
    color: var(--white-60);
    text-align: center;
    margin-bottom: 32px;
}

.confirm-ref {
    display: inline-block;
    background: var(--bg-selected);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}

.confirm-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.confirm-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
}

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

.confirm-row-label {
    font-size: 13px;
    color: var(--white-60);
    font-weight: 500;
    flex-shrink: 0;
    margin-right: 16px;
}

.confirm-row-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-align: right;
    line-height: 1.5;
}

.confirm-total-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(201, 160, 82, 0.1);
    border-top: 1px solid var(--border-gold);
    font-size: 17px;
    font-weight: 800;
    color: var(--white);
}

.what-next {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 20px;
}

.what-next h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.what-next ol {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.what-next li {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: var(--white-80);
    line-height: 1.5;
}

.what-next li::before {
    content: attr(data-num);
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--gold);
    color: var(--bg-dark);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

/* ─── ADMIN ─── */
.admin-body {
    background: #1e2e22;
    color: var(--white);
    min-height: 100vh;
}

.admin-login {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.login-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    width: 100%;
    max-width: 360px;
    text-align: center;
}

.login-box .logo-name {
    font-size: 32px;
    margin-bottom: 4px;
}

.login-box .logo-sub {
    margin-bottom: 28px;
    display: block;
}

.login-box .form-group { text-align: left; }

.admin-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: var(--bg-dark);
    border-right: 1px solid var(--border);
    padding: 24px 0;
    display: flex;
    flex-direction: column;
}

.sidebar-logo {
    padding: 0 20px 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.sidebar-logo .logo-name { font-size: 22px; }

.sidebar-nav { display: flex; flex-direction: column; gap: 2px; padding: 0 10px; flex: 1; }

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--white-60);
    cursor: pointer;
    transition: all 0.15s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.nav-item:hover { color: var(--white); background: var(--white-08); }
.nav-item.active { color: var(--white); background: var(--bg-card); }
.nav-item .nav-icon { font-size: 16px; width: 20px; text-align: center; }

.admin-main { overflow-y: auto; }

.admin-section { display: none; padding: 32px; }
.admin-section.active { display: block; }

.admin-section-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

/* ─── ADMIN STATS ─── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--white-60);
    margin-bottom: 8px;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

.stat-value.gold { color: var(--gold); }

/* ─── ADMIN TABLE ─── */
.bookings-table-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.bookings-table {
    width: 100%;
    border-collapse: collapse;
}

.bookings-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--white-60);
    border-bottom: 1px solid var(--border);
    background: rgba(0,0,0,0.15);
}

.bookings-table td {
    padding: 13px 16px;
    font-size: 14px;
    color: var(--white-80);
    border-bottom: 1px solid var(--border);
}

.bookings-table tr:last-child td { border-bottom: none; }
.bookings-table tr:hover td { background: var(--white-08); }

.status-pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-confirmed { background: rgba(92,184,92,0.15); color: #7de87d; }
.status-pending { background: rgba(201,160,82,0.15); color: var(--gold); }
.status-collected { background: rgba(100,149,237,0.15); color: #8ab4f8; }
.status-cancelled { background: rgba(231,76,60,0.15); color: #ff8a8a; }

/* ─── CALENDAR ─── */
.calendar-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 20px;
    align-items: start;
}

#adminCalendar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
}

.fc { color: var(--white); }
.fc-theme-standard td, .fc-theme-standard th, .fc-theme-standard .fc-scrollgrid { border-color: var(--border) !important; }
.fc .fc-toolbar-title { font-size: 17px; font-weight: 700; color: var(--white); }
.fc .fc-button { background: var(--bg-card) !important; border-color: var(--border) !important; color: var(--white) !important; font-size: 13px !important; }
.fc .fc-button:hover { background: var(--bg-card-hover) !important; }
.fc .fc-daygrid-day-number { color: var(--white-60); font-size: 13px; }
.fc .fc-day-today { background: rgba(201,160,82,0.08) !important; }
.fc .fc-event { background: var(--gold) !important; border: none !important; color: var(--bg-dark) !important; font-size: 12px !important; font-weight: 600 !important; }
.fc .fc-col-header-cell-cushion { color: var(--white-60) !important; font-size: 12px !important; font-weight: 600 !important; }

.day-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.day-panel-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: rgba(0,0,0,0.15);
}

.day-panel-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.day-panel-count {
    font-size: 13px;
    color: var(--gold);
}

.day-panel-body { padding: 0; }

.pickup-item {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.1s;
}

.pickup-item:last-child { border-bottom: none; }
.pickup-item:hover { background: var(--white-08); }

.pickup-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 3px;
}

.pickup-addr {
    font-size: 12px;
    color: var(--white-60);
    margin-bottom: 3px;
}

.pickup-items-text {
    font-size: 12px;
    color: var(--gold);
}

.day-panel-empty {
    padding: 32px 20px;
    text-align: center;
    color: var(--white-30);
    font-size: 14px;
}

/* ─── MAP ─── */
.map-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 20px;
}

.map-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
}

.map-toolbar h3 {
    font-size: 15px;
    font-weight: 700;
}

.btn-optimize {
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-optimize:hover { background: var(--gold-hover); }
.btn-optimize:disabled { opacity: 0.4; cursor: not-allowed; }

#routeMap {
    width: 100%;
    height: 420px;
}

.map-placeholder {
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-30);
    font-size: 14px;
    flex-direction: column;
    gap: 8px;
}

/* ─── ADMIN FILTERS ─── */
.filter-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--white-60);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
}

.filter-btn:hover { color: var(--white); border-color: var(--white-30); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--bg-dark); font-weight: 700; }

/* ─── SHARE ROUTE ─── */
.day-panel-footer {
    padding: 14px 18px;
    border-top: 1px solid var(--border);
}

.btn-share {
    width: 100%;
    padding: 12px;
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-share:hover { background: var(--gold-hover); }
.btn-share:active { transform: scale(0.98); }

.share-reveal { margin-top: 12px; }

.share-url-input {
    width: 100%;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 9px 12px;
    font-size: 11px;
    color: var(--white-60);
    font-family: monospace;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.share-btns { display: flex; gap: 8px; }

.btn-copy {
    flex: 1;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--white-80);
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.15s;
}

.btn-copy:hover { border-color: var(--white-30); color: var(--white); }
.btn-copy.copied { border-color: #5cb85c; color: #7de87d; }

.btn-open-maps {
    flex: 1;
    padding: 10px;
    background: var(--white);
    border-radius: var(--radius-sm);
    color: var(--bg-dark);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.btn-open-maps:hover { background: #f0f0f0; }

.share-note {
    font-size: 11px;
    color: var(--white-30);
    margin-top: 8px;
    text-align: center;
    line-height: 1.4;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .date-options { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .calendar-layout { grid-template-columns: 1fr; }
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
}
