/* ====================== RESTAURANT.CSS — Bron'rest ====================== */
:root {
    --gold:        #c9a84c;
    --gold-light:  #e4c97e;
    --gold-dim:    rgba(201,168,76,0.12);
    --border-gold: rgba(201,168,76,0.3);
    --black:       #000000;
    --black3:      #0d0d0d;
    --dark2:       #1a1a1a;
    --dark3:       #222222;
    --map-bg:      #0f0f0f;
    --white:       #ffffff;
    --muted:       #777777;
    --muted2:      #aaaaaa;
    --border:      rgba(255,255,255,0.08);
    --surface:     var(--dark2);
    --primary:     var(--gold);
    --primary-dark:#a07a28;
    --ink:         var(--white);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--black3);
    color: var(--white);
}

/* Кнопка "Войти/Выйти" (используется в header, т.к. в style.css её нет) */
.sh-btn-ghost {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.87rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
    transition: color 0.2s, background 0.2s;
}
.sh-btn-ghost:hover {
    color: var(--white);
    background: rgba(255,255,255,0.07);
}

/* Светлая тема для sh-btn-ghost */
[data-theme="light"] .sh-btn-ghost {
    color: rgba(0,0,0,0.6);
}
[data-theme="light"] .sh-btn-ghost:hover {
    color: #1a1a1a;
    background: rgba(0,0,0,0.05);
}

/* Hero отступ под фиксированный хедер */
.rp-hero { 
    margin-top: 72px; 
}
@media (max-width: 768px) {
    .rp-hero { margin-top: 64px; }
}

/* HERO */
.rp-hero {
    height: 60vh;
    min-height: 440px;
    position: relative;
    overflow: hidden;
}
.rp-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}
.rp-hero:hover .rp-hero-img {
    transform: scale(1.04);
}
.rp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.rp-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
    box-sizing: border-box;
    width: 100%;
}
.rp-hero-cats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.rp-cat-tag {
    background: var(--gold-dim);
    color: var(--gold-light);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--border-gold);
}
.rp-hero-title {
    font-family: 'Red Hat Display', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 12px;
}
.rp-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}
.rp-meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}
.rp-meta-item svg {
    flex-shrink: 0;
    opacity: 0.6;
}
.rp-rating-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

/* BODY */
.rp-body {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 32px 80px;
}
.rp-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
    padding-top: 48px;
}

/* INFO */
.rp-section-title {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}
.rp-desc {
    color: var(--muted2);
    line-height: 1.75;
    font-size: 0.97rem;
    margin-bottom: 32px;
}
.rp-desc--top {
    margin-top: 0;
    padding-top: 48px;
}
.rp-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}
.rp-info-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.rp-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.rp-info-label {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.rp-info-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 2px;
}

/* TABLE MAP — SVG FLOORPLAN */
.map-section {
    margin-top: 8px;
}
.map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    color: var(--muted2);
    font-weight: 500;
}
.legend-dot {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}
.legend-dot.avail { background: #10b981; }
.legend-dot.reserv { background: var(--gold); }
.legend-dot.occup { background: #ef4444; }
.legend-dot.vip-dot { background: linear-gradient(135deg, #c9a84c, #e4c97e); }

.floorplan-wrap {
    width: 100%;
    background: #0c0c0c;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    position: relative;
    user-select: none;
}
.floorplan-wrap canvas {
    display: block;
    width: 100%;
    touch-action: none;
}
#floorTooltip {
    position: absolute;
    display: none;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 10px 14px;
    pointer-events: none;
    z-index: 20;
    min-width: 130px;
    font-family: 'Manrope', sans-serif;
}
.hall-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.hall-tab {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    color: #999;
    padding: 6px 14px;
    border-radius: 8px;
    font-family: Manrope, sans-serif;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.2s;
}

.hall-tab:hover {
    border-color: rgba(201,168,76,0.3);
    color: #ccc;
}

.hall-tab.active {
    background: rgba(201,168,76,0.12);
    border-color: rgba(201,168,76,0.35);
    color: #c9a84c;
    font-weight: 600;
}
.hall-tab-count {
    background: rgba(255,255,255,0.08);
    color: #aaa;
    font-size: 0.68rem;
    padding: 1px 6px;
    border-radius: 10px;
    margin-left: 2px;
}
.hall-tab.active .hall-tab-count {
    background: rgba(201,168,76,0.25);
    color: #e4c97e;
}
.hall-row-label {
    font-size: 0.74rem;
    color: #666;
    font-weight: 600;
    margin-right: 2px;
    align-self: center;
}
.floorplan-controls-halls {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* BOOKING CARD */
.booking-card {
    background: var(--dark2);
    border-radius: 24px;
    border: 1px solid var(--border);
    overflow: hidden;
    position: sticky;
    top: 80px;
}
.booking-card-header {
    background: var(--black);
    padding: 24px 28px;
    border-bottom: 1px solid var(--border-gold);
}
.booking-card-header h3 {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}
.booking-card-header p {
    color: var(--muted);
    font-size: 0.82rem;
}
.booking-card-body {
    padding: 24px 28px;
}
.selected-table-info {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 20px;
    display: none;
}
.selected-table-info.show {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sti-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.sti-num {
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
}
.sti-sub {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 2px;
}
.btn-deselect {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 1.2rem;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}
.btn-deselect:hover {
    color: var(--white);
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 0.92rem;
    font-family: 'Manrope', sans-serif;
    color: var(--white);
    background: rgba(255,255,255,0.05);
    transition: border-color 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group select option {
    background: var(--dark2);
    color: var(--white);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
textarea {
    resize: vertical;
    min-height: 70px;
}
.booking-form {
    display: none;
}
.booking-form--visible {
    display: block;
}
.btn-book-submit {
    width: 100%;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 14px;
    padding: 16px;
    font-size: 1rem;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 4px;
}
.btn-book-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}
.btn-book-submit:disabled {
    background: var(--muted);
    cursor: not-allowed;
    transform: none;
}
.btn-book-submit--link {
    display: block;
    text-align: center;
    text-decoration: none;
}
.hint-select-table {
    text-align: center;
    padding: 20px 0;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
}
.hint-select-table span {
    display: block;
    font-size: 2rem;
    margin-bottom: 8px;
}

/* REVIEWS */
.rp-reviews {
    margin-top: 48px;
}
.review-list {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}
.review-item {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 22px;
    transition: border-color 0.2s;
}
.review-item:hover {
    border-color: var(--border-gold);
}
.review-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.review-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}
.review-date {
    font-size: 0.75rem;
    color: var(--muted);
}
.review-date--right {
    margin-left: auto;
}
.review-stars-small {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.review-text {
    color: var(--muted2);
    font-size: 0.88rem;
    line-height: 1.65;
}

/* MODAL */
.modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}
.modal-backdrop.show {
    display: flex;
}
.modal-box {
    background: var(--dark2);
    border: 1px solid var(--border-gold);
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    animation: modalIn 0.3s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}
.modal-title {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
}
.modal-text {
    color: var(--muted2);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 28px;
}
.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.modal-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}
.modal-btn.primary {
    background: var(--gold);
    color: var(--black);
}
.modal-btn.primary:hover {
    background: var(--gold-light);
}
.modal-btn.secondary {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border: 1px solid var(--border);
}
.modal-btn.secondary:hover {
    border-color: var(--muted2);
}

/* AUTH NOTICE */
.auth-notice {
    background: rgba(201,168,76,0.08);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    padding: 16px 18px;
    font-size: 0.85rem;
    color: var(--gold-light);
    line-height: 1.5;
    margin-bottom: 16px;
}
.auth-notice a {
    color: var(--gold);
    font-weight: 700;
}

/* FLOORPLAN TABS */
.floorplan-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.floor-tabs {
    display: flex;
    gap: 6px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 5px;
    flex-wrap: wrap;
}
.floor-tab {
    position: relative;
    padding: 9px 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: #888;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.floor-tab.active {
    background: linear-gradient(135deg, #c9a84c 0%, #e4c97e 100%);
    color: #000;
    border-color: rgba(201,168,76,0.4);
    box-shadow: 0 4px 14px rgba(201,168,76,0.25), inset 0 1px 0 rgba(255,255,255,0.2);
}
.floor-tab:hover:not(.active) {
    background: rgba(255,255,255,0.07);
    color: #fff;
    border-color: rgba(255,255,255,0.15);
}
.floor-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 50px;
    background: rgba(0,0,0,0.25);
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    font-weight: 800;
}
.floor-tab.active .floor-tab-count {
    background: rgba(0,0,0,0.35);
    color: #fff;
}
.floor-hint {
    font-size: 0.78rem;
    color: var(--muted);
    font-style: italic;
    padding-left: 4px;
}
.rp-floor-count {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    padding: 4px 12px;
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold-light);
    font-family: 'Manrope', sans-serif;
    vertical-align: middle;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .rp-hero { height: 50vh; min-height: 350px; }
    .rp-hero-content { padding: 24px; }
    .rp-hero-title { font-size: 2.5rem; }
    .rp-grid { grid-template-columns: 1fr; gap: 32px; }
    .rp-body { padding: 0 24px 60px; }
    .booking-card { position: static; margin-top: 32px; }
    .rp-info-grid { grid-template-columns: 1fr 1fr; }
    .floorplan-wrap { max-height: 400px; }
}

@media (max-width: 768px) {
    .rp-hero { height: 45vh; min-height: 300px; }
    .rp-hero-content { padding: 20px 16px; }
    .rp-hero-title { font-size: 2rem; }
    .rp-hero-meta { gap: 12px; flex-wrap: wrap; }
    .rp-meta-item { font-size: 0.8rem; }
    .rp-hero-cats { gap: 6px; }
    .rp-cat-tag { font-size: 0.7rem; padding: 3px 10px; }
    .rp-body { padding: 0 16px 50px; }
    .rp-section-title { font-size: 1.3rem; }
    .rp-desc { font-size: 0.9rem; }
    .rp-info-grid { grid-template-columns: 1fr; gap: 10px; }
    .rp-info-card { padding: 14px 16px; }
    .rp-info-icon { width: 36px; height: 36px; font-size: 1rem; }
    .rp-info-label { font-size: 0.68rem; }
    .rp-info-value { font-size: 0.88rem; }
    .map-legend { gap: 10px; flex-wrap: wrap; }
    .legend-item { font-size: 0.72rem; }
    .legend-dot { width: 12px; height: 12px; }
    .floorplan-wrap { border-radius: 16px; }
    .booking-card-header { padding: 20px; }
    .booking-card-header h3 { font-size: 1.1rem; }
    .booking-card-body { padding: 20px; }
    .selected-table-info { padding: 14px; }
    .sti-icon { width: 40px; height: 40px; font-size: 1.1rem; }
    .sti-num { font-size: 0.9rem; }
    .sti-sub { font-size: 0.72rem; }
    .form-group label { font-size: 0.75rem; }
    .form-group input, .form-group select, .form-group textarea { padding: 10px 14px; font-size: 0.88rem; }
    .form-row { grid-template-columns: 1fr; gap: 10px; }
    .btn-book-submit { padding: 14px; font-size: 0.9rem; }
    .review-item { padding: 16px 18px; }
    .review-avatar { width: 34px; height: 34px; font-size: 0.85rem; }
    .review-name { font-size: 0.85rem; }
    .review-text { font-size: 0.85rem; }
    .modal-box { padding: 32px 24px; max-width: 90%; }
    .modal-icon { font-size: 3rem; }
    .modal-title { font-size: 1.5rem; }
    .modal-text { font-size: 0.88rem; }
    .modal-actions { flex-direction: column; gap: 10px; }
    .modal-btn { width: 100%; padding: 12px 20px; }
    
    .floorplan-controls { flex-direction: column; align-items: stretch; }
    .floor-tabs { justify-content: center; }
    .floor-tab { padding: 8px 14px; font-size: 0.8rem; }
    .floor-hint { text-align: center; padding-left: 0; }
    .rp-floor-count { margin-left: 0; margin-top: 6px; display: inline-flex; }
}

@media (max-width: 480px) {
    .rp-hero { min-height: 280px; }
    .rp-hero-content { padding: 16px 12px; }
    .rp-hero-title { font-size: 1.7rem; }
    .rp-hero-meta { gap: 8px; }
    .rp-meta-item { font-size: 0.75rem; }
    .rp-body { padding: 0 12px 40px; }
    .rp-section-title { font-size: 1.2rem; }
    .rp-info-card { padding: 12px 14px; border-radius: 12px; }
    .rp-info-icon { width: 32px; height: 32px; }
    .rp-info-label { font-size: 0.65rem; }
    .rp-info-value { font-size: 0.85rem; }
    .floorplan-wrap { max-height: 300px; border-radius: 12px; }
    .floor-tab { padding: 5px 10px; font-size: 0.72rem; }
    .booking-card-header { padding: 16px; }
    .booking-card-header h3 { font-size: 1rem; }
    .booking-card-header p { font-size: 0.78rem; }
    .booking-card-body { padding: 16px; }
    .selected-table-info { padding: 12px; border-radius: 10px; }
    .sti-icon { width: 36px; height: 36px; }
    .sti-num { font-size: 0.85rem; }
    .form-group { margin-bottom: 12px; }
    .form-group label { font-size: 0.7rem; margin-bottom: 5px; }
    .form-group input, .form-group select, .form-group textarea { padding: 9px 12px; font-size: 0.85rem; border-radius: 10px; }
    .btn-book-submit { padding: 12px; font-size: 0.88rem; border-radius: 12px; }
    .review-item { padding: 14px 16px; border-radius: 12px; }
    .review-item-header { gap: 10px; }
    .review-avatar { width: 32px; height: 32px; }
    .review-name { font-size: 0.8rem; }
    .review-stars-small { font-size: 0.8rem; }
    .review-text { font-size: 0.82rem; }
    .review-date { font-size: 0.7rem; }
    .auth-notice { padding: 12px 14px; font-size: 0.8rem; border-radius: 10px; }
    .hint-select-table { padding: 16px 0; }
    .hint-select-table span { font-size: 1.6rem; }
    .modal-box { padding: 28px 20px; }
    .modal-title { font-size: 1.3rem; }
    .modal-text { font-size: 0.85rem; }
}

/* ====================== СВЕТЛАЯ ТЕМА — ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ====================== */

/* Переопределение базовой палитры: всё, что построено на этих переменных
   (карточка бронирования, инфо-карточки телефон/вместимость/адрес, отзывы,
   модалка, поля формы) подхватывает светлые цвета автоматически */
:root[data-theme="light"] {
    --black3:  #f6f3ec;
    --dark2:   #ffffff;
    --dark3:   #efeae0;
    --white:   #1a1a1a;
    --muted:   #6e6e6e;
    --muted2:  #4d4d4d;
    --border:  rgba(0,0,0,0.10);
}

/* Название ресторана на фото всегда белое */
[data-theme="light"] .rp-hero-title,
[data-theme="light"] .rp-hero-cats,
[data-theme="light"] .rp-cat-tag {
    color: #ffffff;
}

[data-theme="light"] .rp-cat-tag {
    background: rgba(201,168,76,0.2);
    border-color: rgba(201,168,76,0.5);
}

/* Ссылки и логотип в хедере — сразу тёмные в светлой теме */
[data-theme="light"] .header .logo {
    color: #1a1a1a;
}

[data-theme="light"] .header .logo .logo-red {
    color: var(--gold);
}

[data-theme="light"] .header .nav-left a,
[data-theme="light"] .header .nav-right a:not(.nav-account):not(.nav-login) {
    color: rgba(0,0,0,0.6);
}

[data-theme="light"] .header .nav-left a:hover,
[data-theme="light"] .header .nav-right a:hover {
    color: #1a1a1a;
}

/* Инфо-карточки (телефон, время работы, вместимость, адрес) на белой подложке */
[data-theme="light"] .rp-info-card,
[data-theme="light"] .booking-card,
[data-theme="light"] .review-item,
[data-theme="light"] .modal-box {
    box-shadow: 0 2px 18px rgba(0,0,0,0.06);
}

/* Поля формы бронирования — светлая подложка вместо тёмной */
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
    background: rgba(0,0,0,0.03);
}

[data-theme="light"] .selected-table-info {
    background: rgba(0,0,0,0.035);
}

[data-theme="light"] .modal-btn.secondary {
    background: rgba(0,0,0,0.045);
}

/* Уведомление про вход — золотой текст темнее для читаемости на светлом фоне */
[data-theme="light"] .auth-notice {
    color: var(--primary-dark);
}

/* Шапка карточки бронирования остаётся чёрной плашкой в обеих темах —
   текст в ней всегда белый, чтобы не "потеряться" на чёрном фоне */
[data-theme="light"] .booking-card-header h3 {
    color: #ffffff;
}

/* Обводка для кнопок этажей и залов в светлой теме */
[data-theme="light"] .floor-tab {
    border-color: rgba(0,0,0,0.1);
    background: rgba(0,0,0,0.03);
    color: #666;
}

[data-theme="light"] .floor-tab:hover:not(.active) {
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.15);
    color: #1a1a1a;
}

[data-theme="light"] .hall-tab {
    border-color: rgba(0,0,0,0.1);
    background: rgba(0,0,0,0.03);
    color: #666;
}

[data-theme="light"] .hall-tab:hover {
    border-color: rgba(201,168,76,0.4);
    color: #1a1a1a;
}

[data-theme="light"] .hall-tab.active {
    background: rgba(201,168,76,0.15);
    border-color: rgba(201,168,76,0.5);
    color: var(--gold);
}

/* Счётчики на вкладках */
[data-theme="light"] .floor-tab-count,
[data-theme="light"] .hall-tab-count {
    background: rgba(0,0,0,0.08);
    color: #666;
}

[data-theme="light"] .floor-tab.active .floor-tab-count,
[data-theme="light"] .hall-tab.active .hall-tab-count {
    background: rgba(0,0,0,0.15);
    color: #1a1a1a;
}