body {
    font-family: 'Cairo', sans-serif;
    
    position: relative;
    background: #0c0420;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    /* صورة الخلفية الديناميكية (bgImage) تُضاف عبر <style> مضمّن في halls_list.blade.php،
       لأن هذا الملف يُخدَّم كملف ثابت ولا يمر بمحرك Blade. */
    background: linear-gradient(135deg, rgba(107,46,153,0.45) 0%, rgba(30,10,46,0.35) 50%, rgba(107,46,153,0.40) 100%);
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(135,62,190,0.3) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

        /* ── SIDEBAR ITEMS ─────────────────────────────────────────── */
        .sb-section-label {
            font-size: 10.5px;
            font-weight: 800;
            letter-spacing: .06em;
            color: #9ca3af;
            text-transform: uppercase;
            padding: 10px 18px 4px;
        }

        .sb-item {
            display: flex;
            align-items: center;
            gap: 11px;
            padding: 9px 18px;
            text-decoration: none;
            color: #374151;
            font-size: 13px;
            font-weight: 600;
            transition: background .15s, border-right-color .15s;
            border-right: 3px solid transparent;
            position: relative;
        }

        .sb-item:hover {
            background: #F5EEF8;
            color: #6B2E99;
            border-right-color: #873EBE;
        }

        .sb-item-active {
            background: #F5EEF8;
            color: #6B2E99;
            font-weight: 800;
            border-right-color: #6B2E99;
        }

        .sb-icon {
            width: 32px;
            height: 32px;
            border-radius: 9px;
            background: #F5EEF8;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            color: #6B2E99;
            flex-shrink: 0;
            transition: background .15s, color .15s;
        }

        .sb-item:hover .sb-icon {
            background: #6B2E99;
            color: #fff;
        }

        .sb-item-active .sb-icon {
            background: #6B2E99;
            color: #fff;
        }

        .sb-text {
            flex: 1;
        }

        .sb-badge {
            font-size: 10.5px;
            font-weight: 800;
            background: #6B2E99;
            color: #fff;
            padding: 2px 8px;
            border-radius: 20px;
        }

        .sb-item:hover .sb-badge {
            background: #873EBE;
        }

        /* Collapsed state */
        #appSidebar.collapsed {
            width: 64px !important;
        }

        #appSidebar.collapsed .sidebar-title-text,
        #appSidebar.collapsed .sb-text,
        #appSidebar.collapsed .sb-badge,
        #appSidebar.collapsed .sb-section-label {
            display: none;
        }

        #appSidebar.collapsed .sb-item {
            justify-content: center;
            padding: 10px 0;
        }

        #appSidebar.collapsed .sb-icon {
            margin: 0;
        }

        /* ── MOBILE LAYOUT ──────────────────────────────────────────── */
        .halls-tabs-wrapper {
            width: 100%;
            padding-bottom: 4px;
        }

        .halls-tabs-inner {
            width: 100%;
            flex-wrap: nowrap;
        }

        .tabs-spacer {
            flex: 1;
            min-width: 16px;
        }

        @media (max-width: 768px) {
            .halls-tabs-wrapper {
                overflow-x: auto;
                scrollbar-width: none;
                -ms-overflow-style: none;
                padding: 10px 14px 4px;
            }

            .halls-tabs-wrapper::-webkit-scrollbar {
                display: none;
            }

            .halls-tabs-inner {
                width: max-content;
            }

            .tabs-spacer {
                display: none;
            }

            .filters-row {
                display: grid !important;
                grid-template-columns: 1fr 1fr;
                gap: 10px !important;
                align-items: end;
            }

            .filters-row>div {
                flex: unset !important;
                min-width: unset !important;
            }

            .filters-reset-wrap {
                grid-column: 1 / -1;
            }

            .filters-reset-wrap button {
                width: 100%;
                justify-content: center;
            }

            .bg-white.rounded-2xl {
                padding: 14px !important;
                border-radius: 14px !important;
            }

            #hallsList,
            #partnersList {
                padding-bottom: 80px;
            }
        }

        /* ── MOBILE SIDEBAR TOGGLE ─────────────────────────────────── */
        .mobile-filter-btn {
            display: none;
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 200;
            background: #6B2E99;
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 800;
            font-family: 'Cairo', sans-serif;
            cursor: pointer;
            box-shadow: 0 6px 24px rgba(107, 46, 153, .4);
            align-items: center;
            gap: 8px;
        }

        @media (max-width: 1023px) {
            .mobile-filter-btn {
                display: flex;
            }

            #appSidebar {
                display: none !important;
            }

            #appSidebar.mobile-open {
                display: block !important;
                position: fixed;
                inset: 0;
                top: 68px;
                z-index: 300;
                width: 100% !important;
                border-radius: 0;
                max-height: calc(100vh - 68px);
                overflow-y: auto;
            }

            .sidebar-overlay {
                display: none;
                position: fixed;
                inset: 0;
                top: 68px;
                background: rgba(0, 0, 0, .45);
                z-index: 299;
            }

            .sidebar-overlay.open {
                display: block;
            }
        }

        /* ── GOLD HOVER BORDERS ────────────────────────────────────── */
        /* Type tabs */
        .rounded-full[href]:hover,
        a.rounded-full:hover {
            border-color: #873EBE !important;
            color: #873EBE !important;
            background: #fff !important;
        }

        a.rounded-full.bg-\[#6B2E99\] {
            pointer-events: auto;
        }

        a.rounded-full.bg-\[#6B2E99\]:hover {
            background: #873EBE !important;
            border-color: #873EBE !important;
            color: #fff !important;
        }

        /* Filter selects on focus */
        select:focus,
        input[type="date"]:focus {
            border-color: #873EBE !important;
            outline: none;
            box-shadow: 0 0 0 2px rgba(135, 62, 190, .15);
        }

        /* Reset button */
        button.inline-flex:hover {
            border-color: #873EBE !important;
            color: #873EBE !important;
            background: #fff !important;
        }

        /* Hall card view button */
        .hall-card button:hover {
            background: #873EBE !important;
        }

        /* Sidebar auth buttons */
        .sidebar-card a.border-\[#6B2E99\]:hover {
            border-color: #873EBE !important;
            color: #873EBE !important;
        }

        /* Category sidebar buttons */
        button[data-category]:hover {
            border-color: #873EBE !important;
            background: rgba(135, 62, 190, .07) !important;
        }

        button[data-category]:hover .text-\[#6B2E99\] {
            color: #6B2E99 !important;
        }

        /* Custom select arrow (pseudo-element — can't be done with Tailwind utilities) */
        .select-wrap {
            position: relative;
        }

        .select-wrap::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            font-size: 10px;
            pointer-events: none;
        }

        /* ================================
           SERVICES BAR (category chips marquee)
        ================================ */
        .services-bar {
            position: relative;
            background: #6B2E99;
            padding: 20px 5% 38px;
            overflow: visible;
        }

        .services-bar-header {
            position: relative;
            z-index: 1;
            text-align: center;
            margin-bottom: 28px;
            margin-top: 14px;
        }

        .services-bar-header .sb-line {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-bottom: 6px;
        }

        .services-bar-header .sb-line::before,
        .services-bar-header .sb-line::after {
            content: '';
            flex: 1;
            max-width: 80px;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.35));
        }

        .services-bar-header .sb-line::after {
            background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.35));
        }

        .services-bar-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.22);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #C4B5FD;
            font-size: 16px;
        }

        .services-bar-label {
            font-size: 14px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.75);
            letter-spacing: .08em;
        }

        /* Track wrapper with fade edges */
        .services-track-wrapper {
            overflow: hidden;
            position: relative;
            z-index: 1;
            direction: ltr;
            /* extra vertical padding so hover scale isn't clipped */
            padding: 10px 0;
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 70px, black calc(100% - 70px), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, black 70px, black calc(100% - 70px), transparent 100%);
        }

        .services-track {
            display: flex;
            direction: ltr;
            width: max-content;
            gap: 16px;
            animation: servicesMarquee 35s linear infinite;
            will-change: transform;
        }

        .services-track:hover {
            animation-play-state: paused;
        }

        @keyframes servicesMarquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* Each category chip */
        .svc-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 22px;
            background: rgba(255, 255, 255, 0.10);
            border: 1.5px solid rgba(255, 255, 255, 0.28);
            border-radius: 40px;
            font-family: 'Cairo', sans-serif;
            font-size: 13.5px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.90);
            white-space: nowrap;
            cursor: pointer;
            backdrop-filter: blur(4px);
            transition: background .18s, border-color .18s, color .18s, transform .18s, box-shadow .18s;
            user-select: none;
        }

        .svc-chip:hover {
            background: rgba(255, 255, 255, 0.24);
            border-color: rgba(196, 181, 253, 0.80);
            color: #fff;
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
        }

        .svc-chip .chip-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #C4B5FD;
            flex-shrink: 0;
        }

        /* ================================
           PARTNERS MODAL
        ================================ */
        #partnersModal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        #partnersModal.open {
            display: flex;
        }

        .pm-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(30, 10, 46, 0.62);
            backdrop-filter: blur(3px);
            cursor: pointer;
        }

        .pm-box {
            position: relative;
            z-index: 1;
            background: #fff;
            border-radius: 22px;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
            width: min(520px, 93vw);
            max-height: 82vh;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            animation: pmIn .22s cubic-bezier(.34, 1.56, .64, 1);
        }

        @keyframes pmIn {
            from {
                transform: scale(.88) translateY(20px);
                opacity: 0;
            }

            to {
                transform: scale(1) translateY(0);
                opacity: 1;
            }
        }

        .pm-header {
            padding: 20px 22px 16px;
            background: linear-gradient(135deg, #6B2E99, #6B2E99);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .pm-header-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.18);
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #C4B5FD;
            font-size: 17px;
            flex-shrink: 0;
        }

        .pm-title {
            flex: 1;
            font-family: 'Cairo', sans-serif;
            font-size: 16px;
            font-weight: 800;
            color: #fff;
        }

        .pm-close {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background .2s;
        }

        .pm-close:hover {
            background: rgba(255, 255, 255, 0.28);
        }

        .pm-body {
            overflow-y: auto;
            padding: 20px 20px 24px;
            flex: 1;
        }

        .pm-empty {
            text-align: center;
            padding: 40px 0;
            color: #9ca3af;
            font-size: 14px;
        }

        /* Grid layout */
        .pm-partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
            gap: 14px;
        }

        .pm-partner-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            padding: 16px 10px 14px;
            background: #fff;
            border: 1.5px solid #EDE9FE;
            border-radius: 16px;
            box-shadow: 0 2px 8px rgba(107, 46, 153, 0.07);
            transition: transform .18s, box-shadow .18s, border-color .18s;
            cursor: default;
        }

        .pm-partner-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 22px rgba(107, 46, 153, 0.13);
            border-color: #C4B5FD;
        }

        /* Logo container — fixed square */
        .pm-logo-wrap {
            width: 90px;
            height: 72px;
            border-radius: 12px;
            background: #F9F5FF;
            border: 1px solid #EDE9FE;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            flex-shrink: 0;
        }

        .pm-logo-wrap img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            padding: 6px;
        }

        .pm-logo-wrap .pm-placeholder-icon {
            font-size: 26px;
            color: #6B2E99;
            opacity: .55;
        }

        .pm-partner-name {
            font-family: 'Cairo', sans-serif;
            font-size: 12.5px;
            font-weight: 700;
            color: #6B2E99;
            text-align: center;
            line-height: 1.35;
            word-break: break-word;
        }

        /* ================================
           PREMIUM CARD CUSTOM STYLES (No-Tailwind Fallback)
        ================================ */
        .vip-card-wrapper {
            background: #ffffff;
            border-radius: 18px;
            box-shadow: 0 4px 15px rgba(200, 169, 81, 0.15);
            overflow: hidden;
            border: 1px solid rgba(200, 169, 81, 0.4);
            position: relative;
            transition: box-shadow 0.3s;
        }

        .vip-card-wrapper:hover {
            box-shadow: 0 8px 25px rgba(200, 169, 81, 0.25);
        }

        .vip-header {
            padding: 16px;
            background: linear-gradient(135deg, #6B2E99, #6B2E99);
            border-bottom: 1px solid rgba(200, 169, 81, 0.2);
            position: relative;
            overflow: hidden;
        }

        .vip-header-bg-icon {
            position: absolute;
            left: -15px;
            top: 0;
            font-size: 70px;
            color: #ffffff;
            opacity: 0.04;
            transform: rotate(-12deg);
            transition: transform 0.5s;
        }

        .vip-card-wrapper:hover .vip-header-bg-icon {
            transform: scale(1.1) rotate(-12deg);
        }

        .vip-title-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 10;
        }

        .vip-title {
            font-size: 15px;
            font-weight: 800;
            color: #873EBE;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .vip-badge {
            background: #873EBE;
            color: #ffffff;
            font-size: 10px;
            font-weight: 800;
            padding: 3px 10px;
            border-radius: 20px;
            display: inline-flex;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .vip-subtitle {
            font-size: 11.5px;
            color: #C4B5FD;
            margin-top: 6px;
            position: relative;
            z-index: 10;
            opacity: 0.95;
            font-weight: 600;
            line-height: 1.5;
        }

        .vip-body {
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .vip-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px;
            border-radius: 12px;
            cursor: pointer;
            transition: background 0.3s;
            text-decoration: none;
        }

        .vip-item:hover {
            background: #F5EEF8;
        }

        .vip-item-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #ffffff;
            border: 2px solid rgba(107, 46, 153, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            transition: all 0.3s;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
        }

        .vip-item-icon i {
            font-size: 18px;
            color: #873EBE;
            transition: color 0.3s;
        }

        .vip-item:hover .vip-item-icon {
            background: #6B2E99;
            border-color: #6B2E99;
        }

        .vip-item:hover .vip-item-icon i {
            color: #ffffff;
        }

        .vip-item-text {
            flex: 1;
        }

        .vip-item-title {
            font-size: 13.5px;
            font-weight: 800;
            color: #6B2E99;
            transition: color 0.3s;
            margin-bottom: 2px;
        }

        .vip-item:hover .vip-item-title {
            color: #6B2E99;
        }

        .vip-item-desc {
            font-size: 11.5px;
            color: #6c7a72;
        }

        .vip-item-arrow {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #f8faf9;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .vip-item-arrow i {
            font-size: 10px;
            color: #9ca3af;
            transition: color 0.3s;
        }

        .vip-item:hover .vip-item-arrow {
            background: #873EBE;
        }

        .vip-item:hover .vip-item-arrow i {
            color: #ffffff;
        }

        .vip-footer-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px;
            background: #fbfaf4;
            border-top: 1px solid rgba(200, 169, 81, 0.2);
            color: #6B2E99;
            font-size: 13px;
            font-weight: 800;
            text-decoration: none;
            transition: all 0.3s;
        }

        .vip-footer-btn i {
            font-size: 11px;
            color: #873EBE;
            transition: all 0.3s;
        }

        .vip-footer-btn:hover {
            background: #873EBE;
            color: #ffffff;
        }

        .vip-footer-btn:hover i {
            color: #ffffff;
            transform: translateX(-4px);
        }

        .vip-bottom-accent {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(to right, transparent, #873EBE, transparent);
        }

        /* ================================
           PAGE-LEVEL NAV BAR
        ================================ */
        .page-main-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            background: transparent;
            margin-bottom: 22px;
        }

        .page-nav-item {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 8px 18px;
            font-family: 'Cairo', sans-serif;
            font-size: 13.5px;
            font-weight: 700;
            color: #8fa898;
            text-decoration: none;
            border: none;
            background: transparent;
            white-space: nowrap;
            transition: color .18s;
            position: relative;
        }

        .page-nav-item:hover {
            color: #6B2E99;
        }

        .page-nav-item.active {
            color: #6B2E99;
        }

        .page-nav-item.active .page-nav-dot {
            background: #6B2E99;
            box-shadow: 0 0 0 3px rgba(107, 46, 153, 0.15);
        }

        .page-nav-item.disabled {
            color: #c8d4cc;
            cursor: default;
            pointer-events: none;
        }

        .page-nav-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #c8d4cc;
            flex-shrink: 0;
            transition: background .18s, box-shadow .18s;
        }

        .page-nav-item:hover .page-nav-dot {
            background: #6B2E99;
        }

        /* Separator */
        .page-nav-sep {
            color: #c8d4cc;
            font-size: 11px;
            padding: 0 2px;
            user-select: none;
            flex-shrink: 0;
        }

        /* Partners pill — only one that gets a real pill look */
        .page-nav-partners {
            color: #fff;
            background: #873EBE;
            border-radius: 30px;
            padding: 8px 18px;
            margin-right: 6px;
            font-size: 13px;
            transition: background .18s, transform .15s;
        }

        .page-nav-partners:hover {
            background: #b5942e;
            color: #fff;
            transform: translateY(-1px);
        }

        .page-nav-partners .page-nav-dot { display: none; }

        /* ── BACKGROUND IMAGE ─────────────────────────────────────── */
        

        @keyframes hallsBgPan {
    0%   { transform: scale(1)    translate(0, 0); }
    50%  { transform: scale(1.08) translate(-1.2%, -0.8%); }
    100% { transform: scale(1.14) translate(0.8%, -1.8%); }
}

/* ════════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   هذه الصفحة كانت مبنية على افتراض وجود Tailwind CSS (عبر CDN في المتصفح
   بدون أي build فعلي للمشروع)، وهو أسلوب غير موثوق: يعتمد على تحميل سكربت
   خارجي وتوقيت تنفيذه قبل ظهور الصفحة، فينهار التنسيق كليًا لو تأخر
   الاتصال. الكلاسات هنا مكتوبة يدويًا بنفس أسماء Tailwind المستخدمة في
   القالب حتى تعمل الصفحة دائمًا بدون أي اعتماد على شبكة الإنترنت.
   ════════════════════════════════════════════════════════════════════ */

/* ── Display / Flex / Grid ── */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.block { display: block; }
.grid { display: grid; }
.relative { position: relative; }
.absolute { position: absolute; }
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.items-end { align-items: end; }
.justify-center { justify-content: center; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.shrink-0 { flex-shrink: 0; }
.col-span-2 { grid-column: span 2 / span 2; }
.gap-1 { gap: .25rem; }
.gap-1\.5 { gap: .375rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

@media (min-width: 1024px) {
    .lg\:grid-cols-\[1fr_320px\] { grid-template-columns: 320px 1fr; }
    .lg\:order-1 { order: 1; }
    .lg\:order-2 { order: 2; }
}

/* ── Sizing ── */
.max-w-\[1400px\] { max-width: 1400px; }
.min-w-\[140px\] { min-width: 140px; }
.w-full { width: 100%; }
.w-3\.5 { width: .875rem; }
.h-full { height: 100%; }
.h-\[170px\] { height: 170px; }
.min-h-screen { min-height: 100vh; }

/* ── Spacing ── */
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-3 { margin-bottom: .75rem; }
.mb-3\.5 { margin-bottom: .875rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mt-0\.5 { margin-top: .125rem; }
.mt-1 { margin-top: .25rem; }
.px-3 { padding-left: .75rem; padding-right: .75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-1\.5 { padding-top: .375rem; padding-bottom: .375rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-2\.5 { padding-top: .625rem; padding-bottom: .625rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.p-5 { padding: 1.25rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-16 { padding-bottom: 4rem; }
.pt-3 { padding-top: .75rem; }
.pt-5 { padding-top: 1.25rem; }
.top-2\.5 { top: .625rem; }
.right-2\.5 { right: .625rem; }

/* ── Typography ── */
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.text-xs { font-size: .75rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-5xl { font-size: 3rem; }
.text-center { text-align: center; }
.tracking-wider { letter-spacing: .05em; }
.whitespace-nowrap { white-space: nowrap; }
.text-white { color: #fff; }
.text-gray-400 { color: #9ca3af; }
.text-gray-700 { color: #374151; }
.text-amber-400 { color: #fbbf24; }
.text-\[\#1e293b\] { color: #1e293b; }
.text-\[\#6B2E99\] { color: #6B2E99; }
.text-\[\#6c7a72\] { color: #6c7a72; }
.text-\[\#D4A02A\] { color: #D4A02A; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[12px\] { font-size: 12px; }
.text-\[12\.5px\] { font-size: 12.5px; }
.text-\[13px\] { font-size: 13px; }
.text-\[13\.5px\] { font-size: 13.5px; }

/* ── Backgrounds / Borders ── */
.bg-white { background-color: #fff; }
.bg-\[\#6B2E99\] { background-color: #6B2E99; }
.bg-\[\#F9F5FF\] { background-color: #F9F5FF; }
.bg-\[\#f8faf9\] { background-color: #f8faf9; }
.bg-\[\#1c0e33\]\/70 { background-color: rgba(28, 14, 51, .7); }
.border { border-width: 1px; border-style: solid; border-color: #e5e7eb; }
.border-none { border: none; }
.border-\[1\.5px\] { border-width: 1.5px; border-style: solid; }
.border-\[\#6B2E99\] { border-color: #6B2E99; }
.border-\[\#D4A02A\] { border-color: #D4A02A; }
.border-\[\#E9D5FF\] { border-color: #E9D5FF; }
.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: .75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-\[18px\] { border-radius: 18px; }
.shadow { box-shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06); }
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.shadow-md { box-shadow: 0 4px 6px rgba(0,0,0,.07); }
.outline-none { outline: none; }
.appearance-none { appearance: none; -webkit-appearance: none; -moz-appearance: none; }

/* ── Effects / Transitions ── */
.cursor-pointer { cursor: pointer; }
.overflow-hidden { overflow: hidden; }
.opacity-30 { opacity: .3; }
.object-cover { object-fit: cover; }
.transition-all { transition: all .2s ease; }
.transition-colors { transition: color .2s ease, background-color .2s ease, border-color .2s ease; }
.transition-transform { transition: transform .2s ease; }
.duration-200 { transition-duration: .2s; }
.duration-300 { transition-duration: .3s; }

.hover\:bg-\[\#F5EEF8\]:hover { background-color: #F5EEF8; }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px rgba(0,0,0,.1), 0 8px 10px rgba(0,0,0,.04); }
.hover\:-translate-y-0\.5:hover { transform: translateY(-.125rem); }
.focus\:border-\[\#6B2E99\]:focus { border-color: #6B2E99; }

.group:hover .group-hover\:bg-\[\#5b21b6\] { background-color: #5b21b6; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }