/* Public booking flow styles */

/* Page titles */
.booking-page-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}
.booking-page-subtitle {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 32px;
}

/* Back link */
.booking-back-link {
    display: inline-block;
    margin-bottom: 24px;
    color: var(--primary, #2563eb);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}
.booking-back-link:hover { text-decoration: underline; }

/* Room grid */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.room-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s, transform 0.2s;
}
.room-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}
.room-card-image {
    height: 220px;
    overflow: hidden;
}
.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.room-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #94a3b8;
    font-size: 14px;
}
.room-card-body {
    padding: 20px;
}
.room-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.room-card-desc {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.5;
}
.room-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
}
.room-card-occupancy {
    color: #64748b;
}
.room-card-price {
    font-weight: 700;
    color: var(--primary, #2563eb);
    font-size: 18px;
}
.room-card-price small {
    font-weight: 400;
    font-size: 13px;
    color: #64748b;
}
.room-card-actions {
    display: flex;
    gap: 8px;
}

/* Button variants */
.pub-btn-outline {
    background: transparent;
    color: var(--primary, #2563eb);
    border: 1px solid var(--primary, #2563eb);
}
.pub-btn-outline:hover {
    background: var(--primary, #2563eb);
    color: #fff;
    opacity: 1;
}
.pub-btn-lg {
    padding: 14px 36px;
    font-size: 16px;
}
.pub-btn-block {
    display: block;
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Room detail */
.room-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.room-detail-hero {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
}
.room-detail-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
}
.room-detail-thumbs img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.room-detail-thumbs img:hover { opacity: 1; }
.room-detail-info h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}
.room-detail-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 14px;
    color: #64748b;
}
.room-detail-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary, #2563eb);
}
.room-detail-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 24px;
}

/* Availability calendar */
.availability-section {
    border-top: 1px solid #e2e8f0;
    padding-top: 32px;
}
.availability-section h2 {
    font-size: 24px;
    margin-bottom: 4px;
}
.availability-hint {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 16px;
}
.availability-calendar {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
    gap: 6px;
}
.cal-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 4px;
    border-radius: 8px;
    background: #f8fafc;
    font-size: 12px;
    transition: background 0.2s;
}
.cal-weekday {
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
}
.cal-date {
    font-size: 18px;
    font-weight: 700;
    margin: 2px 0;
}
.cal-month {
    font-size: 10px;
    color: #94a3b8;
}
.cal-day-booked {
    background: #fef2f2;
    color: #dc2626;
}
.cal-day-booked .cal-weekday,
.cal-day-booked .cal-month { color: #f87171; }
.cal-day-today {
    border: 2px solid var(--primary, #2563eb);
}

/* Booking form layout */
.booking-form-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}
.booking-form h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
}
.booking-form-main h1 {
    margin-bottom: 24px;
}

/* Form elements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text, #1a1a1a);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
    background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary, #2563eb);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form-group small {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
}

/* Errors */
.booking-errors {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
}
.booking-errors p {
    color: #dc2626;
    font-size: 14px;
    margin-bottom: 4px;
}
.booking-errors p:last-child { margin-bottom: 0; }

.booking-form-note {
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 12px;
}

/* Sidebar summary */
.booking-summary-card {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    position: sticky;
    top: 80px;
}
.booking-summary-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.booking-summary-card h3 {
    padding: 16px 16px 0;
    font-size: 18px;
}
.booking-summary-meta {
    padding: 8px 16px 16px;
    font-size: 14px;
    color: #64748b;
}
.booking-summary-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary, #2563eb);
    margin-top: 4px;
}
.booking-price-estimate {
    border-top: 1px solid #e2e8f0;
    padding: 16px;
}
.price-line {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 600;
}

/* Confirmation page */
.booking-confirm {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.booking-confirm-icon {
    width: 64px;
    height: 64px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}
.booking-confirm h1 {
    font-size: 28px;
    margin-bottom: 8px;
}
.booking-confirm-ref {
    font-size: 18px;
    color: var(--primary, #2563eb);
    margin-bottom: 16px;
}
.booking-confirm-details {
    text-align: left;
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
}
.confirm-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
    border-bottom: 1px solid #e2e8f0;
}
.confirm-detail-row:last-child { border-bottom: none; }
.confirm-detail-row span:first-child { color: #64748b; }
.confirm-detail-total {
    font-weight: 700;
    font-size: 16px;
    border-top: 2px solid #e2e8f0;
    margin-top: 4px;
    padding-top: 12px;
}
.booking-confirm-next {
    text-align: left;
    margin: 24px 0;
}
.booking-confirm-next h3 {
    font-size: 16px;
    margin-bottom: 12px;
}
.booking-confirm-next ol {
    padding-left: 20px;
    font-size: 14px;
    color: #475569;
    line-height: 1.8;
}
.booking-confirm-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

/* Empty state */
.booking-empty {
    text-align: center;
    padding: 48px 24px;
    background: #f8fafc;
    border-radius: 12px;
    color: #64748b;
}

/* Admin filter tabs */
.filter-tabs {
    display: flex;
    gap: 8px;
}
.filter-tabs a {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
    color: #64748b;
    background: #f1f5f9;
    transition: all 0.2s;
}
.filter-tabs a:hover { background: #e2e8f0; }
.filter-tabs a.active {
    background: var(--color-primary, #2563eb);
    color: #fff;
}

/* ================================= */
/* DARK TEMPLATE OVERRIDES           */
/* ================================= */

/* ── Shared dark base (Luxe, Liquid Glass, Prestige, Studio, Metallic) ── */
.tpl-luxe .room-card,
.tpl-liquid_glass .room-card,
.tpl-prestige .room-card,
.tpl-studio .room-card,
.tpl-metallic .room-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.tpl-luxe .room-card:hover,
.tpl-liquid_glass .room-card:hover,
.tpl-prestige .room-card:hover,
.tpl-studio .room-card:hover,
.tpl-metallic .room-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.tpl-luxe .room-card-desc,
.tpl-liquid_glass .room-card-desc,
.tpl-prestige .room-card-desc,
.tpl-studio .room-card-desc,
.tpl-metallic .room-card-desc,
.tpl-luxe .room-card-occupancy,
.tpl-liquid_glass .room-card-occupancy,
.tpl-prestige .room-card-occupancy,
.tpl-studio .room-card-occupancy,
.tpl-metallic .room-card-occupancy,
.tpl-luxe .room-card-price small,
.tpl-liquid_glass .room-card-price small,
.tpl-prestige .room-card-price small,
.tpl-studio .room-card-price small,
.tpl-metallic .room-card-price small {
    color: rgba(255,255,255,0.5);
}
.tpl-luxe .room-card-image-placeholder,
.tpl-liquid_glass .room-card-image-placeholder,
.tpl-prestige .room-card-image-placeholder,
.tpl-studio .room-card-image-placeholder,
.tpl-metallic .room-card-image-placeholder {
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.3);
}

/* Detail & meta */
.tpl-luxe .room-detail-meta,
.tpl-liquid_glass .room-detail-meta,
.tpl-prestige .room-detail-meta,
.tpl-studio .room-detail-meta,
.tpl-metallic .room-detail-meta {
    color: rgba(255,255,255,0.5);
}
.tpl-luxe .room-detail-desc,
.tpl-liquid_glass .room-detail-desc,
.tpl-prestige .room-detail-desc,
.tpl-studio .room-detail-desc,
.tpl-metallic .room-detail-desc {
    color: rgba(255,255,255,0.7);
}

/* Calendar */
.tpl-luxe .cal-day,
.tpl-liquid_glass .cal-day,
.tpl-prestige .cal-day,
.tpl-studio .cal-day,
.tpl-metallic .cal-day {
    background: rgba(255,255,255,0.04);
}
.tpl-luxe .cal-weekday,
.tpl-liquid_glass .cal-weekday,
.tpl-prestige .cal-weekday,
.tpl-studio .cal-weekday,
.tpl-metallic .cal-weekday,
.tpl-luxe .cal-month,
.tpl-liquid_glass .cal-month,
.tpl-prestige .cal-month,
.tpl-studio .cal-month,
.tpl-metallic .cal-month {
    color: rgba(255,255,255,0.4);
}
.tpl-luxe .cal-day-booked,
.tpl-liquid_glass .cal-day-booked,
.tpl-prestige .cal-day-booked,
.tpl-studio .cal-day-booked,
.tpl-metallic .cal-day-booked {
    background: rgba(220,38,38,0.12);
    color: #f87171;
}
.tpl-luxe .cal-day-booked .cal-weekday,
.tpl-liquid_glass .cal-day-booked .cal-weekday,
.tpl-prestige .cal-day-booked .cal-weekday,
.tpl-studio .cal-day-booked .cal-weekday,
.tpl-metallic .cal-day-booked .cal-weekday,
.tpl-luxe .cal-day-booked .cal-month,
.tpl-liquid_glass .cal-day-booked .cal-month,
.tpl-prestige .cal-day-booked .cal-month,
.tpl-studio .cal-day-booked .cal-month,
.tpl-metallic .cal-day-booked .cal-month {
    color: #f87171;
}
.tpl-luxe .availability-section,
.tpl-liquid_glass .availability-section,
.tpl-prestige .availability-section,
.tpl-studio .availability-section,
.tpl-metallic .availability-section {
    border-top-color: rgba(255,255,255,0.08);
}
.tpl-luxe .availability-hint,
.tpl-liquid_glass .availability-hint,
.tpl-prestige .availability-hint,
.tpl-studio .availability-hint,
.tpl-metallic .availability-hint {
    color: rgba(255,255,255,0.4);
}

/* Form inputs */
.tpl-luxe .form-group input,
.tpl-luxe .form-group textarea,
.tpl-luxe .form-group select,
.tpl-liquid_glass .form-group input,
.tpl-liquid_glass .form-group textarea,
.tpl-liquid_glass .form-group select,
.tpl-prestige .form-group input,
.tpl-prestige .form-group textarea,
.tpl-prestige .form-group select,
.tpl-studio .form-group input,
.tpl-studio .form-group textarea,
.tpl-studio .form-group select,
.tpl-metallic .form-group input,
.tpl-metallic .form-group textarea,
.tpl-metallic .form-group select {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    color: inherit;
}
.tpl-luxe .form-group input:focus,
.tpl-luxe .form-group textarea:focus,
.tpl-liquid_glass .form-group input:focus,
.tpl-liquid_glass .form-group textarea:focus,
.tpl-prestige .form-group input:focus,
.tpl-prestige .form-group textarea:focus,
.tpl-studio .form-group input:focus,
.tpl-studio .form-group textarea:focus,
.tpl-metallic .form-group input:focus,
.tpl-metallic .form-group textarea:focus {
    border-color: var(--primary, #2563eb);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
.tpl-luxe .form-group small,
.tpl-liquid_glass .form-group small,
.tpl-prestige .form-group small,
.tpl-studio .form-group small,
.tpl-metallic .form-group small,
.tpl-luxe .booking-form-note,
.tpl-liquid_glass .booking-form-note,
.tpl-prestige .booking-form-note,
.tpl-studio .booking-form-note,
.tpl-metallic .booking-form-note {
    color: rgba(255,255,255,0.4);
}

/* Booking errors */
.tpl-luxe .booking-errors,
.tpl-liquid_glass .booking-errors,
.tpl-prestige .booking-errors,
.tpl-studio .booking-errors,
.tpl-metallic .booking-errors {
    background: rgba(220,38,38,0.10);
    border-color: rgba(220,38,38,0.25);
}

/* Summary card */
.tpl-luxe .booking-summary-card,
.tpl-liquid_glass .booking-summary-card,
.tpl-prestige .booking-summary-card,
.tpl-studio .booking-summary-card,
.tpl-metallic .booking-summary-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}
.tpl-luxe .booking-summary-meta,
.tpl-liquid_glass .booking-summary-meta,
.tpl-prestige .booking-summary-meta,
.tpl-studio .booking-summary-meta,
.tpl-metallic .booking-summary-meta {
    color: rgba(255,255,255,0.5);
}
.tpl-luxe .booking-price-estimate,
.tpl-liquid_glass .booking-price-estimate,
.tpl-prestige .booking-price-estimate,
.tpl-studio .booking-price-estimate,
.tpl-metallic .booking-price-estimate {
    border-top-color: rgba(255,255,255,0.08);
}

/* Confirmation */
.tpl-luxe .booking-confirm-icon,
.tpl-liquid_glass .booking-confirm-icon,
.tpl-prestige .booking-confirm-icon,
.tpl-studio .booking-confirm-icon,
.tpl-metallic .booking-confirm-icon {
    background: rgba(22,163,74,0.15);
}
.tpl-luxe .booking-confirm-details,
.tpl-liquid_glass .booking-confirm-details,
.tpl-prestige .booking-confirm-details,
.tpl-studio .booking-confirm-details,
.tpl-metallic .booking-confirm-details {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}
.tpl-luxe .confirm-detail-row,
.tpl-liquid_glass .confirm-detail-row,
.tpl-prestige .confirm-detail-row,
.tpl-studio .confirm-detail-row,
.tpl-metallic .confirm-detail-row {
    border-bottom-color: rgba(255,255,255,0.06);
}
.tpl-luxe .confirm-detail-row span:first-child,
.tpl-liquid_glass .confirm-detail-row span:first-child,
.tpl-prestige .confirm-detail-row span:first-child,
.tpl-studio .confirm-detail-row span:first-child,
.tpl-metallic .confirm-detail-row span:first-child {
    color: rgba(255,255,255,0.5);
}
.tpl-luxe .confirm-detail-total,
.tpl-liquid_glass .confirm-detail-total,
.tpl-prestige .confirm-detail-total,
.tpl-studio .confirm-detail-total,
.tpl-metallic .confirm-detail-total {
    border-top-color: rgba(255,255,255,0.10);
}
.tpl-luxe .booking-confirm-next ol,
.tpl-liquid_glass .booking-confirm-next ol,
.tpl-prestige .booking-confirm-next ol,
.tpl-studio .booking-confirm-next ol,
.tpl-metallic .booking-confirm-next ol {
    color: rgba(255,255,255,0.65);
}

/* Empty state */
.tpl-luxe .booking-empty,
.tpl-liquid_glass .booking-empty,
.tpl-prestige .booking-empty,
.tpl-studio .booking-empty,
.tpl-metallic .booking-empty {
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.5);
}

/* Back link */
.tpl-luxe .booking-back-link,
.tpl-liquid_glass .booking-back-link,
.tpl-prestige .booking-back-link,
.tpl-studio .booking-back-link,
.tpl-metallic .booking-back-link {
    color: var(--primary, #c9a96e);
}

/* ── Luxe accent overrides ── */
.tpl-luxe .room-card { border-color: rgba(201,169,110,0.08); border-radius: 0; }
.tpl-luxe .room-card:hover { border-color: rgba(201,169,110,0.20); }
.tpl-luxe .booking-summary-card { border-color: rgba(201,169,110,0.08); border-radius: 0; }
.tpl-luxe .room-detail-hero { border-radius: 0; }
.tpl-luxe .cal-day { border-radius: 0; }

/* ── Liquid Glass accent overrides ── */
.tpl-liquid_glass .room-card {
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.12);
    border-radius: 16px;
}
.tpl-liquid_glass .booking-summary-card {
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.12);
    border-radius: 16px;
}
.tpl-liquid_glass .booking-confirm-details {
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.12);
}

/* ── Prestige accent overrides ── */
.tpl-prestige .room-card { border-radius: 0; border-color: rgba(192,192,192,0.07); }
.tpl-prestige .room-card:hover { border-color: rgba(192,192,192,0.15); }
.tpl-prestige .booking-summary-card { border-radius: 0; border-color: rgba(192,192,192,0.07); }
.tpl-prestige .booking-confirm-details { border-radius: 0; border-color: rgba(192,192,192,0.07); }
.tpl-prestige .room-detail-hero { border-radius: 0; }
.tpl-prestige .cal-day { border-radius: 0; }

/* ── Metallic accent overrides ── */
.tpl-metallic .room-card { border-radius: 4px; border-color: rgba(74,158,255,0.06); }
.tpl-metallic .room-card:hover { border-color: rgba(74,158,255,0.15); }
.tpl-metallic .room-card-price { color: #4a9eff; }
.tpl-metallic .booking-summary-card { border-radius: 4px; border-color: rgba(74,158,255,0.06); }
.tpl-metallic .booking-confirm-details { border-radius: 4px; border-color: rgba(74,158,255,0.06); }
.tpl-metallic .booking-confirm-ref { color: #4a9eff; }
.tpl-metallic .booking-summary-price { color: #4a9eff; }
.tpl-metallic .room-detail-hero { border-radius: 4px; }
.tpl-metallic .room-detail-price { color: #4a9eff; }
.tpl-metallic .cal-day { border-radius: 2px; }
.tpl-metallic .cal-day-today { border-color: #4a9eff; }
.tpl-metallic .booking-back-link { color: #4a9eff; }
.tpl-metallic .form-group input:focus,
.tpl-metallic .form-group textarea:focus,
.tpl-metallic .form-group select:focus {
    border-color: #4a9eff;
    box-shadow: 0 0 0 3px rgba(74,158,255,0.15);
}

/* ── Go Green (light eco-luxury) overrides ── */
.tpl-go_green .room-card {
    background: #ede9e0;
    border: 1px solid rgba(26,60,42,0.08);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(26,60,42,0.06);
}
.tpl-go_green .room-card:hover {
    box-shadow: 0 6px 20px rgba(26,60,42,0.10);
    border-color: rgba(26,60,42,0.15);
}
.tpl-go_green .room-card-body h3 { color: #1a3c2a; }
.tpl-go_green .room-card-desc { color: #3d3d38; }
.tpl-go_green .room-card-occupancy { color: #7a9e8a; }
.tpl-go_green .room-card-price { color: #b87333; }
.tpl-go_green .room-card-price small { color: #7a9e8a; }
.tpl-go_green .room-card-image-placeholder {
    background: #e5dfd5;
    color: #7a9e8a;
}
.tpl-go_green .room-detail-meta { color: #7a9e8a; }
.tpl-go_green .room-detail-desc { color: #3d3d38; }
.tpl-go_green .room-detail-price { color: #b87333; }
.tpl-go_green .booking-page-title { color: #1a3c2a; }
.tpl-go_green .booking-page-subtitle { color: #7a9e8a; }
.tpl-go_green .booking-back-link { color: #3a6b4f; }
.tpl-go_green .cal-day { background: #ede9e0; }
.tpl-go_green .cal-weekday,
.tpl-go_green .cal-month { color: #7a9e8a; }
.tpl-go_green .cal-day-today { border-color: #1a3c2a; }
.tpl-go_green .availability-section { border-top-color: rgba(26,60,42,0.10); }
.tpl-go_green .availability-hint { color: #7a9e8a; }
.tpl-go_green .form-group label { color: #1a3c2a; }
.tpl-go_green .form-group input,
.tpl-go_green .form-group textarea,
.tpl-go_green .form-group select {
    background: #f7f5f0;
    border-color: rgba(26,60,42,0.15);
}
.tpl-go_green .form-group input:focus,
.tpl-go_green .form-group textarea:focus,
.tpl-go_green .form-group select:focus {
    border-color: #1a3c2a;
    box-shadow: 0 0 0 3px rgba(26,60,42,0.10);
}
.tpl-go_green .form-group small,
.tpl-go_green .booking-form-note { color: #7a9e8a; }
.tpl-go_green .booking-errors {
    background: #fef2f2;
    border-color: #fecaca;
}
.tpl-go_green .booking-summary-card {
    background: #ede9e0;
    border: 1px solid rgba(26,60,42,0.08);
    border-radius: 12px;
}
.tpl-go_green .booking-summary-meta { color: #7a9e8a; }
.tpl-go_green .booking-summary-price { color: #b87333; }
.tpl-go_green .booking-price-estimate { border-top-color: rgba(26,60,42,0.10); }
.tpl-go_green .booking-confirm-icon {
    background: rgba(26,60,42,0.10);
    color: #1a3c2a;
}
.tpl-go_green .booking-confirm-details {
    background: #ede9e0;
    border: 1px solid rgba(26,60,42,0.08);
}
.tpl-go_green .confirm-detail-row { border-bottom-color: rgba(26,60,42,0.06); }
.tpl-go_green .confirm-detail-row span:first-child { color: #7a9e8a; }
.tpl-go_green .confirm-detail-total { border-top-color: rgba(26,60,42,0.12); }
.tpl-go_green .booking-confirm-ref { color: #b87333; }
.tpl-go_green .booking-confirm-next ol { color: #3d3d38; }
.tpl-go_green .booking-empty {
    background: #ede9e0;
    color: #7a9e8a;
}

/* ================================= */
/* ALPINE (warm mountain lodge)      */
/* ================================= */
.tpl-alpine .room-card {
    background: #f0ebe3;
    border: 1px solid rgba(92,74,50,0.08);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(92,74,50,0.06);
}
.tpl-alpine .room-card:hover {
    box-shadow: 0 6px 20px rgba(92,74,50,0.10);
    border-color: rgba(92,74,50,0.15);
}
.tpl-alpine .room-card-body h3 { color: #2d3a2e; }
.tpl-alpine .room-card-desc { color: #4a4a42; }
.tpl-alpine .room-card-occupancy { color: #8a8577; }
.tpl-alpine .room-card-price { color: #c17d3e; }
.tpl-alpine .room-card-price small { color: #8a8577; }
.tpl-alpine .room-card-image-placeholder {
    background: #e8e2d8;
    color: #8a8577;
}
.tpl-alpine .room-detail-meta { color: #8a8577; }
.tpl-alpine .room-detail-desc { color: #4a4a42; }
.tpl-alpine .room-detail-price { color: #c17d3e; }
.tpl-alpine .room-detail-hero { border-radius: 8px; }
.tpl-alpine .booking-page-title { color: #2d3a2e; }
.tpl-alpine .booking-page-subtitle { color: #8a8577; }
.tpl-alpine .booking-back-link { color: #5c4a32; }
.tpl-alpine .cal-day { background: #f0ebe3; border-radius: 6px; }
.tpl-alpine .cal-weekday,
.tpl-alpine .cal-month { color: #8a8577; }
.tpl-alpine .cal-day-today { border-color: #c17d3e; }
.tpl-alpine .availability-section { border-top-color: rgba(92,74,50,0.10); }
.tpl-alpine .availability-hint { color: #8a8577; }
.tpl-alpine .form-group label { color: #2d3a2e; }
.tpl-alpine .form-group input,
.tpl-alpine .form-group textarea,
.tpl-alpine .form-group select {
    background: #faf8f5;
    border-color: rgba(92,74,50,0.15);
    border-radius: 8px;
}
.tpl-alpine .form-group input:focus,
.tpl-alpine .form-group textarea:focus,
.tpl-alpine .form-group select:focus {
    border-color: #c17d3e;
    box-shadow: 0 0 0 3px rgba(193,125,62,0.12);
}
.tpl-alpine .form-group small,
.tpl-alpine .booking-form-note { color: #8a8577; }
.tpl-alpine .booking-errors {
    background: #fef2f2;
    border-color: #fecaca;
}
.tpl-alpine .booking-summary-card {
    background: #f0ebe3;
    border: 1px solid rgba(92,74,50,0.08);
    border-radius: 8px;
}
.tpl-alpine .booking-summary-meta { color: #8a8577; }
.tpl-alpine .booking-summary-price { color: #c17d3e; }
.tpl-alpine .booking-price-estimate { border-top-color: rgba(92,74,50,0.10); }
.tpl-alpine .booking-confirm-icon {
    background: rgba(45,58,46,0.10);
    color: #2d3a2e;
}
.tpl-alpine .booking-confirm-details {
    background: #f0ebe3;
    border: 1px solid rgba(92,74,50,0.08);
    border-radius: 8px;
}
.tpl-alpine .confirm-detail-row { border-bottom-color: rgba(92,74,50,0.06); }
.tpl-alpine .confirm-detail-row span:first-child { color: #8a8577; }
.tpl-alpine .confirm-detail-total { border-top-color: rgba(92,74,50,0.12); }
.tpl-alpine .booking-confirm-ref { color: #c17d3e; }
.tpl-alpine .booking-confirm-next ol { color: #4a4a42; }
.tpl-alpine .booking-empty {
    background: #f0ebe3;
    color: #8a8577;
}

/* ── Mobile responsive ── */
@media (max-width: 768px) {
    .room-grid { grid-template-columns: 1fr; }
    .room-detail { grid-template-columns: 1fr; gap: 24px; }
    .booking-form-layout { grid-template-columns: 1fr; }
    .booking-form-sidebar { order: -1; }
    .form-row { grid-template-columns: 1fr; }
    .availability-calendar {
        grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
    }
    .booking-page-title { font-size: 24px; }
    .room-detail-info h1 { font-size: 24px; }
    .room-card-image { height: 180px; }
    .booking-confirm-actions { flex-direction: column; }
}

@media (max-width: 480px) {
    .room-card-actions { flex-direction: column; }
    .room-card-actions .pub-btn { text-align: center; }
    .availability-calendar {
        grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
        gap: 4px;
    }
    .cal-day { padding: 6px 2px; }
    .cal-date { font-size: 16px; }
}
