:root { --alc-gold: #c5a000; --alc-text: #1a1a1a; --alc-border: #e1e4e8; --alc-bg: #f8fafc; }

.alchemy-booking-wizard { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; max-width: 1200px; margin: auto; padding: 20px; color: #111; position: relative; }


/* Scheduler Header: RESTORED ANCIENT STYLING */
.alc-scheduler-header { margin-bottom: 30px; text-align: center; }
.alc-month-row { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 15px; }
.alc-month-row h2 { margin: 0; font-size: 28px; font-weight: 700; }
.dashicons-calendar-alt { font-size: 28px; color: var(--alc-gold); cursor: pointer; height: 28px; width: 28px; }

.alc-today-box { margin-bottom: 15px; }
.alc-pill-btn { background: #f4f4f4; border: none; padding: 5px 15px; border-radius: 4px; font-weight: 700; font-size: 12px; cursor: pointer; }

/* Layout Panels */
.alc-flex-layout { display: flex; gap: 40px; align-items: flex-start; }
.alc-main-panel { flex: 1; min-width: 0; }
.alc-summary-sidebar { width: 350px; position: sticky; top: 40px; }

/* Cards & Grid */
.alchemy-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }
.alchemy-service-card { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 25px; transition: 0.3s; display: flex; flex-direction: column; }
.alchemy-service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-color: var(--alc-gold); }

.card-header-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.card-header-row h3 { margin: 0; font-size: 20px; color: #111; }
.card-price { font-weight: 800; font-size: 18px; color: var(--alc-gold); }
.card-duration { color: #666; font-size: 14px; margin-bottom: 20px; }
.card-footer { display: flex; gap: 10px; margin-top: auto; }

.btn-book { flex: 1; background: #111; color: #fff; border: none; padding: 12px; border-radius: 8px; font-weight: 700; cursor: pointer; transition: 0.2s; }
.btn-book:hover { background: var(--alc-gold); }
.btn-details { background: none; border: 1px solid #ddd; padding: 12px 15px; border-radius: 8px; font-weight: 600; cursor: pointer; }

/* Time Grid */
.alc-time-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; }
.time-slot-btn { background: #f8f9fa; padding: 15px; border-radius: 8px; text-align: center; cursor: pointer; font-weight: 700; border: 1px solid #eee; transition: 0.2s; }
.time-slot-btn:hover { border-color: var(--alc-gold); background: #fff; }

/* Date Scroller */
.alc-scroller-box { display: flex; align-items: center; gap: 15px; padding-bottom: 15px; margin-bottom: 30px; position: relative; border-bottom: 1px solid #f1f1f1; }
.date-track { display: flex; overflow-x: auto; gap: 20px; flex: 1; scrollbar-width: none; -ms-overflow-style: none; scroll-behavior: smooth; }
.date-track::-webkit-scrollbar { display: none; }

.date-day-item { min-width: 80px; text-align: center; cursor: pointer; padding-bottom: 10px; border-bottom: 4px solid transparent; flex-shrink: 0; transition: 0.2s; }
.date-day-item.selected { border-bottom-color: var(--alc-gold); color: var(--alc-gold); font-weight: 800; }
.date-day-item span { display: block; font-size: 11px; text-transform: uppercase; color: #94a3b8; font-weight: 700; }
.date-day-item strong { font-size: 19px; display: block; }

.scroller-nav-btn { background: #fff; border: 1px solid #e2e8f0; border-radius: 50%; width: 40px; height: 40px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; transition: 0.2s; }
.scroller-nav-btn:hover { background: #f8fafc; border-color: var(--alc-gold); }

/* Summary Card with Gold Border */
.alc-summary-card { background: #fff; border: 1px solid var(--alc-gold); border-radius: 16px; padding: 30px; position: sticky; top: 20px; }
.sum-section { margin-bottom: 15px; }
.sum-section label { font-size: 12px; color: #999; text-transform: uppercase; font-weight: 700; display: block; margin-bottom: 4px; }
.sum-section p { margin: 0; font-size: 15px; }

/* Responsive */
@media (max-width: 900px) {
    .alc-flex-layout { flex-direction: column; }
    .alc-summary-sidebar { width: 100%; position: static; }
}
