* {
    box-sizing: border-box;
}

:root {
    --bg-black: #050505;
    --bg-black-soft: #0a0a0a;
    --card-dark: rgba(10, 10, 10, 0.92);
    --card-dark-2: rgba(15, 15, 15, 0.96);

    --gold: #d4a43a;
    --gold-light: #f6d37a;
    --gold-deep: #8b5b12;
    --gold-border: rgba(244, 189, 79, 0.58);
    --gold-glow: rgba(244, 189, 79, 0.22);

    --text-main: #fff6df;
    --text-soft: #d7c8a4;
    --text-muted: #a8a08d;

    --green: #6eff57;
    --red: #ff644e;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    font-family: Tahoma, Arial, sans-serif;
    direction: rtl;
    color: #fff;
    background: #000;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 12% 35%, rgba(255, 165, 0, 0.15), transparent 18%),
        radial-gradient(circle at 88% 72%, rgba(255, 165, 0, 0.15), transparent 18%),
        radial-gradient(circle at 55% 15%, rgba(255, 175, 60, 0.08), transparent 24%),
        linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.72)),
        url("images/home-bg.jpg") center center / cover no-repeat fixed;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

/* ANIMATIONS */
@keyframes glowPulse {
    0% { box-shadow: 0 0 10px rgba(244, 189, 79, 0.12), 0 0 22px rgba(244, 189, 79, 0.06); }
    50% { box-shadow: 0 0 22px rgba(244, 189, 79, 0.22), 0 0 36px rgba(244, 189, 79, 0.10); }
    100% { box-shadow: 0 0 10px rgba(244, 189, 79, 0.12), 0 0 22px rgba(244, 189, 79, 0.06); }
}

@keyframes shimmer {
    0% { transform: translateX(-130%) skewX(-18deg); opacity: 0; }
    35% { opacity: 0.35; }
    100% { transform: translateX(240%) skewX(-18deg); opacity: 0; }
}

@keyframes sparkleOne {
    0% { transform: translateY(0) scale(1); opacity: 0.18; }
    50% { transform: translateY(-14px) scale(1.08); opacity: 0.28; }
    100% { transform: translateY(0) scale(1); opacity: 0.18; }
}

@keyframes sparkleTwo {
    0% { transform: translateX(0) translateY(0); opacity: 0.10; }
    50% { transform: translateX(10px) translateY(-8px); opacity: 0.18; }
    100% { transform: translateX(0) translateY(0); opacity: 0.10; }
}

/* GLOBAL DECOR */
.home-page,
.artists-page,
.booking-page,
.menu-landing-page,
.admin-login-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.home-page::before,
.home-page::after,
.artists-page::before,
.artists-page::after,
.booking-page::before,
.booking-page::after,
.menu-landing-page::before,
.menu-landing-page::after,
.admin-login-page::before,
.admin-login-page::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
    filter: blur(16px);
}

.home-page::before,
.artists-page::before,
.booking-page::before,
.menu-landing-page::before,
.admin-login-page::before {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -90px;
    background: radial-gradient(circle, rgba(255, 171, 44, 0.22), transparent 72%);
    animation: sparkleOne 8s ease-in-out infinite;
}

.home-page::after,
.artists-page::after,
.booking-page::after,
.menu-landing-page::after,
.admin-login-page::after {
    width: 340px;
    height: 340px;
    bottom: 10%;
    right: -100px;
    background: radial-gradient(circle, rgba(255, 171, 44, 0.18), transparent 72%);
    animation: sparkleTwo 10s ease-in-out infinite;
}

.home-overlay,
.artists-overlay,
.menu-landing-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(255, 193, 85, 0.08), transparent 35%),
        radial-gradient(circle at top left, rgba(255, 165, 0, 0.10), transparent 25%),
        radial-gradient(circle at bottom right, rgba(255, 165, 0, 0.10), transparent 25%);
    pointer-events: none;
    z-index: 1;
}

/* COMMON */
.container,
.admin-page,
.menu-page {
    position: relative;
    z-index: 2;
    width: min(94%, 1200px);
    margin: 28px auto;
    padding: 24px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(22, 12, 4, 0.18), rgba(0, 0, 0, 0.58)),
        rgba(5, 5, 5, 0.90);
    border: 1px solid rgba(244, 189, 79, 0.34);
    box-shadow:
        0 0 28px rgba(244, 189, 79, 0.08),
        0 18px 50px rgba(0, 0, 0, 0.70),
        inset 0 0 40px rgba(244, 189, 79, 0.03);
    backdrop-filter: blur(6px);
}

.form-box {
    background:
        linear-gradient(180deg, rgba(35, 18, 5, 0.10), rgba(0, 0, 0, 0.55)),
        rgba(12, 12, 12, 0.94);
    border: 1px solid rgba(244, 189, 79, 0.18);
    border-radius: 24px;
    padding: 22px;
    box-shadow:
        0 0 16px rgba(244, 189, 79, 0.05),
        inset 0 0 22px rgba(244, 189, 79, 0.03);
}

.page-title,
h1 {
    margin: 0 0 12px;
    text-align: center;
    font-size: 38px;
    color: var(--gold-light);
    text-shadow: 0 0 18px rgba(244, 189, 79, 0.18);
}

h2,
h3 {
    margin-top: 0;
    color: var(--gold-light);
}

.page-subtitle,
.section-note,
p {
    color: var(--text-soft);
    line-height: 1.8;
}

.hero-badge {
    width: fit-content;
    margin: 0 auto 14px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(244, 189, 79, 0.08);
    border: 1px solid rgba(244, 189, 79, 0.20);
    color: var(--gold-light);
    font-weight: bold;
    font-size: 13px;
    box-shadow: 0 0 12px rgba(244, 189, 79, 0.08);
}

label {
    display: block;
    margin: 16px 0 8px;
    color: #f3e7c8;
    font-weight: bold;
    font-size: 14px;
}

input,
select,
textarea,
button {
    width: 100%;
    border: none;
    border-radius: 15px;
    padding: 14px;
    font-size: 15px;
}

input,
select,
textarea {
    background: rgba(10, 10, 10, 0.88);
    color: #fff;
    border: 1px solid rgba(244, 189, 79, 0.12);
    outline: none;
    transition: 0.25s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(244, 189, 79, 0.55);
    box-shadow: 0 0 0 4px rgba(244, 189, 79, 0.10);
    background: rgba(14, 14, 14, 0.96);
}

textarea {
    min-height: 110px;
    resize: vertical;
}

button {
    cursor: pointer;
    font-weight: bold;
    color: #111;
    background: linear-gradient(180deg, #f2c96a, #c88d1f);
    box-shadow:
        0 0 18px rgba(244, 189, 79, 0.16),
        0 10px 20px rgba(0, 0, 0, 0.28);
    transition: 0.25s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 26px rgba(244, 189, 79, 0.24),
        0 12px 22px rgba(0, 0, 0, 0.34);
}

.top-btn,
.admin-link,
.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid rgba(244, 189, 79, 0.20);
    background:
        linear-gradient(180deg, rgba(47, 24, 8, 0.92), rgba(17, 10, 5, 0.95));
    color: #f8e6b1;
    font-weight: bold;
    transition: 0.25s ease;
    box-shadow: 0 0 12px rgba(244, 189, 79, 0.05);
}

.top-btn:hover,
.admin-link:hover,
.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(244, 189, 79, 0.12);
}

.edit-btn { background: linear-gradient(180deg, #2673d2, #1a4c8b); }
.delete-btn { background: linear-gradient(180deg, #d74b39, #8a1f12); }
.view-btn { background: linear-gradient(180deg, #6f5cff, #4130ad); }

.page-top-bar,
.admin-actions-top,
.menu-top-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.page-top-bar,
.menu-top-bar {
    justify-content: center;
    margin-bottom: 18px;
}

.back-btn-strong {
    border: 1px solid rgba(244, 189, 79, 0.35);
    box-shadow: 0 0 16px rgba(244, 189, 79, 0.10);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.message {
    text-align: center;
    padding: 14px 16px;
    border-radius: 14px;
    margin: 16px 0;
    font-weight: bold;
}

.success {
    color: #a8ff8e;
    background: rgba(124, 252, 0, 0.08);
    border: 1px solid rgba(124, 252, 0, 0.18);
}

.error {
    color: #ff9a9a;
    background: rgba(255, 80, 80, 0.08);
    border: 1px solid rgba(255, 80, 80, 0.18);
}

.empty-state {
    text-align: center;
    padding: 24px;
    color: #bfb6a0;
    background: rgba(255,255,255,0.02);
    border: 1px dashed rgba(244, 189, 79, 0.16);
    border-radius: 16px;
}

/* TABLE IMAGES */
.table-image {
    width: 78px;
    height: 78px;
    border-radius: 14px;
    margin: 0 auto;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(244, 189, 79, 0.15);
    padding: 4px;
}

.artist-full-image {
    object-fit: contain !important;
    object-position: center center !important;
    background:
        radial-gradient(circle at center, rgba(255, 175, 50, 0.10), transparent 60%),
        rgba(0,0,0,0.30);
}

/* HOME */
.admin-floating-btn {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;
    min-width: 150px;
    padding: 14px 18px;
    border-radius: 16px;
    text-align: center;
    color: var(--gold-light);
    font-weight: bold;
    background:
        linear-gradient(180deg, rgba(125, 80, 25, 0.92), rgba(70, 40, 10, 0.98));
    border: 2px solid rgba(244, 189, 79, 0.52);
    box-shadow: 0 0 20px rgba(244, 189, 79, 0.16);
    animation: glowPulse 3.4s infinite ease-in-out;
}

.hero-section {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 80px 16px 36px;
}

.hero-logo-wrap {
    max-width: 900px;
    margin-bottom: 34px;
}

.club-icon {
    font-size: 96px;
    color: #f5e7ba;
    margin-bottom: 10px;
}

.club-title {
    font-size: 72px;
    line-height: 1.05;
    margin: 0;
    color: #f7ecd3;
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 1px;
}

.club-subtitle {
    margin: 18px 0 8px;
    font-size: 28px;
    color: #e7c98a;
    font-weight: 700;
}

.club-desc {
    margin: 0;
    font-size: 19px;
    color: #f0f0f0;
    letter-spacing: 0.8px;
}

.hero-actions {
    width: 100%;
    max-width: 760px;
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.hero-btn {
    width: 320px;
    padding: 24px 22px;
    border-radius: 18px;
    font-size: 30px;
    font-weight: bold;
    box-shadow:
        inset 0 0 0 2px rgba(255,255,255,0.10),
        0 12px 24px rgba(0,0,0,0.30);
}

.hero-btn-book {
    background: linear-gradient(180deg, #2cc21b, #137b0c);
    border: 2px solid rgba(144, 255, 126, 0.36);
}

.hero-btn-menu {
    background: linear-gradient(180deg, #d63a14, #8f1f05);
    border: 2px solid rgba(255, 136, 110, 0.30);
}

/* MENU LANDING */
.menu-landing-wrapper {
    position: relative;
    z-index: 2;
    width: min(94%, 900px);
    margin: 0 auto;
    padding: 100px 0 36px;
}

.menu-categories-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.menu-category-link-card {
    display: grid;
    grid-template-columns: 180px 1fr 44px;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(36, 18, 4, 0.18), rgba(0, 0, 0, 0.55)),
        rgba(10, 10, 10, 0.92);
    border: 2px solid rgba(244, 189, 79, 0.45);
    box-shadow:
        0 0 24px rgba(244, 189, 79, 0.14),
        inset 0 0 18px rgba(244, 189, 79, 0.04);
    position: relative;
    overflow: hidden;
    transition: 0.25s ease;
}

.menu-category-link-card::after,
.artist-card::after,
.menu-item-box::after,
.menu-card::after,
.dashboard-stat-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 24%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transform: skewX(-18deg);
}

.menu-category-link-card:hover::after,
.artist-card:hover::after,
.menu-item-box:hover::after,
.menu-card:hover::after,
.dashboard-stat-card:hover::after {
    animation: shimmer 0.9s ease;
}

.menu-category-link-card:hover,
.menu-item-box:hover,
.menu-card:hover {
    transform: translateY(-4px);
}

.menu-category-image-wrap {
    width: 180px;
    height: 130px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(244, 189, 79, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-category-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 8px;
    background: rgba(0,0,0,0.22);
}

.menu-category-image-placeholder,
.menu-item-image-placeholder,
.menu-image-placeholder,
.artist-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    background: linear-gradient(135deg, #1b1b1b, #080808);
    font-weight: bold;
}

.menu-category-text h2 {
    margin: 0 0 10px;
    text-align: center;
    font-size: 32px;
    color: #fff0cb;
}

.menu-category-text p {
    margin: 0;
    text-align: center;
    color: #b9b0a1;
    font-size: 18px;
}

.menu-category-arrow {
    font-size: 44px;
    text-align: center;
    color: var(--gold-light);
}

/* MENU ITEMS */
.menu-items-page {
    max-width: 1200px;
}

.menu-category-title-box {
    text-align: center;
    margin-bottom: 22px;
}

.menu-category-title-box h2 {
    font-size: 44px;
    margin-bottom: 8px;
}

.menu-category-title-box p {
    font-size: 22px;
    color: #d7c8a4;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.menu-item-box,
.menu-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(30, 14, 4, 0.18), rgba(0, 0, 0, 0.58)),
        rgba(8, 8, 8, 0.96);
    border: 2px solid rgba(244, 189, 79, 0.44);
    border-radius: 24px;
    padding: 18px;
    box-shadow:
        0 0 24px rgba(244, 189, 79, 0.13),
        inset 0 0 16px rgba(244, 189, 79, 0.04);
}

.menu-item-image,
.menu-image {
    width: 100%;
    height: 220px;
    object-fit: contain;
    object-position: center;
    padding: 10px;
    border-radius: 18px;
    background: rgba(0,0,0,0.20);
    margin-bottom: 14px;
}

.menu-item-box h3 {
    text-align: center;
    margin: 0 0 14px;
    font-size: 34px;
    color: #ffe4a0;
}

.menu-item-price {
    text-align: center;
    color: var(--gold-light);
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 8px;
}

.menu-item-desc {
    text-align: center;
    color: #c9bea4;
    margin: 0;
}

/* ARTISTS */
.artists-section {
    position: relative;
    z-index: 2;
    width: min(94%, 1220px);
    margin: 0 auto;
    padding: 90px 0 35px;
}

.artists-header {
    text-align: center;
    margin-bottom: 30px;
}

.artists-header h1 {
    font-size: 54px;
    margin-bottom: 10px;
}

.artists-divider {
    width: 220px;
    height: 2px;
    margin: 0 auto 14px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    position: relative;
}

.artists-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold-light);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px rgba(244, 189, 79, 0.22);
}

.artists-header p {
    text-align: center;
    font-size: 20px;
    color: #f1e2bc;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.artist-card {
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(34, 14, 2, 0.22), rgba(0, 0, 0, 0.60)),
        rgba(8, 8, 8, 0.95);
    border: 2px solid rgba(244, 189, 79, 0.48);
    box-shadow:
        0 0 24px rgba(244, 189, 79, 0.12),
        inset 0 0 18px rgba(244, 189, 79, 0.04);
    position: relative;
    transition: 0.25s ease;
}

.artist-card-image-wrap {
    width: 100%;
    height: 360px;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(255, 180, 70, 0.10), transparent 55%),
        rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-image-fit-wrap {
    padding: 8px;
}

.artist-card-image {
    width: 100%;
    height: 100%;
}

.artist-card-content {
    padding: 20px;
}

.artist-card-content h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 18px;
    color: #ffd985;
}

.artist-card-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.artist-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(244, 189, 79, 0.10);
}

.artist-meta-label {
    color: #d6c7a0;
    font-size: 16px;
}

.artist-meta-value {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
}

.artist-card-btn {
    text-align: center;
    padding: 14px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f2c96a, #c88d1f);
    color: #111;
    font-weight: bold;
    font-size: 18px;
}

/* BOOKING / MAP */
.selected-artist-box {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 18px;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(244, 189, 79, 0.12);
    border-radius: 18px;
    padding: 14px;
    margin-bottom: 20px;
}

.selected-artist-image {
    width: 150px;
    height: 150px;
    border-radius: 16px;
}

.selected-artist-info h2,
.selected-artist-info p {
    text-align: right;
    margin: 0 0 8px;
}

.layout-stage-centered {
    width: min(100%, 540px);
    margin: 0 auto 18px;
    padding: 16px;
    border-radius: 16px;
    text-align: center;
    color: #111;
    font-weight: bold;
    background: linear-gradient(180deg, #f2c96a, #c88d1f);
}

.centered-layout-canvas {
    position: relative;
    width: 100%;
    max-width: 1000px;
    min-height: 620px;
    margin: 0 auto 24px;
    border-radius: 22px;
    overflow: auto;
    background:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        #080808;
    background-size: 30px 30px;
    border: 1px solid rgba(244, 189, 79, 0.20);
    box-shadow: inset 0 0 22px rgba(244, 189, 79, 0.04);
}

.layout-item {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border: 2px solid rgba(255,255,255,0.18);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    text-align: center;
    transition: 0.2s ease;
    box-shadow:
        inset 0 8px 12px rgba(255,255,255,0.10),
        inset 0 -10px 14px rgba(0,0,0,0.28),
        0 8px 16px rgba(0,0,0,0.28);
}

.shape-rect { border-radius: 18px; }
.shape-square { border-radius: 14px; }
.shape-circle { border-radius: 999px; }

.layout-type-table {
    background: linear-gradient(145deg, #a152cd, #6d2d91);
}

.layout-type-chair {
    background: linear-gradient(145deg, #19b891, #0f7a63);
}

.layout-type-sofa {
    background: linear-gradient(145deg, #ee912d, #b85504);
}

.layout-type-vip {
    background: linear-gradient(145deg, #ffe06b, #d5a40d);
    color: #111;
}

.selected-layout-item {
    outline: 3px solid var(--gold-light);
    box-shadow:
        0 0 0 5px rgba(244, 189, 79, 0.16),
        inset 0 8px 12px rgba(255,255,255,0.14),
        inset 0 -10px 14px rgba(0,0,0,0.22),
        0 8px 16px rgba(0,0,0,0.28);
}

.client-layout-item.booked {
    background: linear-gradient(145deg, #565656, #2f2f2f) !important;
    color: #d2d2d2 !important;
    border-color: #6e6e6e;
    cursor: not-allowed;
}

.multi-selection-box {
    margin-top: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(244, 189, 79, 0.12);
    border-radius: 18px;
    padding: 16px;
}

.multi-selection-box h3 {
    margin: 0 0 14px;
    text-align: center;
    font-size: 24px;
    color: var(--gold-light);
}

.selected-items-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.selected-item-chip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: rgba(0,0,0,0.24);
    border: 1px solid rgba(244, 189, 79, 0.10);
    border-radius: 14px;
    padding: 12px 14px;
}

.selected-item-chip span {
    color: #fff;
    font-weight: bold;
}

.selected-item-chip strong {
    color: var(--gold-light);
}

/* ADMIN */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(244, 189, 79, 0.12);
}

.welcome-text {
    color: var(--gold-light);
    font-weight: bold;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(244, 189, 79, 0.08);
}

.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.dashboard-stat-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 26px;
    background:
        linear-gradient(180deg, rgba(28, 12, 2, 0.18), rgba(0, 0, 0, 0.56)),
        rgba(8, 8, 8, 0.96);
    border: 2px solid rgba(244, 189, 79, 0.42);
    box-shadow:
        0 0 22px rgba(244, 189, 79, 0.12),
        inset 0 0 14px rgba(244, 189, 79, 0.04);
}

.dashboard-stat-title {
    color: #f1d487;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

.dashboard-stat-value {
    font-size: 58px;
    line-height: 1;
    color: #ffd16b;
    font-weight: bold;
}

.dashboard-stat-sub {
    margin-top: 8px;
    color: #dfd7c2;
    font-size: 18px;
}

/* TABLES */
.table-wrapper {
    overflow-x: auto;
    border-radius: 18px;
}

table {
    width: 100%;
    min-width: 960px;
    border-collapse: collapse;
    background: rgba(8, 8, 8, 0.95);
    border: 1px solid rgba(244, 189, 79, 0.14);
}

table th,
table td {
    padding: 14px 12px;
    text-align: center;
    color: #fff;
    border-bottom: 1px solid rgba(244, 189, 79, 0.08);
    vertical-align: middle;
}

table th {
    background: linear-gradient(180deg, #f2c96a, #c88d1f);
    color: #111;
}

/* ADMIN LOGIN */
.admin-login-wrapper {
    min-height: 100vh;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.admin-login-card {
    width: 100%;
    max-width: 520px;
    padding: 28px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(22, 12, 4, 0.22), rgba(0, 0, 0, 0.64)),
        rgba(5, 5, 5, 0.92);
    border: 2px solid rgba(244, 189, 79, 0.42);
    box-shadow:
        0 0 28px rgba(244, 189, 79, 0.12),
        0 18px 50px rgba(0, 0, 0, 0.75),
        inset 0 0 32px rgba(244, 189, 79, 0.04);
}

.admin-login-note {
    text-align: center;
    margin-bottom: 18px;
}

.admin-login-actions {
    margin-top: 18px;
}

.remember-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    color: #f3e7c8;
    cursor: pointer;
    width: fit-content;
}

.remember-row input {
    width: auto;
    margin: 0;
}

.remember-row span {
    font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .artists-grid,
    .dashboard-stats-grid {
        grid-template-columns: 1fr;
    }

    .club-title {
        font-size: 54px;
    }

    .hero-actions {
        gap: 20px;
    }

    .hero-btn {
        width: 100%;
        max-width: 360px;
    }
}

@media (max-width: 768px) {
    .container,
    .admin-page,
    .menu-page,
    .artists-section,
    .menu-landing-wrapper {
        width: calc(100% - 24px);
        margin: 20px auto;
        padding: 18px 14px;
        border-radius: 20px;
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }

    .page-top-bar,
    .admin-actions-top,
    .menu-top-bar {
        flex-direction: column;
    }

    .top-btn,
    .admin-link,
    .action-btn {
        width: 100%;
    }

    .club-icon {
        font-size: 74px;
    }

    .club-title {
        font-size: 40px;
    }

    .club-subtitle {
        font-size: 22px;
    }

    .club-desc {
        font-size: 14px;
    }

    .hero-btn {
        font-size: 24px;
        padding: 18px 18px;
    }

    .artists-header h1,
    .page-title,
    h1 {
        font-size: 30px;
    }

    .artists-header p {
        font-size: 16px;
    }

    .artist-card-image-wrap {
        height: 290px;
    }

    .artist-meta-row,
    .selected-item-chip {
        flex-direction: column;
        align-items: flex-start;
    }

    .selected-artist-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .selected-artist-image {
        margin: 0 auto;
        width: 220px;
        height: 220px;
    }

    .selected-artist-info h2,
    .selected-artist-info p {
        text-align: center;
    }

    .centered-layout-canvas {
        min-height: 500px;
    }

    .admin-login-card {
        padding: 22px 16px;
    }
}

@media (max-width: 420px) {
    .admin-floating-btn {
        min-width: 130px;
        font-size: 14px;
        padding: 12px 14px;
    }

    .club-title {
        font-size: 34px;
    }

    .club-subtitle {
        font-size: 18px;
    }

    .hero-btn {
        font-size: 21px;
    }

    .artist-card-image-wrap {
        height: 240px;
    }

    .layout-item {
        font-size: 12px;
    }
}
.client-layout-item.booked {
    background: linear-gradient(145deg, #ff5a5a, #b51212) !important;
    color: #ffffff !important;
    border-color: #ff9a9a !important;
    cursor: not-allowed !important;
    opacity: 0.95;
    box-shadow:
        inset 0 8px 12px rgba(255,255,255,0.08),
        inset 0 -10px 14px rgba(0,0,0,0.22),
        0 8px 16px rgba(120,0,0,0.35);
}

.client-layout-item.booked:hover {
    transform: none !important;
}
.inline-transfer-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 220px;
}

.inline-transfer-form select {
    min-width: 220px;
}

.danger-button {
    background: linear-gradient(180deg, #ff6b6b, #b51212) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 120, 120, 0.35);
}

.danger-button:hover {
    box-shadow: 0 0 20px rgba(255, 70, 70, 0.25);
}
.booking-policy-box {
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 180, 60, 0.06);
    border: 1px solid rgba(244, 189, 79, 0.18);
}

.booking-policy-box h3 {
    text-align: center;
    margin-bottom: 12px;
}

.booking-policy-box p {
    margin: 8px 0;
    text-align: right;
}

.booking-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.summary-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(244, 189, 79, 0.14);
    text-align: center;
}

.summary-card span {
    display: block;
    color: #d7c8a4;
    margin-bottom: 8px;
}

.summary-card strong {
    color: #fff;
    font-size: 22px;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 14px;
}

.payment-method-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(244, 189, 79, 0.14);
    cursor: pointer;
    font-weight: bold;
    color: #f6d37a;
}

.payment-method-card input {
    width: auto;
    margin: 0;
}

@media (max-width: 768px) {
    .booking-summary-grid,
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   CUSTOMER DETAILS DASHBOARD
========================= */
.customer-details-page {
    min-height: 100vh;
    padding: 24px;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 166, 0, 0.16), transparent 22%),
        radial-gradient(circle at 80% 80%, rgba(255, 166, 0, 0.16), transparent 22%),
        linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.78)),
        url("images/home-bg.jpg") center center / cover no-repeat fixed;
}

.customer-dashboard-shell {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    min-height: calc(100vh - 48px);
    display: grid;
    grid-template-columns: 320px 1fr;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.92), rgba(0, 0, 0, 0.96));
    border: 2px solid rgba(244, 189, 79, 0.36);
    border-radius: 34px;
    overflow: hidden;
    box-shadow:
        0 0 30px rgba(244, 189, 79, 0.10),
        0 20px 50px rgba(0, 0, 0, 0.65),
        inset 0 0 24px rgba(244, 189, 79, 0.03);
}

.customer-sidebar {
    padding: 28px 22px;
    border-left: 1px solid rgba(244, 189, 79, 0.18);
    background:
        linear-gradient(180deg, rgba(20, 10, 3, 0.48), rgba(0, 0, 0, 0.70));
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.customer-brand-box {
    text-align: center;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(244, 189, 79, 0.18);
    background: rgba(255,255,255,0.02);
}

.customer-brand-icon {
    font-size: 72px;
    color: #f5d27c;
    line-height: 1;
    margin-bottom: 12px;
}

.customer-brand-title {
    font-size: 48px;
    font-family: Georgia, "Times New Roman", serif;
    color: #f8e6b1;
    letter-spacing: 2px;
    line-height: 1;
}

.customer-brand-subtitle {
    font-size: 22px;
    color: #d7b15a;
    letter-spacing: 6px;
    margin-top: 8px;
}

.customer-side-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.customer-side-item {
    padding: 18px 16px;
    border-radius: 18px;
    border: 1px solid rgba(244, 189, 79, 0.10);
    background: rgba(255,255,255,0.02);
    color: #f3e2b6;
    font-weight: bold;
    text-align: center;
}

.customer-side-item.active {
    border-color: rgba(244, 189, 79, 0.34);
    box-shadow: 0 0 18px rgba(244, 189, 79, 0.12);
    background: linear-gradient(180deg, rgba(45, 20, 5, 0.62), rgba(12, 10, 8, 0.90));
}

.customer-side-buttons {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.customer-side-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(244, 189, 79, 0.18);
    background: linear-gradient(180deg, rgba(47, 24, 8, 0.92), rgba(17, 10, 5, 0.95));
    color: #f8e6b1;
    font-weight: bold;
    transition: 0.25s ease;
}

.customer-side-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(244, 189, 79, 0.12);
}

.customer-main-panel {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.customer-top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(244, 189, 79, 0.10);
}

.customer-top-title-box h1 {
    text-align: right;
    margin: 0 0 10px;
    font-size: 52px;
    color: #f3c96e;
}

.customer-top-title-box p {
    margin: 0;
    color: #e4d6b7;
    font-size: 20px;
}

.customer-top-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.customer-top-user-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.customer-top-user-text strong {
    color: #f8e6b1;
    font-size: 24px;
}

.customer-top-user-text span {
    color: #c9b58c;
}

.customer-top-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 32px;
    background: linear-gradient(180deg, #f2c96a, #c88d1f);
    border: 2px solid rgba(244, 189, 79, 0.24);
}

.customer-welcome-box {
    padding: 26px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(28, 12, 2, 0.20), rgba(0, 0, 0, 0.55)),
        rgba(8, 8, 8, 0.96);
    border: 2px solid rgba(244, 189, 79, 0.26);
    box-shadow: 0 0 20px rgba(244, 189, 79, 0.08);
}

.customer-welcome-box h2 {
    margin: 0 0 10px;
    font-size: 38px;
    color: #ffd57f;
}

.customer-welcome-box p {
    margin: 0;
    font-size: 20px;
    color: #e6d8b7;
}

.customer-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.customer-stat-card {
    padding: 24px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(28, 12, 2, 0.18), rgba(0, 0, 0, 0.56)),
        rgba(8, 8, 8, 0.96);
    border: 2px solid rgba(244, 189, 79, 0.30);
    box-shadow:
        0 0 20px rgba(244, 189, 79, 0.08),
        inset 0 0 12px rgba(244, 189, 79, 0.03);
    text-align: center;
}

.customer-stat-label {
    color: #f3d281;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
}

.customer-stat-value {
    font-size: 64px;
    line-height: 1;
    font-weight: bold;
    color: #ffd16b;
}

.customer-stat-value.small-money {
    font-size: 42px;
}

.customer-stat-sub {
    margin-top: 10px;
    color: #d7c8a4;
    font-size: 18px;
}

.customer-content-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 24px;
}

.customer-form-card,
.customer-summary-card {
    padding: 26px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(28, 12, 2, 0.18), rgba(0, 0, 0, 0.56)),
        rgba(8, 8, 8, 0.96);
    border: 2px solid rgba(244, 189, 79, 0.28);
    box-shadow:
        0 0 20px rgba(244, 189, 79, 0.08),
        inset 0 0 12px rgba(244, 189, 79, 0.03);
}

.customer-form-card h3,
.customer-summary-card h3,
.customer-policy-box h3 {
    text-align: right;
    font-size: 30px;
    margin-bottom: 18px;
    color: #ffd57f;
}

.customer-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.customer-policy-box {
    margin-top: 18px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 180, 60, 0.05);
    border: 1px solid rgba(244, 189, 79, 0.16);
}

.customer-policy-box p {
    margin: 8px 0;
    color: #e5d7b6;
}

.customer-next-btn {
    margin-top: 18px;
    font-size: 18px;
    padding: 16px;
}

.customer-summary-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.customer-summary-item {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(244, 189, 79, 0.12);
}

.customer-summary-main {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.customer-summary-main strong {
    color: #fff1c8;
    font-size: 20px;
}

.customer-summary-main span {
    color: #f1c86d;
    font-weight: bold;
}

.customer-summary-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #d5c8ab;
    font-size: 15px;
    margin-bottom: 10px;
}

.customer-summary-price {
    color: #9cff8d;
    font-size: 24px;
    font-weight: bold;
    text-align: left;
}

.customer-total-box {
    border-top: 1px solid rgba(244, 189, 79, 0.12);
    padding-top: 18px;
}

.customer-total-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    color: #e3d5b3;
}

.customer-total-row strong {
    color: #fff;
}

.customer-total-row.grand {
    font-size: 22px;
    font-weight: bold;
    color: #ffd16b;
}

.customer-total-row.grand strong {
    color: #9cff8d;
}

@media (max-width: 1200px) {
    .customer-dashboard-shell {
        grid-template-columns: 280px 1fr;
    }

    .customer-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .customer-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .customer-details-page {
        padding: 14px;
    }

    .customer-dashboard-shell {
        grid-template-columns: 1fr;
    }

    .customer-sidebar {
        border-left: none;
        border-bottom: 1px solid rgba(244, 189, 79, 0.18);
    }

    .customer-form-grid {
        grid-template-columns: 1fr;
    }

    .customer-top-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .customer-stats-grid {
        grid-template-columns: 1fr;
    }

    .customer-top-title-box h1 {
        font-size: 34px;
    }

    .customer-welcome-box h2 {
        font-size: 28px;
    }

    .customer-stat-value {
        font-size: 48px;
    }

    .customer-stat-value.small-money {
        font-size: 34px;
    }

    .customer-summary-main,
    .customer-summary-meta,
    .customer-total-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* =========================
   BETTER BOOKING DETAILS PAGE
========================= */
.booking-details-lux-page {
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 166, 0, 0.12), transparent 18%),
        radial-gradient(circle at 85% 80%, rgba(255, 166, 0, 0.12), transparent 18%),
        linear-gradient(rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.82)),
        url("images/home-bg.jpg") center center / cover no-repeat fixed;
}

.lux-booking-shell {
    position: relative;
    z-index: 2;
    width: min(95%, 1450px);
    margin: 0 auto 30px;
    padding: 28px;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(18, 10, 4, 0.85), rgba(4, 4, 4, 0.95));
    border: 1px solid rgba(244, 189, 79, 0.28);
    box-shadow:
        0 0 30px rgba(244, 189, 79, 0.10),
        0 24px 60px rgba(0, 0, 0, 0.55),
        inset 0 0 24px rgba(244, 189, 79, 0.03);
}

.lux-booking-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(244, 189, 79, 0.10);
    margin-bottom: 24px;
}

.lux-page-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    color: #f5d27c;
    background: rgba(244, 189, 79, 0.08);
    border: 1px solid rgba(244, 189, 79, 0.16);
    font-size: 13px;
    font-weight: bold;
}

.lux-page-title {
    margin: 0 0 8px;
    font-size: 46px;
    color: #ffd57f;
    text-align: right;
}

.lux-page-subtitle {
    margin: 0;
    font-size: 18px;
    color: #decfae;
}

.lux-header-side {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.lux-mini-card {
    min-width: 180px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(244, 189, 79, 0.16);
    text-align: center;
}

.lux-mini-card span {
    display: block;
    color: #cdbb95;
    margin-bottom: 8px;
}

.lux-mini-card strong {
    font-size: 26px;
    color: #ffd16b;
}

.lux-booking-content {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    gap: 24px;
}

.lux-booking-form-panel,
.lux-booking-summary-panel {
    padding: 24px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(25, 12, 4, 0.30), rgba(0, 0, 0, 0.55)),
        rgba(8, 8, 8, 0.96);
    border: 1px solid rgba(244, 189, 79, 0.20);
    box-shadow:
        0 0 18px rgba(244, 189, 79, 0.06),
        inset 0 0 14px rgba(244, 189, 79, 0.03);
}

.lux-panel-head {
    margin-bottom: 18px;
}

.lux-panel-head h2 {
    margin: 0 0 8px;
    font-size: 30px;
    color: #ffd57f;
}

.lux-panel-head p {
    margin: 0;
    color: #d8c9a8;
}

.lux-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.lux-field {
    margin-bottom: 14px;
}

.lux-field label {
    margin-bottom: 8px;
}

.lux-policy-card {
    margin-top: 18px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 191, 73, 0.05);
    border: 1px solid rgba(244, 189, 79, 0.15);
}

.lux-policy-card h3 {
    margin: 0 0 12px;
    color: #ffd57f;
}

.lux-policy-card ul {
    margin: 0;
    padding-right: 18px;
    color: #e4d7b8;
    line-height: 1.9;
}

.lux-submit-btn {
    margin-top: 18px;
    padding: 16px;
    font-size: 18px;
}

.lux-summary-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lux-summary-item {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(244, 189, 79, 0.12);
}

.lux-summary-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.lux-summary-top strong {
    color: #fff1c8;
    font-size: 18px;
}

.lux-summary-top span {
    color: #f1c86d;
    font-weight: bold;
}

.lux-summary-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #d5c8ab;
    font-size: 14px;
    margin-bottom: 10px;
}

.lux-summary-price {
    color: #9cff8d;
    font-size: 22px;
    font-weight: bold;
    text-align: left;
}

.lux-totals-box {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(244, 189, 79, 0.12);
}

.lux-total-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    color: #e3d5b3;
}

.lux-total-row strong {
    color: #fff;
}

.lux-total-row.grand {
    font-size: 21px;
    font-weight: bold;
}

.lux-total-row.grand strong {
    color: #9cff8d;
}

/* =========================
   BETTER MENU PAGES
========================= */
.menu-lux-page {
    background:
        radial-gradient(circle at 10% 25%, rgba(255, 170, 0, 0.12), transparent 18%),
        radial-gradient(circle at 90% 80%, rgba(255, 170, 0, 0.12), transparent 18%),
        linear-gradient(rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.82)),
        url("images/home-bg.jpg") center center / cover no-repeat fixed;
}

.menu-lux-wrapper,
.menu-items-lux-wrapper {
    position: relative;
    z-index: 2;
    width: min(95%, 1400px);
    margin: 0 auto 30px;
    padding: 26px;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(18, 10, 4, 0.82), rgba(4, 4, 4, 0.95));
    border: 1px solid rgba(244, 189, 79, 0.24);
    box-shadow:
        0 0 28px rgba(244, 189, 79, 0.10),
        0 20px 55px rgba(0, 0, 0, 0.52),
        inset 0 0 22px rgba(244, 189, 79, 0.03);
}

.menu-lux-header,
.menu-items-lux-header {
    text-align: center;
    margin-bottom: 28px;
}

.menu-lux-title,
.menu-items-lux-header h1 {
    margin: 0 0 10px;
    font-size: 48px;
    color: #ffd57f;
}

.menu-lux-subtitle,
.menu-items-lux-header p {
    margin: 0;
    color: #dccca9;
    font-size: 18px;
}

.menu-lux-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.menu-lux-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(28, 12, 2, 0.22), rgba(0, 0, 0, 0.58)),
        rgba(8, 8, 8, 0.96);
    border: 2px solid rgba(244, 189, 79, 0.30);
    box-shadow:
        0 0 22px rgba(244, 189, 79, 0.10),
        inset 0 0 14px rgba(244, 189, 79, 0.03);
    transition: 0.25s ease;
}

.menu-lux-card:hover,
.menu-item-lux-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 28px rgba(244, 189, 79, 0.16),
        inset 0 0 14px rgba(244, 189, 79, 0.04);
}

.menu-lux-image-wrap {
    width: 100%;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(255, 175, 50, 0.10), transparent 60%),
        rgba(0,0,0,0.26);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-lux-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.menu-lux-card-body h2 {
    margin: 0 0 10px;
    font-size: 34px;
    color: #fff0cb;
}

.menu-lux-card-body p {
    margin: 0 0 16px;
    color: #d8c9a8;
    font-size: 18px;
}

.menu-lux-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    color: #111;
    background: linear-gradient(180deg, #f2c96a, #c88d1f);
    font-weight: bold;
}

.menu-items-lux-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.menu-item-lux-card {
    overflow: hidden;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(28, 12, 2, 0.22), rgba(0, 0, 0, 0.58)),
        rgba(8, 8, 8, 0.96);
    border: 2px solid rgba(244, 189, 79, 0.30);
    box-shadow:
        0 0 22px rgba(244, 189, 79, 0.10),
        inset 0 0 14px rgba(244, 189, 79, 0.03);
    transition: 0.25s ease;
}

.menu-item-lux-image-wrap {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(255, 175, 50, 0.10), transparent 60%),
        rgba(0,0,0,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-item-lux-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 14px;
}

.menu-item-lux-body {
    padding: 20px;
    text-align: center;
}

.menu-item-lux-body h3 {
    margin: 0 0 10px;
    font-size: 32px;
    color: #ffe4a0;
}

.menu-item-lux-price {
    font-size: 30px;
    font-weight: bold;
    color: #9cff8d;
    margin-bottom: 12px;
}

.menu-item-lux-body p {
    margin: 0;
    color: #d1c3a5;
    line-height: 1.9;
}

@media (max-width: 1100px) {
    .lux-booking-content,
    .menu-lux-grid,
    .menu-items-lux-grid {
        grid-template-columns: 1fr;
    }

    .menu-lux-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lux-booking-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .lux-booking-shell,
    .menu-lux-wrapper,
    .menu-items-lux-wrapper {
        width: calc(100% - 20px);
        padding: 18px 14px;
        border-radius: 22px;
    }

    .lux-form-grid {
        grid-template-columns: 1fr;
    }

    .lux-page-title,
    .menu-lux-title,
    .menu-items-lux-header h1 {
        font-size: 34px;
    }

    .lux-header-side {
        width: 100%;
        flex-direction: column;
    }

    .lux-mini-card {
        width: 100%;
    }

    .lux-summary-top,
    .lux-summary-meta,
    .lux-total-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-lux-image-wrap,
    .menu-item-lux-image-wrap {
        height: 220px;
    }

    .menu-lux-card-body h2,
    .menu-item-lux-body h3 {
        font-size: 26px;
    }
}
/* =========================
   MENU EXACT SHOWCASE STYLE
========================= */

.menu-showcase-page,
.menu-items-showcase-page {
    min-height: 100vh;
    margin: 0;
    direction: rtl;
    font-family: Tahoma, Arial, sans-serif;
    background:
        radial-gradient(circle at 8% 45%, rgba(255, 166, 0, 0.22), transparent 18%),
        radial-gradient(circle at 92% 80%, rgba(255, 166, 0, 0.20), transparent 18%),
        radial-gradient(circle at 25% 95%, rgba(255, 166, 0, 0.15), transparent 14%),
        linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.80)),
        url("images/home-bg.jpg") center center / cover no-repeat fixed;
    color: #fff;
}

.menu-showcase-wrap {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 170px 20px 70px;
}

.menu-showcase-categories {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: center;
}

.menu-category-showcase-card {
    width: 100%;
    max-width: 980px;
    min-height: 190px;
    display: grid;
    grid-template-columns: 230px 1fr 80px;
    align-items: center;
    gap: 18px;
    padding: 14px 26px 14px 18px;
    border-radius: 26px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(42, 24, 14, 0.60), rgba(0, 0, 0, 0.72)),
        rgba(10, 10, 10, 0.92);
    border: 2px solid rgba(255, 165, 60, 0.38);
    box-shadow:
        0 0 20px rgba(255, 166, 0, 0.16),
        0 0 42px rgba(255, 166, 0, 0.08),
        inset 0 0 22px rgba(255, 255, 255, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-category-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 24px rgba(255, 166, 0, 0.22),
        0 0 50px rgba(255, 166, 0, 0.12),
        inset 0 0 24px rgba(255, 255, 255, 0.04);
}

.menu-category-showcase-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    pointer-events: none;
    box-shadow:
        inset 0 0 0 1px rgba(255, 220, 150, 0.10),
        inset 0 0 30px rgba(255, 166, 0, 0.04);
}

.menu-category-showcase-image {
    width: 100%;
    height: 158px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.menu-category-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 0 18px rgba(255, 166, 0, 0.25));
}

.menu-category-showcase-content {
    text-align: center;
    padding: 0 10px;
}

.menu-category-showcase-content h2 {
    margin: 0 0 10px;
    font-size: 64px;
    line-height: 1.05;
    font-weight: 800;
    color: #fff4df;
    text-shadow: 0 0 20px rgba(255, 166, 0, 0.18);
}

.menu-category-showcase-content p {
    margin: 0;
    font-size: 28px;
    color: #bfb7b0;
    letter-spacing: 0.5px;
}

.menu-category-showcase-arrow {
    font-size: 90px;
    color: #ffe8b5;
    text-align: center;
    line-height: 1;
    text-shadow: 0 0 18px rgba(255, 166, 0, 0.25);
}

.menu-showcase-placeholder {
    width: 100%;
    height: 100%;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border-radius: 18px;
    color: #f2c96a;
    font-weight: bold;
    font-size: 22px;
}

/* ITEMS PAGE */
.menu-items-page-wrap {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 35px 20px 70px;
}

.menu-items-topbar {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 18px;
}

.menu-top-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 16px 26px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(145, 96, 31, 0.96), rgba(92, 54, 13, 0.98));
    border: 2px solid rgba(255, 201, 108, 0.42);
    color: #ffe7b0;
    font-weight: bold;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 0 18px rgba(255, 166, 0, 0.16);
    transition: 0.25s ease;
}

.menu-top-back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(255, 166, 0, 0.22);
}

.menu-items-header-showcase {
    text-align: center;
    margin-bottom: 38px;
    padding-top: 10px;
}

.menu-items-header-showcase h1 {
    margin: 0 0 10px;
    font-size: 72px;
    line-height: 1.05;
    color: #f3c76d;
    font-weight: 900;
    text-shadow: 0 0 22px rgba(255, 166, 0, 0.20);
}

.menu-items-header-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.menu-items-header-line span {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c88d1f, transparent);
    display: block;
}

.menu-items-header-line strong {
    color: #f0d18b;
    font-size: 28px;
    font-weight: 500;
}

.menu-items-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 34px;
    justify-content: center;
}

.menu-item-showcase-card {
    width: 100%;
    min-height: 520px;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    background:
        linear-gradient(180deg, rgba(40, 20, 8, 0.42), rgba(0, 0, 0, 0.70)),
        rgba(8, 8, 8, 0.96);
    border: 2px solid rgba(255, 166, 0, 0.42);
    box-shadow:
        0 0 24px rgba(255, 166, 0, 0.18),
        0 0 44px rgba(255, 166, 0, 0.07),
        inset 0 0 18px rgba(255,255,255,0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-item-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 28px rgba(255, 166, 0, 0.24),
        0 0 54px rgba(255, 166, 0, 0.10),
        inset 0 0 18px rgba(255,255,255,0.04);
}

.menu-item-showcase-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    pointer-events: none;
    box-shadow:
        inset 0 0 0 1px rgba(255, 230, 170, 0.08),
        inset 0 0 25px rgba(255, 166, 0, 0.04);
}

.menu-item-showcase-image {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 12px 12px 0;
    overflow: hidden;
}

.menu-item-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 0 18px rgba(255, 166, 0, 0.24));
}

.menu-item-showcase-content {
    padding: 8px 22px 24px;
    text-align: center;
}

.menu-item-showcase-content h3 {
    margin: 0 0 12px;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 800;
    color: #ffe8b0;
    text-shadow: 0 0 18px rgba(255, 166, 0, 0.18);
}

.menu-item-showcase-price {
    font-size: 50px;
    line-height: 1;
    font-weight: 800;
    color: #f3d07b;
    margin-bottom: 10px;
}

.menu-item-showcase-content p {
    margin: 0;
    font-size: 18px;
    color: #cdbf9f;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 1200px) {
    .menu-category-showcase-card {
        grid-template-columns: 190px 1fr 60px;
        min-height: 165px;
    }

    .menu-category-showcase-content h2 {
        font-size: 46px;
    }

    .menu-item-showcase-content h3 {
        font-size: 42px;
    }

    .menu-item-showcase-price {
        font-size: 38px;
    }

    .menu-items-header-showcase h1 {
        font-size: 56px;
    }
}

@media (max-width: 900px) {
    .menu-showcase-wrap {
        padding-top: 140px;
    }

    .menu-category-showcase-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px;
    }

    .menu-category-showcase-image {
        height: 190px;
    }

    .menu-category-showcase-arrow {
        display: none;
    }

    .menu-category-showcase-content h2 {
        font-size: 38px;
    }

    .menu-category-showcase-content p {
        font-size: 22px;
    }

    .menu-items-showcase-grid {
        grid-template-columns: 1fr;
    }

    .menu-item-showcase-card {
        min-height: 470px;
    }

    .menu-item-showcase-content h3 {
        font-size: 38px;
    }

    .menu-item-showcase-price {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .menu-showcase-wrap,
    .menu-items-page-wrap {
        padding-left: 14px;
        padding-right: 14px;
    }

    .menu-category-showcase-card {
        border-radius: 22px;
    }

    .menu-category-showcase-content h2 {
        font-size: 30px;
    }

    .menu-category-showcase-content p {
        font-size: 18px;
    }

    .menu-items-header-showcase h1 {
        font-size: 38px;
    }

    .menu-items-header-line strong {
        font-size: 20px;
    }

    .menu-items-header-line span {
        width: 70px;
    }

    .menu-item-showcase-image {
        height: 220px;
    }

    .menu-item-showcase-content h3 {
        font-size: 30px;
    }

    .menu-item-showcase-price {
        font-size: 28px;
    }

    .menu-top-back-btn {
        width: 100%;
        font-size: 20px;
    }
}
/* تصغير كروت أقسام المينيو */
.menu-showcase-wrap-medium {
    max-width: 860px !important;
    padding-top: 150px !important;
}

.menu-category-showcase-card-medium {
    max-width: 760px !important;
    min-height: 145px !important;
    grid-template-columns: 170px 1fr 52px !important;
    gap: 12px !important;
    padding: 10px 18px 10px 12px !important;
    border-radius: 22px !important;
}

.menu-category-showcase-image-medium {
    height: 120px !important;
}

.menu-category-showcase-content-medium h2 {
    font-size: 38px !important;
    margin-bottom: 6px !important;
}

.menu-category-showcase-content-medium p {
    font-size: 17px !important;
}

.menu-category-showcase-arrow-medium {
    font-size: 62px !important;
}

@media (max-width: 900px) {
    .menu-category-showcase-card-medium {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        min-height: auto !important;
        padding: 16px !important;
    }

    .menu-category-showcase-image-medium {
        height: 150px !important;
    }

    .menu-category-showcase-content-medium h2 {
        font-size: 30px !important;
    }

    .menu-category-showcase-content-medium p {
        font-size: 16px !important;
    }

    .menu-category-showcase-arrow-medium {
        display: none !important;
    }
}
/* =========================
   MAP IMPROVEMENTS
========================= */

.layout-editor-grid {
    grid-template-columns: minmax(340px, 430px) 1fr;
}

.map-note-box {
    margin: 0 auto 14px;
    padding: 12px 14px;
    border-radius: 14px;
    text-align: center;
    color: #f3e7c8;
    background: rgba(244, 189, 79, 0.08);
    border: 1px solid rgba(244, 189, 79, 0.18);
}

.map-scroll-shell {
    width: 100%;
    overflow: auto;
    border-radius: 22px;
    border: 1px solid rgba(244, 189, 79, 0.20);
    background:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        #080808;
    background-size: 30px 30px;
    box-shadow: inset 0 0 22px rgba(244, 189, 79, 0.04);
    -webkit-overflow-scrolling: touch;
}

.map-scroll-shell::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.map-scroll-shell::-webkit-scrollbar-thumb {
    background: rgba(244, 189, 79, 0.45);
    border-radius: 999px;
}

.map-scroll-shell::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.04);
    border-radius: 999px;
}

.map-canvas {
    position: relative;
    min-width: 1200px;
    min-height: 780px;
}

.map-canvas-admin {
    width: 1400px;
    height: 850px;
}

.map-canvas-customer {
    width: 1400px;
    height: 850px;
}

.admin-map-scroll-shell {
    min-height: 620px;
    max-height: 760px;
}

.customer-map-scroll-shell {
    min-height: 520px;
    max-height: 75vh;
}

.customer-map-scroll-shell .layout-item,
.admin-map-scroll-shell .layout-item {
    font-size: 13px;
    line-height: 1.3;
}

.customer-map-scroll-shell .layout-item {
    white-space: normal;
}

@media (max-width: 1100px) {
    .layout-editor-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .map-canvas {
        min-width: 1150px;
        min-height: 760px;
    }

    .map-canvas-admin,
    .map-canvas-customer {
        width: 1250px;
        height: 820px;
    }

    .customer-map-scroll-shell {
        min-height: 460px;
        max-height: 70vh;
    }

    .admin-map-scroll-shell {
        min-height: 500px;
        max-height: 70vh;
    }
}

@media (max-width: 480px) {
    .map-canvas {
        min-width: 1100px;
        min-height: 720px;
    }

    .map-canvas-admin,
    .map-canvas-customer {
        width: 1180px;
        height: 780px;
    }

    .customer-map-scroll-shell,
    .admin-map-scroll-shell {
        border-radius: 16px;
    }
}
/* =========================
   MAP LAYOUT FIXES
========================= */

.map-scroll-shell {
    width: 100%;
    overflow: auto;
    border-radius: 22px;
    border: 1px solid rgba(244, 189, 79, 0.20);
    background:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        #080808;
    background-size: 30px 30px;
    box-shadow: inset 0 0 22px rgba(244, 189, 79, 0.04);
    -webkit-overflow-scrolling: touch;
}

.map-scroll-shell::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.map-scroll-shell::-webkit-scrollbar-thumb {
    background: rgba(244, 189, 79, 0.45);
    border-radius: 999px;
}

.map-scroll-shell::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.04);
}

.map-canvas {
    position: relative;
    min-width: 1200px;
    min-height: 760px;
}

.map-canvas-admin {
    width: 1400px;
    height: 850px;
}

.map-canvas-customer {
    width: 1400px;
    height: 850px;
}

.admin-map-scroll-shell {
    min-height: 620px;
    max-height: 760px;
}

.customer-map-scroll-shell {
    min-height: 520px;
    max-height: 75vh;
    margin-bottom: 22px;
}

@media (max-width: 768px) {
    .map-canvas {
        min-width: 1100px;
        min-height: 720px;
    }

    .map-canvas-admin,
    .map-canvas-customer {
        width: 1200px;
        height: 800px;
    }

    .admin-map-scroll-shell,
    .customer-map-scroll-shell {
        max-height: 70vh;
    }
}
/* =========================
   BOOKING MAP MOBILE FIX
========================= */

.booking-map-page-wrap {
    padding-top: 18px;
}

.booking-map-artist-box {
    margin-bottom: 22px;
}

.booking-map-date-row {
    margin-bottom: 18px;
}

.booking-map-layout-card {
    margin: 22px 0;
    padding: 18px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(25, 12, 4, 0.22), rgba(0, 0, 0, 0.55)),
        rgba(8, 8, 8, 0.96);
    border: 1px solid rgba(244, 189, 79, 0.18);
}

.booking-map-selection-box {
    margin-top: 18px;
}

.booking-map-summary-grid {
    margin-top: 14px;
}

.map-note-box {
    margin: 0 auto 14px;
    padding: 12px 14px;
    border-radius: 14px;
    text-align: center;
    color: #f3e7c8;
    background: rgba(244, 189, 79, 0.08);
    border: 1px solid rgba(244, 189, 79, 0.18);
    font-size: 14px;
}

.map-scroll-shell {
    width: 100%;
    overflow: auto;
    border-radius: 22px;
    border: 1px solid rgba(244, 189, 79, 0.20);
    background:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        #080808;
    background-size: 30px 30px;
    box-shadow: inset 0 0 22px rgba(244, 189, 79, 0.04);
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.map-scroll-shell::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.map-scroll-shell::-webkit-scrollbar-thumb {
    background: rgba(244, 189, 79, 0.45);
    border-radius: 999px;
}

.map-scroll-shell::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.04);
}

.map-canvas {
    position: relative;
    min-width: 1200px;
    min-height: 820px;
}

.map-canvas-customer {
    width: 1400px;
    height: 900px;
}

.customer-map-scroll-shell {
    min-height: 560px;
    max-height: 72vh;
    margin: 0 auto;
}

.customer-map-scroll-shell .layout-item {
    font-size: 14px;
    font-weight: 800;
    z-index: 2;
}

.customer-map-scroll-shell .client-layout-item {
    white-space: nowrap;
}

@media (max-width: 991px) {
    .booking-map-layout-card {
        padding: 14px;
    }

    .customer-map-scroll-shell {
        min-height: 500px;
        max-height: 68vh;
    }
}

@media (max-width: 768px) {
    .booking-map-page-wrap {
        padding-left: 10px;
        padding-right: 10px;
    }

    .booking-map-layout-card {
        border-radius: 18px;
        padding: 12px;
    }

    .map-canvas {
        min-width: 1100px;
        min-height: 760px;
    }

    .map-canvas-customer {
        width: 1220px;
        height: 820px;
    }

    .customer-map-scroll-shell {
        min-height: 460px;
        max-height: 62vh;
        border-radius: 16px;
    }

    .map-note-box {
        font-size: 13px;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .map-canvas {
        min-width: 1050px;
        min-height: 720px;
    }

    .map-canvas-customer {
        width: 1150px;
        height: 780px;
    }

    .customer-map-scroll-shell {
        min-height: 420px;
        max-height: 58vh;
    }

    .customer-map-scroll-shell .layout-item {
        font-size: 13px;
    }
}
/* =========================
   BOOKING MAP MOBILE FIX
========================= */

.booking-map-page-wrap {
    padding-top: 18px;
}

.booking-map-artist-box {
    margin-bottom: 22px;
}

.booking-map-date-row {
    margin-bottom: 18px;
}

.booking-map-layout-card {
    margin: 22px 0;
    padding: 18px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(25, 12, 4, 0.22), rgba(0, 0, 0, 0.55)),
        rgba(8, 8, 8, 0.96);
    border: 1px solid rgba(244, 189, 79, 0.18);
    overflow: hidden;
}

.booking-map-selection-box {
    margin-top: 18px;
}

.booking-map-summary-grid {
    margin-top: 14px;
}

.map-note-box {
    margin: 0 auto 14px;
    padding: 12px 14px;
    border-radius: 14px;
    text-align: center;
    color: #f3e7c8;
    background: rgba(244, 189, 79, 0.08);
    border: 1px solid rgba(244, 189, 79, 0.18);
    font-size: 14px;
}

.map-scroll-shell {
    width: 100%;
    overflow: auto;
    border-radius: 22px;
    border: 1px solid rgba(244, 189, 79, 0.20);
    background:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        #080808;
    background-size: 30px 30px;
    box-shadow: inset 0 0 22px rgba(244, 189, 79, 0.04);
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding: 10px;
    box-sizing: border-box;
}

.map-scroll-shell::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.map-scroll-shell::-webkit-scrollbar-thumb {
    background: rgba(244, 189, 79, 0.45);
    border-radius: 999px;
}

.map-scroll-shell::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.04);
}

.map-canvas {
    position: relative;
    min-width: 1200px;
    min-height: 820px;
}

.map-canvas-customer {
    width: 1400px;
    height: 900px;
    transform-origin: top center;
}

.map-canvas-mobile-scale {
    transform: scale(1);
}

.customer-map-scroll-shell {
    min-height: 560px;
    max-height: 72vh;
    margin: 0 auto;
}

.customer-map-scroll-shell .layout-item {
    font-size: 14px;
    font-weight: 800;
    z-index: 2;
}

.customer-map-scroll-shell .client-layout-item {
    white-space: nowrap;
}

@media (max-width: 992px) {
    .customer-map-scroll-shell {
        min-height: 520px;
        max-height: 70vh;
    }

    .map-canvas-mobile-scale {
        transform: scale(0.88);
    }

    .customer-map-scroll-shell .layout-item {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .booking-map-page-wrap {
        padding-left: 10px;
        padding-right: 10px;
    }

    .booking-map-layout-card {
        border-radius: 18px;
        padding: 12px;
    }

    .map-canvas {
        min-width: 1100px;
        min-height: 760px;
    }

    .map-canvas-customer {
        width: 1220px;
        height: 820px;
    }

    .map-canvas-mobile-scale {
        transform: scale(0.72);
    }

    .customer-map-scroll-shell {
        min-height: 460px;
        max-height: 62vh;
        border-radius: 16px;
        padding: 8px;
    }

    .customer-map-scroll-shell .layout-item {
        font-size: 12px;
        border-width: 2px;
    }

    .layout-stage-centered {
        font-size: 18px;
        padding: 12px;
        margin-bottom: 12px;
    }

    .map-note-box {
        font-size: 13px;
        padding: 10px 12px;
        margin-bottom: 12px;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .map-canvas {
        min-width: 1050px;
        min-height: 720px;
    }

    .map-canvas-customer {
        width: 1150px;
        height: 780px;
    }

    .map-canvas-mobile-scale {
        transform: scale(0.58);
    }

    .customer-map-scroll-shell {
        min-height: 420px;
        max-height: 58vh;
        padding: 6px;
    }

    .customer-map-scroll-shell .layout-item {
        font-size: 11px;
        border-width: 2px;
        box-shadow:
            inset 0 5px 8px rgba(255,255,255,0.08),
            inset 0 -7px 10px rgba(0,0,0,0.22),
            0 4px 10px rgba(0,0,0,0.18);
    }

    .selected-artist-box.booking-map-artist-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .selected-artist-box.booking-map-artist-box .selected-artist-image {
        margin: 0 auto;
        width: 170px;
        height: 170px;
    }

    .selected-artist-box.booking-map-artist-box .selected-artist-info h2,
    .selected-artist-box.booking-map-artist-box .selected-artist-info p {
        text-align: center;
    }

    .booking-map-summary-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   FINAL OVERRIDES - BOOKING MAP MOBILE FIX
   ========================================================= */

/* Keep booking map stacked correctly: artist -> map -> selected items */
.booking-container.booking-map-page-wrap,
.booking-map-page-wrap {
    max-width: 1200px;
}

.booking-map-artist-box {
    margin-bottom: 18px !important;
}

.booking-map-date-row {
    margin-bottom: 18px !important;
}

.booking-map-layout-card {
    display: block !important;
    width: 100% !important;
    margin: 20px 0 !important;
    padding: 16px !important;
    border-radius: 22px !important;
    background:
        linear-gradient(180deg, rgba(25, 12, 4, 0.22), rgba(0, 0, 0, 0.55)),
        rgba(8, 8, 8, 0.96) !important;
    border: 1px solid rgba(244, 189, 79, 0.18) !important;
    overflow: hidden !important;
}

.booking-map-selection-box {
    margin-top: 18px !important;
}

.booking-map-summary-grid {
    margin-top: 14px !important;
}

.map-note-box {
    margin: 0 auto 14px !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
    text-align: center !important;
    color: #f3e7c8 !important;
    background: rgba(244, 189, 79, 0.08) !important;
    border: 1px solid rgba(244, 189, 79, 0.18) !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
}

/* Dedicated scroll shell for customer map */
.customer-map-scroll-shell {
    width: 100% !important;
    min-height: 560px !important;
    max-height: 72vh !important;
    overflow: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 10px !important;
    margin: 0 auto 18px !important;
    border-radius: 22px !important;
    border: 1px solid rgba(244, 189, 79, 0.20) !important;
    background:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        #080808 !important;
    background-size: 30px 30px !important;
    box-shadow: inset 0 0 22px rgba(244, 189, 79, 0.04) !important;
    position: relative !important;
}

.customer-map-scroll-shell::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.customer-map-scroll-shell::-webkit-scrollbar-thumb {
    background: rgba(244, 189, 79, 0.45);
    border-radius: 999px;
}

.customer-map-scroll-shell::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.04);
    border-radius: 999px;
}

/* Important: keep the canvas real size and scale it visually only */
.map-canvas-customer,
.map-canvas-customer.map-canvas-mobile-scale {
    position: relative !important;
    width: 1400px !important;
    height: 900px !important;
    min-width: 1400px !important;
    min-height: 900px !important;
    transform-origin: top right !important;
    transform: scale(1) !important;
}

/* Force booking map items to stay inside the map area */
.customer-map-scroll-shell .layout-item,
.customer-map-scroll-shell .client-layout-item {
    position: absolute !important;
    z-index: 2 !important;
    white-space: nowrap !important;
    font-size: 14px !important;
    font-weight: 800 !important;
}

/* Tablet */
@media (max-width: 992px) {
    .customer-map-scroll-shell {
        min-height: 520px !important;
        max-height: 70vh !important;
        padding: 8px !important;
    }

    .map-canvas-customer,
    .map-canvas-customer.map-canvas-mobile-scale {
        transform: scale(0.88) !important;
        margin-right: -168px !important;
        margin-bottom: -108px !important;
    }

    .customer-map-scroll-shell .layout-item,
    .customer-map-scroll-shell .client-layout-item {
        font-size: 13px !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .booking-map-page-wrap {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .booking-map-layout-card {
        padding: 12px !important;
        border-radius: 18px !important;
    }

    .layout-stage-centered {
        font-size: 18px !important;
        padding: 12px !important;
        margin-bottom: 12px !important;
    }

    .customer-map-scroll-shell {
        min-height: 430px !important;
        max-height: 60vh !important;
        padding: 6px !important;
        border-radius: 16px !important;
    }

    .map-canvas-customer,
    .map-canvas-customer.map-canvas-mobile-scale {
        transform: scale(0.66) !important;
        margin-right: -476px !important;
        margin-bottom: -306px !important;
    }

    .customer-map-scroll-shell .layout-item,
    .customer-map-scroll-shell .client-layout-item {
        font-size: 12px !important;
        border-width: 2px !important;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .booking-map-layout-card {
        padding: 10px !important;
        border-radius: 16px !important;
    }

    .customer-map-scroll-shell {
        min-height: 360px !important;
        max-height: 54vh !important;
        padding: 4px !important;
    }

    .map-canvas-customer,
    .map-canvas-customer.map-canvas-mobile-scale {
        transform: scale(0.54) !important;
        margin-right: -644px !important;
        margin-bottom: -414px !important;
    }

    .customer-map-scroll-shell .layout-item,
    .customer-map-scroll-shell .client-layout-item {
        font-size: 11px !important;
    }

    .selected-artist-box.booking-map-artist-box {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    .selected-artist-box.booking-map-artist-box .selected-artist-image {
        width: 170px !important;
        height: 170px !important;
        margin: 0 auto !important;
    }

    .selected-artist-box.booking-map-artist-box .selected-artist-info h2,
    .selected-artist-box.booking-map-artist-box .selected-artist-info p {
        text-align: center !important;
    }

    .booking-map-summary-grid {
        grid-template-columns: 1fr !important;
    }
}
/* ===== BOOKING MAP FINAL MOBILE VIEW ===== */

.booking-map-artist-box {
    margin-bottom: 22px;
}

.booking-map-layout-card {
    margin: 22px 0;
    padding: 16px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(25, 12, 4, 0.22), rgba(0, 0, 0, 0.55)),
        rgba(8, 8, 8, 0.96);
    border: 1px solid rgba(244, 189, 79, 0.18);
}

.map-note-box {
    margin: 0 auto 14px;
    padding: 12px 14px;
    border-radius: 14px;
    text-align: center;
    color: #f3e7c8;
    background: rgba(244, 189, 79, 0.08);
    border: 1px solid rgba(244, 189, 79, 0.18);
    font-size: 14px;
}

.map-zoom-toolbar {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.map-zoom-btn {
    width: auto;
    min-width: 70px;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid rgba(244, 189, 79, 0.22);
    background: linear-gradient(180deg, #f2c96a, #c88d1f);
    color: #111;
    font-weight: bold;
    font-size: 16px;
}

.map-pan-shell {
    width: 100%;
    height: 560px;
    overflow: auto;
    border-radius: 22px;
    border: 1px solid rgba(244, 189, 79, 0.20);
    background:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        #080808;
    background-size: 30px 30px;
    box-shadow: inset 0 0 22px rgba(244, 189, 79, 0.04);
    -webkit-overflow-scrolling: touch;
    padding: 10px;
}

.map-pan-shell::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.map-pan-shell::-webkit-scrollbar-thumb {
    background: rgba(244, 189, 79, 0.45);
    border-radius: 999px;
}

.map-pan-shell::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.04);
}

.map-pan-inner {
    position: relative;
    width: 1400px;
    height: 900px;
    transform-origin: top center;
    transition: transform 0.2s ease;
}

.map-pan-inner .layout-item {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .map-pan-shell {
        height: 520px;
    }

    .map-pan-inner .layout-item {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .booking-map-layout-card {
        padding: 12px;
        border-radius: 18px;
    }

    .map-pan-shell {
        height: 460px;
        border-radius: 16px;
        padding: 8px;
    }

    .map-pan-inner {
        width: 1220px;
        height: 820px;
    }

    .map-pan-inner .layout-item {
        font-size: 12px;
        border-width: 2px;
    }

    .map-note-box {
        font-size: 13px;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .map-pan-shell {
        height: 420px;
        padding: 6px;
    }

    .map-pan-inner {
        width: 1150px;
        height: 780px;
    }

    .map-pan-inner .layout-item {
        font-size: 11px;
        border-width: 2px;
    }

    .selected-artist-box.booking-map-artist-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .selected-artist-box.booking-map-artist-box .selected-artist-image {
        margin: 0 auto;
        width: 170px;
        height: 170px;
    }

    .selected-artist-box.booking-map-artist-box .selected-artist-info h2,
    .selected-artist-box.booking-map-artist-box .selected-artist-info p {
        text-align: center;
    }
}
/* =====================
   FIX BOOKING MAP FINAL
===================== */

.map-wrapper {
    width: 100%;
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.map-scroll {
    width: 100%;
    max-width: 100%;
    height: 400px;
    overflow: auto;
    border-radius: 20px;
    border: 2px solid rgba(244,189,79,0.3);
    background: #000;
    touch-action: pan-x pan-y;
}
/* ===== الخريطة ===== */

.map-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.map-scroll {
    width: 100%;
    max-width: 100%;
    height: 400px;
    overflow: auto;
    border: 2px solid rgba(244,189,79,0.3);
    border-radius: 15px;
    background: #000;
}

/* الخريطة نفسها */
.map-inner {
    position: relative;
    min-width: 1000px;
    min-height: 700px;
}

/* العناصر */
.client-layout-item {
    position: absolute;
    background: #00b894;
    color: #fff;
    border-radius: 10px;
    text-align: center;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* موبايل */
@media(max-width:768px){
    .map-scroll{
        height: 300px;
    }

    .map-inner{
        min-width: 900px;
        min-height: 600px;
    }
}