/* ═══════════════════════════════════════════════════════════════
   Laray of Light Booking — Front-End Styles
   Aesthetic: Warm luxury. Earthy. Editorial. Boutique photography.
   Palette: Deep walnut · Warm sand · Antique gold · Parchment
═══════════════════════════════════════════════════════════════ */

:root {
    --lb-walnut:     #2c2018;
    --lb-espresso:   #3d3530;
    --lb-brown:      #8B6F47;
    --lb-gold:       #c9a87c;
    --lb-gold-light: #e8d5b7;
    --lb-cream:      #faf8f5;
    --lb-parchment:  #f2ede5;
    --lb-border:     #e0d9ce;
    --lb-muted:      #a89880;
    --lb-white:      #ffffff;
    --lb-error:      #c0392b;
    --lb-radius:     10px;
    --lb-shadow:     0 4px 24px rgba(44,32,24,.10);
    --lb-trans:      all .22s ease;
}

/* ── Container ─────────────────────────────────────────────────────── */
.laray-booking-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 0;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--lb-espresso);
}

/* ── Step wrapper ──────────────────────────────────────────────────── */
.laray-step {
    background: var(--lb-white);
    border: 1px solid var(--lb-border);
    border-radius: var(--lb-radius);
    padding: 36px 40px;
    margin-bottom: 20px;
    box-shadow: var(--lb-shadow);
    animation: laray-fadein .35s ease;
}

@keyframes laray-fadein {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Step header ───────────────────────────────────────────────────── */
.laray-step-header {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--lb-border);
    padding-bottom: 18px;
    flex-wrap: wrap;
}
.laray-step-num {
    font-size: 11px;
    color: var(--lb-gold);
    letter-spacing: 2px;
    font-weight: 600;
    font-family: -apple-system, sans-serif;
    flex-shrink: 0;
}
.laray-step-title {
    font-size: 20px;
    font-weight: 400;
    color: var(--lb-walnut);
    margin: 0;
    line-height: 1.2;
    flex: 1;
}
.laray-service-label {
    font-size: 12px;
    background: var(--lb-walnut);
    color: var(--lb-gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-family: -apple-system, sans-serif;
    letter-spacing: .5px;
}
.laray-back-btn {
    background: none;
    border: none;
    color: var(--lb-brown);
    font-size: 12px;
    cursor: pointer;
    font-family: -apple-system, sans-serif;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .15s;
}
.laray-back-btn:hover { color: var(--lb-walnut); }

/* ── Service Cards ─────────────────────────────────────────────────── */
.laray-service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}
.laray-service-card {
    background: var(--lb-cream);
    border: 2px solid var(--lb-border);
    border-radius: 8px;
    padding: 22px 18px;
    text-align: left;
    cursor: pointer;
    transition: var(--lb-trans);
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: Georgia, serif;
}
.laray-service-card:hover,
.laray-service-card:focus {
    border-color: var(--lb-gold);
    background: var(--lb-parchment);
    box-shadow: 0 4px 16px rgba(139,111,71,.12);
    transform: translateY(-2px);
    outline: none;
}
.laray-service-card-name {
    font-size: 16px;
    color: var(--lb-walnut);
    font-weight: 600;
    line-height: 1.3;
}
.laray-service-card-desc {
    font-size: 13px;
    color: var(--lb-muted);
    line-height: 1.5;
    font-style: italic;
}
.laray-service-card-dur {
    font-size: 12px;
    color: var(--lb-brown);
    font-family: -apple-system, sans-serif;
    margin-top: 4px;
}

/* ── Loading & Empty states ────────────────────────────────────────── */
.laray-loading {
    text-align: center;
    padding: 40px 20px;
    color: var(--lb-muted);
    font-style: italic;
    font-size: 14px;
}
.laray-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--lb-border);
    border-top-color: var(--lb-gold);
    border-radius: 50%;
    animation: laray-spin .8s linear infinite;
    margin: 0 auto 12px;
}
@keyframes laray-spin { to { transform: rotate(360deg); } }

.laray-notice {
    background: var(--lb-parchment);
    border-left: 4px solid var(--lb-gold);
    border-radius: 4px;
    padding: 16px 20px;
    font-size: 14px;
    color: var(--lb-espresso);
    font-style: italic;
}

/* ── Calendar ──────────────────────────────────────────────────────── */
.laray-cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.laray-cal-month-label {
    font-size: 17px;
    color: var(--lb-walnut);
    font-weight: 400;
    letter-spacing: .5px;
}
.laray-cal-nav-btn {
    background: none;
    border: 1px solid var(--lb-border);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: var(--lb-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: var(--lb-trans);
}
.laray-cal-nav-btn:hover { border-color: var(--lb-gold); color: var(--lb-walnut); background: var(--lb-parchment); }
.laray-cal-nav-btn:disabled { opacity: .3; cursor: default; }

.laray-cal-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 6px;
}
.laray-cal-days-header span {
    text-align: center;
    font-size: 11px;
    color: var(--lb-muted);
    font-family: -apple-system, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 0;
}
.laray-cal-cells {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.laray-cal-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    cursor: default;
    color: var(--lb-muted);
    font-family: -apple-system, sans-serif;
    position: relative;
    transition: var(--lb-trans);
}
.laray-cal-cell.available {
    color: var(--lb-espresso);
    cursor: pointer;
    font-weight: 600;
}
.laray-cal-cell.available::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: var(--lb-gold);
    border-radius: 50%;
}
.laray-cal-cell.available:hover {
    background: var(--lb-walnut);
    color: var(--lb-gold);
}
.laray-cal-cell.available:hover::after { background: var(--lb-cream); }
.laray-cal-cell.selected {
    background: var(--lb-walnut);
    color: var(--lb-gold-light);
}
.laray-cal-cell.selected::after { background: var(--lb-gold); }
.laray-cal-cell.today {
    border: 1px solid var(--lb-border);
}
.laray-cal-cell.past { opacity: .35; }
.laray-cal-cell.empty { /* spacer */ }

/* ── Time Slots ─────────────────────────────────────────────────────── */
.laray-time-slots {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--lb-border);
    animation: laray-fadein .25s ease;
}
.laray-time-slots-title {
    font-size: 14px;
    color: var(--lb-brown);
    font-weight: 400;
    margin: 0 0 14px;
    font-style: italic;
}
.laray-time-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.laray-time-btn {
    background: var(--lb-cream);
    border: 1.5px solid var(--lb-border);
    border-radius: 24px;
    padding: 9px 20px;
    font-size: 14px;
    cursor: pointer;
    color: var(--lb-espresso);
    font-family: Georgia, serif;
    transition: var(--lb-trans);
}
.laray-time-btn:hover {
    border-color: var(--lb-gold);
    background: var(--lb-parchment);
    color: var(--lb-walnut);
}
.laray-time-btn.selected {
    background: var(--lb-walnut);
    border-color: var(--lb-walnut);
    color: var(--lb-gold-light);
    font-weight: 600;
}

/* ── Booking Summary Pill ────────────────────────────────────────────── */
.laray-booking-summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lb-walnut);
    color: var(--lb-gold-light);
    border-radius: 24px;
    padding: 8px 18px;
    font-size: 13px;
    margin-bottom: 28px;
    font-family: -apple-system, sans-serif;
}
.laray-summary-sep { color: var(--lb-gold); opacity: .5; }

/* ── Form Fields ─────────────────────────────────────────────────────── */
.laray-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.laray-form-field {
    margin-bottom: 20px;
}
.laray-form-field label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--lb-brown);
    margin-bottom: 8px;
    font-family: -apple-system, sans-serif;
    font-weight: 600;
}
.laray-required { color: var(--lb-gold); }
.laray-optional { color: var(--lb-muted); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 11px; }

.laray-form-field input,
.laray-form-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1.5px solid var(--lb-border);
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 15px;
    font-family: Georgia, serif;
    color: var(--lb-espresso);
    background: var(--lb-cream);
    transition: border-color .18s, box-shadow .18s;
    appearance: none;
    -webkit-appearance: none;
}
.laray-form-field input:focus,
.laray-form-field textarea:focus {
    outline: none;
    border-color: var(--lb-gold);
    box-shadow: 0 0 0 3px rgba(201,168,124,.15);
    background: var(--lb-white);
}
.laray-form-field input.error,
.laray-form-field textarea.error {
    border-color: var(--lb-error);
}
.laray-form-field textarea { resize: vertical; min-height: 90px; }

.laray-form-error {
    background: #fde8e8;
    border: 1px solid #f5c6c6;
    border-radius: 6px;
    padding: 12px 16px;
    color: var(--lb-error);
    font-size: 14px;
    margin-bottom: 18px;
    font-family: -apple-system, sans-serif;
}

/* ── Submit Button ───────────────────────────────────────────────────── */
.laray-submit-btn {
    width: 100%;
    background: var(--lb-walnut, #2c2018);
    color: var(--lb-gold-light, #e8d5b7);
    border: none;
    border-radius: 6px;
    padding: 16px;
    font-size: 16px;
    font-family: Georgia, serif;
    cursor: pointer;
    letter-spacing: .5px;
    transition: background .2s, transform .1s;
    position: relative;
    overflow: hidden;
    /* Explicit fallback ensures visibility even if CSS vars not loaded */
    background-color: #2c2018;
    color: #e8d5b7;
}
.laray-submit-btn:hover:not(:disabled) {
    background: var(--lb-brown);
    transform: translateY(-1px);
}
.laray-submit-btn:active { transform: translateY(0); }
.laray-submit-btn:disabled { opacity: .7; cursor: wait; }

/* ── Contribution Button ─────────────────────────────────────────────── */
.laray-contribution-wrap {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--lb-border);
}
.laray-contribution-btn {
    display: inline-block;
    background: var(--lb-walnut, #2c2018);
    background-color: #2c2018;
    color: var(--lb-gold-light, #e8d5b7);
    color: #e8d5b7;
    text-decoration: none;
    padding: 15px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-family: Georgia, serif;
    letter-spacing: .3px;
    transition: background .2s, transform .1s, box-shadow .2s;
    box-shadow: 0 2px 12px rgba(44,32,24,.18);
}
.laray-contribution-btn:hover {
    background: var(--lb-brown);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139,111,71,.28);
    text-decoration: none;
}
.laray-contribution-btn:active {
    transform: translateY(0);
}

/* ── Success Screen ──────────────────────────────────────────────────── */
.laray-success-wrap {
    text-align: center;
    padding: 16px 0 8px;
}
.laray-success-icon {
    font-size: 42px;
    color: var(--lb-gold);
    margin-bottom: 16px;
    display: block;
    animation: laray-pulse 1.5s ease infinite alternate;
}
@keyframes laray-pulse {
    from { opacity: .7; transform: scale(.95); }
    to   { opacity: 1;  transform: scale(1.05); }
}
.laray-success-title {
    font-size: 28px;
    font-weight: 400;
    color: var(--lb-walnut);
    margin: 0 0 14px;
}
.laray-success-msg {
    font-size: 16px;
    color: var(--lb-espresso);
    max-width: 420px;
    margin: 0 auto 20px;
    line-height: 1.6;
    font-style: italic;
}
.laray-success-ref {
    display: inline-block;
    background: var(--lb-parchment);
    border: 1px solid var(--lb-border);
    border-radius: 6px;
    padding: 10px 22px;
    font-family: -apple-system, monospace;
    font-size: 14px;
    color: var(--lb-walnut);
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.laray-success-note {
    font-size: 13px;
    color: var(--lb-muted);
    font-family: -apple-system, sans-serif;
    font-style: italic;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .laray-step { padding: 24px 20px; }
    .laray-form-row { grid-template-columns: 1fr; gap: 0; }
    .laray-service-cards { grid-template-columns: 1fr; }
    .laray-step-header { gap: 8px; }
    .laray-step-title { font-size: 17px; }
}

/* ═══════════════════════════════════════════════════════════
   v1.1 Additions
═══════════════════════════════════════════════════════════ */

/* ── Booking Tips ─────────────────────────────────────────── */
.laray-booking-tips {
    margin-top: 28px;
    border-top: 1px solid var(--lb-border);
    padding-top: 20px;
}
.laray-tips-inner {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--lb-parchment);
    border: 1px solid var(--lb-border);
    border-left: 4px solid var(--lb-gold);
    border-radius: 8px;
    padding: 16px 18px;
    font-size: 14px;
    color: var(--lb-espresso);
    line-height: 1.6;
    font-style: italic;
}
.laray-tips-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Fully Booked / Waitlist panel ───────────────────────── */
.laray-fully-booked-panel {
    text-align: center;
    padding: 40px 24px;
}
.laray-fully-booked-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}
.laray-fully-booked-msg h3 {
    font-size: 20px;
    font-weight: 400;
    color: var(--lb-walnut);
    margin: 0 0 10px;
}
.laray-fully-booked-msg p {
    font-size: 15px;
    color: var(--lb-muted);
    font-style: italic;
    margin: 0 0 24px;
}
.laray-waitlist-cta {
    background: var(--lb-walnut, #2c2018);
    background-color: #2c2018;
    color: var(--lb-gold-light, #e8d5b7);
    color: #e8d5b7;
    border: none;
    border-radius: 6px;
    padding: 13px 32px;
    font-size: 15px;
    font-family: Georgia, serif;
    cursor: pointer;
    transition: background .18s, transform .1s;
    letter-spacing: .3px;
    font-weight: 500;
}
.laray-waitlist-cta:hover { background: var(--lb-brown); transform: translateY(-1px); }

.laray-waitlist-header {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--lb-border);
}
.laray-waitlist-title {
    font-size: 18px;
    font-weight: 400;
    color: var(--lb-walnut);
    margin: 0;
}
.laray-waitlist-success-msg {
    text-align: center;
    padding: 32px 20px;
}
.laray-waitlist-success-msg p {
    font-size: 16px;
    color: var(--lb-espresso);
    font-style: italic;
    max-width: 380px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Session Details Step ────────────────────────────────── */
.laray-session-details-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 28px;
}
.laray-detail-group {}
.laray-detail-question {
    font-size: 15px;
    color: var(--lb-walnut);
    margin: 0 0 14px;
    font-weight: 400;
    line-height: 1.4;
}

/* Checkbox grid */
.laray-checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.laray-check-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px 14px;
    border: 1.5px solid var(--lb-border);
    border-radius: 8px;
    background: var(--lb-cream);
    transition: border-color .15s, background .15s;
    font-size: 13px;
    color: var(--lb-espresso);
    font-family: -apple-system, sans-serif;
}
.laray-check-label:hover { border-color: var(--lb-gold); background: var(--lb-parchment); }
.laray-detail-check { display: none; }
.laray-check-box {
    width: 18px;
    height: 18px;
    border: 2px solid var(--lb-border);
    border-radius: 4px;
    flex-shrink: 0;
    background: var(--lb-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
    position: relative;
}
.laray-detail-check:checked + .laray-check-box {
    background: var(--lb-walnut);
    border-color: var(--lb-walnut);
}
.laray-detail-check:checked + .laray-check-box::after {
    content: '✓';
    color: var(--lb-gold);
    font-size: 11px;
    line-height: 1;
}
.laray-detail-check:checked ~ .laray-check-text { color: var(--lb-walnut); font-weight: 600; }
.laray-check-label:has(.laray-detail-check:checked) { border-color: var(--lb-gold); background: var(--lb-parchment); }

/* Radio group */
.laray-radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.laray-radio-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.laray-radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px 14px;
    border: 1.5px solid var(--lb-border);
    border-radius: 8px;
    background: var(--lb-cream);
    transition: border-color .15s, background .15s;
    font-size: 13px;
    color: var(--lb-espresso);
    font-family: -apple-system, sans-serif;
}
.laray-radio-label:hover { border-color: var(--lb-gold); background: var(--lb-parchment); }
.laray-detail-radio { display: none; }
.laray-radio-dot {
    width: 18px;
    height: 18px;
    border: 2px solid var(--lb-border);
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--lb-white);
    transition: all .15s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.laray-detail-radio:checked + .laray-radio-dot {
    border-color: var(--lb-walnut);
    background: var(--lb-walnut);
}
.laray-detail-radio:checked + .laray-radio-dot::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--lb-gold);
    border-radius: 50%;
}
.laray-detail-radio:checked ~ .laray-radio-text { color: var(--lb-walnut); font-weight: 600; }
.laray-radio-label:has(.laray-detail-radio:checked) { border-color: var(--lb-gold); background: var(--lb-parchment); }

.laray-detail-textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1.5px solid var(--lb-border);
    border-radius: 8px;
    padding: 13px 15px;
    font-size: 14px;
    font-family: Georgia, serif;
    color: var(--lb-espresso);
    background: var(--lb-cream);
    resize: vertical;
    min-height: 100px;
    transition: border-color .18s, box-shadow .18s;
}
.laray-detail-textarea:focus {
    outline: none;
    border-color: var(--lb-gold);
    box-shadow: 0 0 0 3px rgba(201,168,124,.12);
    background: var(--lb-white);
}
.laray-details-actions {
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

/* ── Booking Policy / Terms ───────────────────────────────── */
.laray-policy-wrap {
    margin-bottom: 24px;
}
.laray-policy-box {
    background: var(--lb-parchment);
    border: 1px solid var(--lb-border);
    border-radius: 8px;
    padding: 18px 20px;
    margin-bottom: 14px;
}
.laray-policy-text {
    font-size: 13px;
    color: var(--lb-espresso);
    line-height: 1.65;
    font-family: -apple-system, sans-serif;
}
.laray-policy-text a { color: var(--lb-brown); }
.laray-policy-check-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--lb-espresso);
    font-family: -apple-system, sans-serif;
}
.laray-policy-check-label input { display: none; }
.laray-policy-check-box {
    width: 18px;
    height: 18px;
    border: 2px solid var(--lb-border);
    border-radius: 4px;
    flex-shrink: 0;
    background: var(--lb-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
}
#laray-terms-check:checked + .laray-policy-check-box {
    background: var(--lb-walnut);
    border-color: var(--lb-walnut);
}
#laray-terms-check:checked + .laray-policy-check-box::after {
    content: '✓';
    color: var(--lb-gold);
    font-size: 11px;
}
.laray-policy-check-text { line-height: 1.4; }

/* ── Responsive additions ─────────────────────────────────── */
@media (max-width: 600px) {
    .laray-checkbox-grid { grid-template-columns: 1fr; }
    .laray-radio-wrap    { grid-template-columns: 1fr; }
    .laray-fully-booked-panel { padding: 28px 16px; }
}

/* ── Full-date calendar cells ────────────────────────────── */
.laray-cal-cell.full-date {
    cursor: pointer;
    color: var(--lb-muted);
    position: relative;
}
.laray-cal-cell.full-date:hover {
    background: var(--lb-parchment);
    color: var(--lb-espresso);
}
/* "Full" badge that sits below the day number */
.laray-cal-full-badge {
    display: block;
    font-size: 8px;
    font-family: -apple-system, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--lb-muted);
    line-height: 1;
    margin-top: 2px;
}
.laray-cal-cell.full-date:hover .laray-cal-full-badge {
    color: var(--lb-brown);
}
/* Slightly reduce the day number size to make room for the badge */
.laray-cal-cell.full-date {
    font-size: 13px;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    aspect-ratio: auto;
    padding: 4px 2px;
    min-height: 38px;
}

/* ── Supporting details field (Your Details step) ────────────
   Visually lighter than the primary "Tell me about the vision"
   textarea to signal it's supplementary, not the main event.  */
.laray-form-field-support label {
    font-size: 11px;
    letter-spacing: .5px;
    color: var(--lb-muted, #a89880);
}
.laray-form-field-support textarea {
    background: var(--lb-cream, #faf8f5);
    font-size: 14px;
    min-height: 80px;
    border-color: var(--lb-border, #e0d9ce);
    color: var(--lb-espresso, #3d3530);
    font-style: normal;
    opacity: .9;
}
.laray-form-field-support textarea:focus {
    opacity: 1;
    background: var(--lb-white, #ffffff);
}

/* ── Soft Hold — Timer Banner ─────────────────────────────────── */
.laray-hold-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--lb-parchment, #f2ede5);
    border: 1px solid var(--lb-border, #e0d9ce);
    border-left: 4px solid var(--lb-gold, #c9a87c);
    border-radius: 6px;
    padding: 11px 16px;
    font-size: 13px;
    font-family: -apple-system, sans-serif;
    color: var(--lb-espresso, #3d3530);
    margin-bottom: 20px;
    line-height: 1.4;
    transition: border-color .3s, background .3s;
}
.laray-hold-banner strong {
    font-weight: 700;
    color: var(--lb-walnut, #2c2018);
    font-variant-numeric: tabular-nums;
    letter-spacing: .3px;
}
.laray-hold-icon { font-size: 15px; flex-shrink: 0; }

/* Under 2 minutes — warm amber urgency */
.laray-hold-banner-urgent {
    border-left-color: #c97a1a;
    background: #fef8ef;
}
.laray-hold-banner-urgent strong { color: #c97a1a; }

/* ── Hold Expired Message ─────────────────────────────────────── */
.laray-hold-expired-msg {
    background: #fef3cd;
    border: 1px solid #f0d98c;
    border-radius: 6px;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: 14px;
    font-family: -apple-system, sans-serif;
    color: #5a4200;
    line-height: 1.5;
}

/* ── Slot Taken Notice ────────────────────────────────────────── */
.laray-slot-taken-notice {
    background: #fde8e8;
    border: 1px solid #f5c6c6;
    border-left: 4px solid #b93525;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 14px;
    font-family: -apple-system, sans-serif;
    color: #7a1a1a;
    line-height: 1.5;
    animation: laray-fadein .3s ease;
}
