/**
 * theme-global.css
 * تنسيق شامل لجميع العناصر المشتركة في الموقع حسب الثيم
 * يشمل: price-card, social links, booking form, blog cards, FAQ, about, contact
 *
 * يُحمَّل في كل صفحة بعد theme CSS
 * body class يُضاف من PHP: theme-warm-hospitality | theme-apple-hig | theme-retro-bauhaus
 *                           theme-booking-style   | theme-neo-brutalism | theme-glass-ui-ocean
 *                           theme-luxury-minimal  | theme-modern-trust
 */

/* ══════════════════════════════════════════════════════════════
   HELPER MIXIN — shared across all themes via CSS vars (base)
══════════════════════════════════════════════════════════════ */

/* ── Price Card base ── */
.price-card {
    border-radius: var(--border-radius-card, 16px);
    box-shadow: var(--shadow-card, 0 4px 16px rgba(0,0,0,.10));
    overflow: hidden;
    transition: box-shadow .3s ease, transform .3s ease;
}

/* ── Blog Card base ── */
.blog-card {
    border-radius: var(--border-radius-card, 16px);
    box-shadow: var(--shadow-card, 0 4px 16px rgba(0,0,0,.10));
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

/* ── FAQ Item base ── */
.faq-item { transition: box-shadow .2s ease; }
.faq-question { transition: background .2s ease, color .2s ease; }

/* ── Booking Form base ── */
.booking-form, .booking-container {
    border-radius: var(--border-radius-card, 16px);
    overflow: hidden;
}

/* ── Contact Form base ── */
.contact-form {
    border-radius: var(--border-radius-card, 16px);
    overflow: hidden;
}

/* ── Hero Section & Page Header base (needed for ::before overlay) ── */
.hero-section,
.page-header {
    position: relative !important;
    overflow: hidden;
}
.hero-section > *,
.page-header > * {
    position: relative;
    z-index: 1;
}


/* ══════════════════════════════════════════════════════════════════════
   1. WARM HOSPITALITY 🌅
   برتقالي دافئ، حواف 16px، ظل ناعم
══════════════════════════════════════════════════════════════════════ */

/* ── Price Card ── */
body.theme-warm-hospitality .price-card {
    background: linear-gradient(145deg, #1A5276, #2C3E50) !important;
    border-radius: 16px;
    border: none;
    box-shadow: 0 8px 24px rgba(26,82,118,.25);
}
body.theme-warm-hospitality .price-card h4,
body.theme-warm-hospitality .price-card h5,
body.theme-warm-hospitality .price-card .price-discounted {
    color: #E67E22 !important;
}
body.theme-warm-hospitality .price-card .price-total,
body.theme-warm-hospitality .price-card .price-total h4,
body.theme-warm-hospitality .price-card .price-total h5 {
    border-top: 2px solid rgba(230,126,34,.4);
    color: #E67E22 !important;
}
body.theme-warm-hospitality .price-card .btn-primary {
    background: #E67E22 !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 14px rgba(230,126,34,.35) !important;
    font-weight: 700;
}
body.theme-warm-hospitality .price-card .btn-primary:hover {
    background: #D35400 !important;
    transform: translateY(-2px);
}

/* ── Social Links ── */
body.theme-warm-hospitality .social-link {
    background: rgba(230,126,34,.12) !important;
    border: 2px solid rgba(230,126,34,.3) !important;
    border-radius: 12px !important;
    color: #E67E22 !important;
    transition: all .25s ease;
}
body.theme-warm-hospitality .social-link:hover {
    background: #E67E22 !important;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(230,126,34,.35);
}
body.theme-warm-hospitality .social-links-title { color: #E67E22 !important; }

/* ── Booking / Transfer Form ── */
body.theme-warm-hospitality .booking-form,
body.theme-warm-hospitality .booking-container {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(230,126,34,.15);
    box-shadow: 0 6px 24px rgba(230,126,34,.12);
}
body.theme-warm-hospitality .booking-form .form-header,
body.theme-warm-hospitality .booking-form .form-header h3 {
    background: linear-gradient(135deg, #E67E22, #D35400);
    color: #fff !important;
    border-radius: 16px 16px 0 0;
}
body.theme-warm-hospitality .booking-form .form-control:focus {
    border-color: #E67E22 !important;
    box-shadow: 0 0 0 3px rgba(230,126,34,.15) !important;
}
body.theme-warm-hospitality .booking-form .btn-primary {
    background: #E67E22 !important;
    border-color: #E67E22 !important;
    border-radius: 12px !important;
    font-weight: 700;
}

/* ── Blog Cards ── */
body.theme-warm-hospitality .blog-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(44,62,80,.10);
    background: #fff;
}
body.theme-warm-hospitality .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(230,126,34,.18);
}
body.theme-warm-hospitality .blog-card .blog-title a { color: #2C3E50 !important; }
body.theme-warm-hospitality .blog-card .blog-title a:hover { color: #E67E22 !important; }
body.theme-warm-hospitality .blog-card .read-more {
    color: #E67E22 !important;
    font-weight: 700;
    border-radius: 20px;
    padding: 4px 14px;
    border: 2px solid rgba(230,126,34,.3);
    transition: all .2s;
}
body.theme-warm-hospitality .blog-card .read-more:hover {
    background: #E67E22;
    color: #fff !important;
}

/* ── FAQ ── */
body.theme-warm-hospitality .faq-question {
    background: #fff !important;
    border-radius: 12px !important;
    border: 1px solid rgba(230,126,34,.15) !important;
    color: #2C3E50 !important;
}
body.theme-warm-hospitality .faq-question:hover,
body.theme-warm-hospitality .faq-item.active .faq-question {
    background: #FDF2E9 !important;
    color: #E67E22 !important;
    border-color: #E67E22 !important;
}
body.theme-warm-hospitality .faq-item.active .faq-icon { color: #E67E22 !important; }
body.theme-warm-hospitality .category-btn {
    border-radius: 20px !important;
    border: 2px solid rgba(230,126,34,.25) !important;
    color: #2C3E50 !important;
    transition: all .2s;
}
body.theme-warm-hospitality .category-btn.active,
body.theme-warm-hospitality .category-btn:hover {
    background: #E67E22 !important;
    border-color: #E67E22 !important;
    color: #fff !important;
}

/* ── About Page ── */
body.theme-warm-hospitality .hero-section::before,
body.theme-warm-hospitality .page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,82,118,.78) 0%, rgba(44,62,80,.84) 100%);
    z-index: 0;
}
body.theme-warm-hospitality .section-title { color: #E67E22 !important; }
body.theme-warm-hospitality .section-title::after {
    background: linear-gradient(90deg, #E67E22, #F39C12) !important;
}

/* ── Contact Form ── */
body.theme-warm-hospitality .contact-form {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(230,126,34,.15);
    box-shadow: 0 6px 24px rgba(230,126,34,.10);
    padding: 2rem;
}
body.theme-warm-hospitality .contact-form h3 { color: #2C3E50 !important; }
body.theme-warm-hospitality .contact-form .form-control:focus {
    border-color: #E67E22 !important;
    box-shadow: 0 0 0 3px rgba(230,126,34,.15) !important;
}


/* ══════════════════════════════════════════════════════════════════════
   2. APPLE HIG 🍎
   Frosted glass، حواف pill، iOS aesthetic
══════════════════════════════════════════════════════════════════════ */

/* ── Price Card ── */
body.theme-apple-hig .price-card {
    background: rgba(255,255,255,.85) !important;
    backdrop-filter: saturate(180%) blur(20px) !important;
    -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
    border: 1px solid rgba(60,60,67,.12) !important;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,.10);
}
body.theme-apple-hig .price-card h4 { color: #1C1C1E !important; font-weight: 700; letter-spacing: -.02em; }
body.theme-apple-hig .price-card .price-discounted { color: #007AFF !important; font-weight: 700; }
body.theme-apple-hig .price-card .price-total { border-top: 1px solid rgba(60,60,67,.12); }
body.theme-apple-hig .price-card .btn-primary {
    background: #007AFF !important;
    border: none !important;
    border-radius: 999px !important;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0,122,255,.30) !important;
}
body.theme-apple-hig .price-card .btn-primary:hover { background: #0062CC !important; }

/* ── Social Links ── */
body.theme-apple-hig .social-link {
    background: rgba(0,122,255,.08) !important;
    border: 1px solid rgba(60,60,67,.12) !important;
    border-radius: 999px !important;
    color: #007AFF !important;
    transition: all .25s;
}
body.theme-apple-hig .social-link:hover {
    background: #007AFF !important;
    color: #fff !important;
    border-color: #007AFF !important;
    transform: scale(1.1);
}

/* ── Booking Form ── */
body.theme-apple-hig .booking-form,
body.theme-apple-hig .booking-container {
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(60,60,67,.12);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
body.theme-apple-hig .booking-form .form-header h3 { color: #1C1C1E !important; font-weight: 700; letter-spacing: -.02em; }
body.theme-apple-hig .booking-form .form-control {
    border-radius: 12px !important;
    border: 1px solid rgba(60,60,67,.18) !important;
    background: rgba(242,242,247,.8) !important;
}
body.theme-apple-hig .booking-form .form-control:focus {
    border-color: #007AFF !important;
    box-shadow: 0 0 0 3px rgba(0,122,255,.15) !important;
}
body.theme-apple-hig .booking-form .btn-primary {
    border-radius: 999px !important;
    background: #007AFF !important;
    border: none !important;
    font-weight: 600;
}

/* ── Blog Cards ── */
body.theme-apple-hig .blog-card {
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: none !important;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,.07);
}
body.theme-apple-hig .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
body.theme-apple-hig .blog-card .blog-title a { color: #1C1C1E !important; font-weight: 700; letter-spacing: -.01em; }
body.theme-apple-hig .blog-card .blog-title a:hover { color: #007AFF !important; }
body.theme-apple-hig .blog-card .read-more {
    color: #007AFF !important;
    font-weight: 600;
    border-radius: 999px;
    padding: 4px 14px;
    background: rgba(0,122,255,.08);
    transition: all .2s;
}
body.theme-apple-hig .blog-card .read-more:hover {
    background: #007AFF;
    color: #fff !important;
}

/* ── FAQ ── */
body.theme-apple-hig .faq-question {
    background: rgba(255,255,255,.85) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(60,60,67,.12) !important;
    border-radius: 14px !important;
    color: #1C1C1E !important;
    font-weight: 500;
}
body.theme-apple-hig .faq-question:hover,
body.theme-apple-hig .faq-item.active .faq-question {
    background: rgba(0,122,255,.06) !important;
    color: #007AFF !important;
    border-color: rgba(0,122,255,.2) !important;
}
body.theme-apple-hig .category-btn {
    border-radius: 999px !important;
    border: 1px solid rgba(60,60,67,.18) !important;
    background: rgba(255,255,255,.8);
    color: #1C1C1E !important;
}
body.theme-apple-hig .category-btn.active,
body.theme-apple-hig .category-btn:hover {
    background: #007AFF !important;
    border-color: #007AFF !important;
    color: #fff !important;
}

/* ── About ── */
body.theme-apple-hig .hero-section::before,
body.theme-apple-hig .page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28,28,30,.78) 0%, rgba(58,58,60,.82) 100%);
    backdrop-filter: blur(2px);
    z-index: 0;
}
body.theme-apple-hig .section-title { color: #007AFF !important; font-weight: 700; letter-spacing: -.01em; }

/* ── Contact Form ── */
body.theme-apple-hig .contact-form {
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(60,60,67,.12);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
    padding: 2rem;
}
body.theme-apple-hig .contact-form .form-control {
    border-radius: 12px !important;
    background: rgba(242,242,247,.8) !important;
    border: 1px solid rgba(60,60,67,.15) !important;
}
body.theme-apple-hig .contact-form .form-control:focus {
    border-color: #007AFF !important;
    box-shadow: 0 0 0 3px rgba(0,122,255,.15) !important;
}


/* ══════════════════════════════════════════════════════════════════════
   3. RETRO BAUHAUS 🔺
   حواف حادة، border أسود ثقيل، ألوان هندسية
══════════════════════════════════════════════════════════════════════ */

/* ── Price Card ── */
body.theme-retro-bauhaus .price-card {
    background: #fff !important;
    border-radius: 4px !important;
    border: 3px solid #0F1923 !important;
    box-shadow: 6px 6px 0 #0F1923 !important;
}
body.theme-retro-bauhaus .price-card h4 {
    color: #0F1923 !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-bottom: 4px solid #E63329;
    padding-bottom: 8px;
}
body.theme-retro-bauhaus .price-card .price-discounted { color: #E63329 !important; font-weight: 900; }
body.theme-retro-bauhaus .price-card .price-total { border-top: 3px solid #1A3F7A; }
body.theme-retro-bauhaus .price-card .price-total h4 { color: #1A3F7A !important; font-weight: 900; }
body.theme-retro-bauhaus .price-card .btn-primary {
    background: #E63329 !important;
    border: 3px solid #0F1923 !important;
    border-radius: 2px !important;
    box-shadow: 3px 3px 0 #0F1923 !important;
    color: #fff !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: all .15s;
}
body.theme-retro-bauhaus .price-card .btn-primary:hover {
    transform: translate(-2px,-2px);
    box-shadow: 5px 5px 0 #0F1923 !important;
}

/* ── Social Links ── */
body.theme-retro-bauhaus .social-link {
    border-radius: 2px !important;
    border: 3px solid #0F1923 !important;
    box-shadow: 3px 3px 0 #0F1923 !important;
    background: #F5C800 !important;
    color: #0F1923 !important;
    font-weight: 900;
    transition: all .15s;
}
body.theme-retro-bauhaus .social-link:hover {
    transform: translate(-2px,-2px);
    box-shadow: 5px 5px 0 #0F1923 !important;
    background: #E63329 !important;
    color: #fff !important;
}
body.theme-retro-bauhaus .social-link.whatsapp:hover { background: #1A3F7A !important; color: #F5C800 !important; }

/* ── Booking Form ── */
body.theme-retro-bauhaus .booking-form,
body.theme-retro-bauhaus .booking-container {
    background: #fff;
    border-radius: 4px !important;
    border: 3px solid #0F1923 !important;
    box-shadow: 6px 6px 0 #0F1923 !important;
}
body.theme-retro-bauhaus .booking-form .form-header {
    background: #1A3F7A !important;
    border-bottom: 4px solid #F5C800 !important;
}
body.theme-retro-bauhaus .booking-form .form-header h3 { color: #F5C800 !important; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
body.theme-retro-bauhaus .booking-form .form-control {
    border-radius: 2px !important;
    border: 2px solid #0F1923 !important;
}
body.theme-retro-bauhaus .booking-form .form-control:focus {
    border-color: #E63329 !important;
    box-shadow: 3px 3px 0 #E63329 !important;
}
body.theme-retro-bauhaus .booking-form .btn-primary {
    background: #E63329 !important;
    border: 3px solid #0F1923 !important;
    border-radius: 2px !important;
    box-shadow: 3px 3px 0 #0F1923 !important;
    font-weight: 900;
    text-transform: uppercase;
}
body.theme-retro-bauhaus .booking-form .btn-primary:hover {
    transform: translate(-2px,-2px);
    box-shadow: 5px 5px 0 #0F1923 !important;
}

/* ── Blog Cards ── */
body.theme-retro-bauhaus .blog-card {
    border-radius: 4px !important;
    border: 3px solid #0F1923 !important;
    box-shadow: 5px 5px 0 #0F1923 !important;
    background: #fff;
}
body.theme-retro-bauhaus .blog-card:hover {
    transform: translate(-3px,-3px);
    box-shadow: 8px 8px 0 #0F1923 !important;
}
body.theme-retro-bauhaus .blog-card .blog-title a { color: #0F1923 !important; font-weight: 900; text-transform: uppercase; font-size: .9rem; letter-spacing: .02em; }
body.theme-retro-bauhaus .blog-card .blog-title a:hover { color: #E63329 !important; }
body.theme-retro-bauhaus .blog-card .read-more {
    color: #fff !important;
    background: #E63329;
    border: 2px solid #0F1923;
    border-radius: 2px;
    box-shadow: 2px 2px 0 #0F1923;
    padding: 4px 12px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .05em;
    transition: all .15s;
}
body.theme-retro-bauhaus .blog-card .read-more:hover {
    transform: translate(-1px,-1px);
    box-shadow: 3px 3px 0 #0F1923;
}

/* ── FAQ ── */
body.theme-retro-bauhaus .faq-question {
    background: #fff !important;
    border-radius: 2px !important;
    border: 3px solid #0F1923 !important;
    box-shadow: 4px 4px 0 #0F1923;
    color: #0F1923 !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    font-size: .9rem;
    margin-bottom: 4px;
}
body.theme-retro-bauhaus .faq-question:hover,
body.theme-retro-bauhaus .faq-item.active .faq-question {
    background: #F5C800 !important;
    color: #0F1923 !important;
}
body.theme-retro-bauhaus .category-btn {
    border-radius: 2px !important;
    border: 2px solid #0F1923 !important;
    box-shadow: 3px 3px 0 #0F1923;
    color: #0F1923 !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: .8rem;
}
body.theme-retro-bauhaus .category-btn.active,
body.theme-retro-bauhaus .category-btn:hover {
    background: #E63329 !important;
    color: #fff !important;
}

/* ── About ── */
body.theme-retro-bauhaus .hero-section,
body.theme-retro-bauhaus .page-header {
    border-bottom: 6px solid #F5C800 !important;
}
body.theme-retro-bauhaus .hero-section::before,
body.theme-retro-bauhaus .page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,63,122,.86) 0%, rgba(15,25,35,.90) 100%);
    z-index: 0;
}
body.theme-retro-bauhaus .section-title { color: #E63329 !important; text-transform: uppercase; font-weight: 900; letter-spacing: .03em; }
body.theme-retro-bauhaus .section-title::after { background: linear-gradient(90deg, #E63329 33%, #1A3F7A 33% 66%, #F5C800 66%) !important; height: 4px; }

/* ── Contact Form ── */
body.theme-retro-bauhaus .contact-form {
    background: #fff;
    border-radius: 4px !important;
    border: 3px solid #0F1923 !important;
    box-shadow: 6px 6px 0 #0F1923 !important;
    padding: 2rem;
}
body.theme-retro-bauhaus .contact-form h3 { color: #0F1923 !important; font-weight: 900; text-transform: uppercase; }
body.theme-retro-bauhaus .contact-form .form-control {
    border-radius: 2px !important;
    border: 2px solid #0F1923 !important;
}
body.theme-retro-bauhaus .contact-form .form-control:focus {
    border-color: #E63329 !important;
    box-shadow: 3px 3px 0 #E63329 !important;
}


/* ══════════════════════════════════════════════════════════════════════
   4. BOOKING STYLE 🏨
   Compact، border خفيف، أزرق Booking.com
══════════════════════════════════════════════════════════════════════ */

/* ── Price Card ── */
body.theme-booking-style .price-card {
    background: #fff !important;
    border-radius: 8px;
    border: 1px solid #E5E7EB !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
body.theme-booking-style .price-card h4 {
    background: #003580;
    color: #fff !important;
    margin: -1px -1px 16px;
    padding: 14px 18px;
    border-radius: 8px 8px 0 0;
}
body.theme-booking-style .price-card .price-discounted { color: #0071C2 !important; font-weight: 700; }
body.theme-booking-style .price-card .price-total { border-top: 2px solid #E5E7EB; }
body.theme-booking-style .price-card .price-total h4,
body.theme-booking-style .price-card .price-total h5 { color: #003580 !important; font-weight: 700; }
body.theme-booking-style .price-card .btn-primary {
    background: #0071C2 !important;
    border: none !important;
    border-radius: 4px !important;
    font-weight: 700;
}
body.theme-booking-style .price-card .btn-primary:hover { background: #005999 !important; }

/* ── Social Links ── */
body.theme-booking-style .social-link {
    background: #EAF4FB !important;
    border: 1px solid #B3D7F0 !important;
    border-radius: 4px !important;
    color: #0071C2 !important;
    transition: all .2s;
}
body.theme-booking-style .social-link:hover {
    background: #0071C2 !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* ── Booking Form ── */
body.theme-booking-style .booking-form,
body.theme-booking-style .booking-container {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
body.theme-booking-style .booking-form .form-header { background: #003580; border-radius: 8px 8px 0 0; }
body.theme-booking-style .booking-form .form-header h3 { color: #fff !important; font-weight: 700; }
body.theme-booking-style .booking-form .form-control {
    border-radius: 4px !important;
    border: 1px solid #D0D7DE !important;
}
body.theme-booking-style .booking-form .form-control:focus {
    border-color: #0071C2 !important;
    box-shadow: 0 0 0 2px rgba(0,113,194,.2) !important;
}
body.theme-booking-style .booking-form .btn-primary {
    background: #0071C2 !important;
    border: none !important;
    border-radius: 4px !important;
    font-weight: 700;
}

/* ── Blog Cards ── */
body.theme-booking-style .blog-card {
    border-radius: 8px;
    border: 1px solid #E5E7EB !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    background: #fff;
}
body.theme-booking-style .blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,113,194,.15);
    border-color: #0071C2 !important;
}
body.theme-booking-style .blog-card .blog-title a { color: #003580 !important; font-weight: 700; }
body.theme-booking-style .blog-card .blog-title a:hover { color: #0071C2 !important; }
body.theme-booking-style .blog-card .read-more {
    color: #0071C2 !important;
    font-weight: 700;
    background: #EAF4FB;
    border-radius: 4px;
    padding: 4px 12px;
    transition: all .2s;
}
body.theme-booking-style .blog-card .read-more:hover { background: #0071C2; color: #fff !important; }

/* ── FAQ ── */
body.theme-booking-style .faq-question {
    background: #fff !important;
    border: 1px solid #E5E7EB !important;
    border-radius: 6px !important;
    color: #1A1A1A !important;
}
body.theme-booking-style .faq-question:hover,
body.theme-booking-style .faq-item.active .faq-question {
    background: #EAF4FB !important;
    color: #003580 !important;
    border-color: #0071C2 !important;
}
body.theme-booking-style .category-btn {
    border-radius: 4px !important;
    border: 1px solid #D0D7DE !important;
    color: #1A1A1A !important;
}
body.theme-booking-style .category-btn.active,
body.theme-booking-style .category-btn:hover { background: #0071C2 !important; border-color: #0071C2 !important; color: #fff !important; }

/* ── About ── */
body.theme-booking-style .hero-section::before,
body.theme-booking-style .page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,53,128,.82) 0%, rgba(0,113,194,.85) 100%);
    z-index: 0;
}
body.theme-booking-style .section-title { color: #003580 !important; }

/* ── Contact Form ── */
body.theme-booking-style .contact-form {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    padding: 2rem;
}
body.theme-booking-style .contact-form h3 { color: #003580 !important; font-weight: 700; }
body.theme-booking-style .contact-form .form-control { border-radius: 4px !important; border: 1px solid #D0D7DE !important; }
body.theme-booking-style .contact-form .form-control:focus { border-color: #0071C2 !important; box-shadow: 0 0 0 2px rgba(0,113,194,.2) !important; }


/* ══════════════════════════════════════════════════════════════════════
   5. NEO BRUTALISM ⚡
   لا حواف، border أسود ثقيل، shadow حادة
══════════════════════════════════════════════════════════════════════ */

/* ── Price Card ── */
body.theme-neo-brutalism .price-card {
    background: #FAFAF0 !important;
    border-radius: 0 !important;
    border: 3px solid #0A0A0A !important;
    box-shadow: 7px 7px 0 #0A0A0A !important;
}
body.theme-neo-brutalism .price-card h4 {
    background: #0A0A0A;
    color: #FF4D4D !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 14px 18px;
    margin: -1px -1px 16px;
}
body.theme-neo-brutalism .price-card .price-discounted { color: #FF4D4D !important; font-weight: 900; font-size: 1.3rem; }
body.theme-neo-brutalism .price-card .price-total { border-top: 3px solid #0A0A0A; }
body.theme-neo-brutalism .price-card .price-total h4 { color: #FF4D4D !important; font-weight: 900; }
body.theme-neo-brutalism .price-card .btn-primary {
    background: #FF4D4D !important;
    border: 3px solid #0A0A0A !important;
    border-radius: 0 !important;
    box-shadow: 4px 4px 0 #0A0A0A !important;
    color: #fff !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    transition: all .15s;
}
body.theme-neo-brutalism .price-card .btn-primary:hover { transform: translate(-3px,-3px); box-shadow: 7px 7px 0 #0A0A0A !important; }

/* ── Social Links ── */
body.theme-neo-brutalism .social-link {
    border-radius: 0 !important;
    border: 3px solid #0A0A0A !important;
    box-shadow: 4px 4px 0 #0A0A0A !important;
    background: #FAFAF0 !important;
    color: #0A0A0A !important;
    font-weight: 900;
    transition: all .15s;
}
body.theme-neo-brutalism .social-link:hover {
    transform: translate(-2px,-2px);
    box-shadow: 6px 6px 0 #0A0A0A !important;
    background: #FF4D4D !important;
    color: #fff !important;
}

/* ── Booking Form ── */
body.theme-neo-brutalism .booking-form,
body.theme-neo-brutalism .booking-container {
    background: #FAFAF0;
    border-radius: 0 !important;
    border: 3px solid #0A0A0A !important;
    box-shadow: 7px 7px 0 #0A0A0A !important;
}
body.theme-neo-brutalism .booking-form .form-header { background: #0A0A0A; border-bottom: 4px solid #FF4D4D; }
body.theme-neo-brutalism .booking-form .form-header h3 { color: #FF4D4D !important; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
body.theme-neo-brutalism .booking-form .form-control {
    border-radius: 0 !important;
    border: 3px solid #0A0A0A !important;
    background: #fff !important;
}
body.theme-neo-brutalism .booking-form .form-control:focus {
    border-color: #FF4D4D !important;
    box-shadow: 4px 4px 0 #FF4D4D !important;
}
body.theme-neo-brutalism .booking-form .btn-primary {
    background: #FF4D4D !important;
    border: 3px solid #0A0A0A !important;
    border-radius: 0 !important;
    box-shadow: 4px 4px 0 #0A0A0A !important;
    font-weight: 900;
    text-transform: uppercase;
}
body.theme-neo-brutalism .booking-form .btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 #0A0A0A !important; }

/* ── Blog Cards ── */
body.theme-neo-brutalism .blog-card {
    border-radius: 0 !important;
    border: 3px solid #0A0A0A !important;
    box-shadow: 6px 6px 0 #0A0A0A !important;
    background: #FAFAF0;
}
body.theme-neo-brutalism .blog-card:hover { transform: translate(-3px,-3px) !important; box-shadow: 9px 9px 0 #0A0A0A !important; }
body.theme-neo-brutalism .blog-card .blog-title a { color: #0A0A0A !important; font-weight: 900; text-transform: uppercase; font-size: .9rem; }
body.theme-neo-brutalism .blog-card .blog-title a:hover { color: #FF4D4D !important; }
body.theme-neo-brutalism .blog-card .read-more {
    color: #fff !important;
    background: #FF4D4D;
    border: 3px solid #0A0A0A;
    border-radius: 0;
    box-shadow: 3px 3px 0 #0A0A0A;
    padding: 4px 12px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: .75rem;
    transition: all .15s;
}
body.theme-neo-brutalism .blog-card .read-more:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 #0A0A0A; }

/* ── FAQ ── */
body.theme-neo-brutalism .faq-question {
    background: #fff !important;
    border-radius: 0 !important;
    border: 3px solid #0A0A0A !important;
    box-shadow: 4px 4px 0 #0A0A0A;
    color: #0A0A0A !important;
    font-weight: 900;
    text-transform: uppercase;
    font-size: .85rem;
    letter-spacing: .03em;
    margin-bottom: 6px;
}
body.theme-neo-brutalism .faq-question:hover,
body.theme-neo-brutalism .faq-item.active .faq-question { background: #FF4D4D !important; color: #fff !important; }
body.theme-neo-brutalism .category-btn {
    border-radius: 0 !important;
    border: 3px solid #0A0A0A !important;
    box-shadow: 3px 3px 0 #0A0A0A;
    font-weight: 900;
    text-transform: uppercase;
    font-size: .8rem;
}
body.theme-neo-brutalism .category-btn.active,
body.theme-neo-brutalism .category-btn:hover { background: #FF4D4D !important; color: #fff !important; }

/* ── About ── */
body.theme-neo-brutalism .hero-section,
body.theme-neo-brutalism .page-header {
    border-bottom: 6px solid #FF4D4D !important;
}
body.theme-neo-brutalism .hero-section::before,
body.theme-neo-brutalism .page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,.85);
    z-index: 0;
}
body.theme-neo-brutalism .section-title { color: #0A0A0A !important; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
body.theme-neo-brutalism .section-title::after { background: #FF4D4D !important; height: 4px; }

/* ── Contact Form ── */
body.theme-neo-brutalism .contact-form {
    background: #FAFAF0;
    border-radius: 0 !important;
    border: 3px solid #0A0A0A !important;
    box-shadow: 7px 7px 0 #0A0A0A !important;
    padding: 2rem;
}
body.theme-neo-brutalism .contact-form h3 { color: #0A0A0A !important; font-weight: 900; text-transform: uppercase; }
body.theme-neo-brutalism .contact-form .form-control { border-radius: 0 !important; border: 3px solid #0A0A0A !important; }
body.theme-neo-brutalism .contact-form .form-control:focus { border-color: #FF4D4D !important; box-shadow: 4px 4px 0 #FF4D4D !important; }


/* ══════════════════════════════════════════════════════════════════════
   6. GLASS UI OCEAN 🌊
   Frosted glass، حواف 20px، أزرق مائي
══════════════════════════════════════════════════════════════════════ */

/* ── Price Card ── */
body.theme-glass-ui-ocean .price-card {
    background: rgba(255,255,255,.65) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255,255,255,.55) !important;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(12,74,110,.15);
}
body.theme-glass-ui-ocean .price-card h4 { color: #0C2D4A !important; font-weight: 700; }
body.theme-glass-ui-ocean .price-card .price-discounted { color: #0369A1 !important; font-weight: 700; }
body.theme-glass-ui-ocean .price-card .price-total { border-top: 1px solid rgba(255,255,255,.4); }
body.theme-glass-ui-ocean .price-card .btn-primary {
    background: #0369A1 !important;
    border: none !important;
    border-radius: 999px !important;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(3,105,161,.35) !important;
}
body.theme-glass-ui-ocean .price-card .btn-primary:hover { background: #0284C7 !important; transform: translateY(-2px); }

/* ── Social Links ── */
body.theme-glass-ui-ocean .social-link {
    background: rgba(255,255,255,.65) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.55) !important;
    border-radius: 999px !important;
    color: #0369A1 !important;
    transition: all .25s;
}
body.theme-glass-ui-ocean .social-link:hover {
    background: #0369A1 !important;
    color: #fff !important;
    transform: scale(1.12);
    box-shadow: 0 6px 20px rgba(3,105,161,.35);
}

/* ── Booking Form ── */
body.theme-glass-ui-ocean .booking-form,
body.theme-glass-ui-ocean .booking-container {
    background: rgba(255,255,255,.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(12,74,110,.12);
}
body.theme-glass-ui-ocean .booking-form .form-header { background: rgba(3,105,161,.85); backdrop-filter: blur(8px); border-radius: 20px 20px 0 0; }
body.theme-glass-ui-ocean .booking-form .form-header h3 { color: #fff !important; font-weight: 700; }
body.theme-glass-ui-ocean .booking-form .form-control {
    border-radius: 12px !important;
    background: rgba(255,255,255,.7) !important;
    border: 1px solid rgba(255,255,255,.55) !important;
    backdrop-filter: blur(8px);
}
body.theme-glass-ui-ocean .booking-form .form-control:focus { border-color: #0369A1 !important; box-shadow: 0 0 0 3px rgba(3,105,161,.2) !important; }
body.theme-glass-ui-ocean .booking-form .btn-primary { background: #0369A1 !important; border: none !important; border-radius: 999px !important; font-weight: 600; }

/* ── Blog Cards ── */
body.theme-glass-ui-ocean .blog-card {
    background: rgba(255,255,255,.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.55) !important;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(12,74,110,.10);
}
body.theme-glass-ui-ocean .blog-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.82) !important; box-shadow: 0 20px 48px rgba(3,105,161,.18); }
body.theme-glass-ui-ocean .blog-card .blog-title a { color: #0C2D4A !important; font-weight: 700; }
body.theme-glass-ui-ocean .blog-card .blog-title a:hover { color: #0369A1 !important; }
body.theme-glass-ui-ocean .blog-card .read-more {
    color: #0369A1 !important;
    background: rgba(3,105,161,.1);
    border-radius: 999px;
    padding: 4px 14px;
    backdrop-filter: blur(4px);
    transition: all .2s;
}
body.theme-glass-ui-ocean .blog-card .read-more:hover { background: #0369A1; color: #fff !important; }

/* ── FAQ ── */
body.theme-glass-ui-ocean .faq-question {
    background: rgba(255,255,255,.65) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.55) !important;
    border-radius: 16px !important;
    color: #0C2D4A !important;
}
body.theme-glass-ui-ocean .faq-question:hover,
body.theme-glass-ui-ocean .faq-item.active .faq-question { background: rgba(3,105,161,.12) !important; color: #0369A1 !important; border-color: rgba(3,105,161,.3) !important; }
body.theme-glass-ui-ocean .category-btn {
    border-radius: 999px !important;
    background: rgba(255,255,255,.65);
    border: 1px solid rgba(255,255,255,.55) !important;
    backdrop-filter: blur(8px);
    color: #0C2D4A !important;
}
body.theme-glass-ui-ocean .category-btn.active,
body.theme-glass-ui-ocean .category-btn:hover { background: #0369A1 !important; border-color: #0369A1 !important; color: #fff !important; }

/* ── About ── */
body.theme-glass-ui-ocean .hero-section::before,
body.theme-glass-ui-ocean .page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,45,74,.72) 0%, rgba(3,105,161,.78) 100%);
    backdrop-filter: blur(4px);
    z-index: 0;
}
body.theme-glass-ui-ocean .section-title { color: #0369A1 !important; }

/* ── Contact Form ── */
body.theme-glass-ui-ocean .contact-form {
    background: rgba(255,255,255,.65);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(12,74,110,.10);
    padding: 2rem;
}
body.theme-glass-ui-ocean .contact-form .form-control { border-radius: 12px !important; background: rgba(255,255,255,.7) !important; border: 1px solid rgba(255,255,255,.55) !important; }
body.theme-glass-ui-ocean .contact-form .form-control:focus { border-color: #0369A1 !important; box-shadow: 0 0 0 3px rgba(3,105,161,.2) !important; }


/* ══════════════════════════════════════════════════════════════════════
   7. LUXURY MINIMAL ✨
   ذهبي هادئ، حواف 12px، elegant
══════════════════════════════════════════════════════════════════════ */

/* ── Price Card ── */
body.theme-luxury-minimal .price-card {
    background: #ffffff !important;
    border-radius: 12px;
    border: 1px solid rgba(184,151,78,.25) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
body.theme-luxury-minimal .price-card h4 {
    background: #0C0C0C;
    color: #B8974E !important;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .95rem;
    padding: 16px 20px;
    margin: -1px -1px 16px;
    border-radius: 12px 12px 0 0;
}
body.theme-luxury-minimal .price-card .price-discounted { color: #B8974E !important; font-weight: 700; }
body.theme-luxury-minimal .price-card .price-total { border-top: 1px solid rgba(184,151,78,.3); }
body.theme-luxury-minimal .price-card .price-total h4,
body.theme-luxury-minimal .price-card .price-total h5 { color: #B8974E !important; font-weight: 700; }
body.theme-luxury-minimal .price-card .btn-primary {
    background: #B8974E !important;
    border: none !important;
    border-radius: 6px !important;
    font-weight: 600;
    letter-spacing: .05em;
    box-shadow: 0 4px 16px rgba(184,151,78,.35) !important;
}
body.theme-luxury-minimal .price-card .btn-primary:hover { background: #9A7D3A !important; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,151,78,.4) !important; }

/* ── Social Links ── */
body.theme-luxury-minimal .social-link {
    background: rgba(184,151,78,.08) !important;
    border: 1px solid rgba(184,151,78,.30) !important;
    border-radius: 6px !important;
    color: #B8974E !important;
    transition: all .25s;
}
body.theme-luxury-minimal .social-link:hover {
    background: #B8974E !important;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(184,151,78,.35);
}

/* ── Booking Form ── */
body.theme-luxury-minimal .booking-form,
body.theme-luxury-minimal .booking-container {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(184,151,78,.20);
    box-shadow: 0 8px 32px rgba(0,0,0,.07);
}
body.theme-luxury-minimal .booking-form .form-header { background: #0C0C0C; border-radius: 12px 12px 0 0; border-bottom: 2px solid #B8974E; }
body.theme-luxury-minimal .booking-form .form-header h3 { color: #B8974E !important; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; font-size: .95rem; }
body.theme-luxury-minimal .booking-form .form-control { border-radius: 6px !important; border: 1px solid rgba(184,151,78,.25) !important; }
body.theme-luxury-minimal .booking-form .form-control:focus { border-color: #B8974E !important; box-shadow: 0 0 0 3px rgba(184,151,78,.15) !important; }
body.theme-luxury-minimal .booking-form .btn-primary { background: #B8974E !important; border: none !important; border-radius: 6px !important; font-weight: 600; letter-spacing: .04em; }

/* ── Blog Cards ── */
body.theme-luxury-minimal .blog-card {
    border: 1px solid rgba(184,151,78,.15) !important;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.06);
    background: #fff;
}
body.theme-luxury-minimal .blog-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(184,151,78,.18); border-color: rgba(184,151,78,.40) !important; }
body.theme-luxury-minimal .blog-card .blog-title a { color: #0C0C0C !important; font-weight: 600; letter-spacing: .01em; }
body.theme-luxury-minimal .blog-card .blog-title a:hover { color: #B8974E !important; }
body.theme-luxury-minimal .blog-card .read-more {
    color: #B8974E !important;
    border: 1px solid rgba(184,151,78,.4);
    border-radius: 4px;
    padding: 4px 14px;
    font-weight: 600;
    letter-spacing: .04em;
    font-size: .8rem;
    text-transform: uppercase;
    transition: all .25s;
}
body.theme-luxury-minimal .blog-card .read-more:hover { background: #B8974E; color: #fff !important; }

/* ── FAQ ── */
body.theme-luxury-minimal .faq-question {
    background: #fff !important;
    border: 1px solid rgba(184,151,78,.20) !important;
    border-radius: 8px !important;
    color: #0C0C0C !important;
    font-weight: 600;
}
body.theme-luxury-minimal .faq-question:hover,
body.theme-luxury-minimal .faq-item.active .faq-question { background: rgba(184,151,78,.06) !important; color: #B8974E !important; border-color: rgba(184,151,78,.40) !important; }
body.theme-luxury-minimal .category-btn {
    border-radius: 4px !important;
    border: 1px solid rgba(184,151,78,.3) !important;
    color: #0C0C0C !important;
    font-weight: 600;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
body.theme-luxury-minimal .category-btn.active,
body.theme-luxury-minimal .category-btn:hover { background: #B8974E !important; border-color: #B8974E !important; color: #fff !important; }

/* ── About ── */
body.theme-luxury-minimal .hero-section::before,
body.theme-luxury-minimal .page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,12,12,.85) 0%, rgba(26,26,26,.90) 100%);
    z-index: 0;
}
body.theme-luxury-minimal .section-title { color: #B8974E !important; font-weight: 600; letter-spacing: .05em; }
body.theme-luxury-minimal .section-title::after { background: linear-gradient(90deg, transparent, #B8974E, transparent) !important; height: 1px; }

/* ── Contact Form ── */
body.theme-luxury-minimal .contact-form {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(184,151,78,.20);
    box-shadow: 0 8px 32px rgba(0,0,0,.07);
    padding: 2.5rem;
}
body.theme-luxury-minimal .contact-form h3 { color: #0C0C0C !important; font-weight: 600; letter-spacing: .04em; }
body.theme-luxury-minimal .contact-form .form-control { border-radius: 6px !important; border: 1px solid rgba(184,151,78,.25) !important; }
body.theme-luxury-minimal .contact-form .form-control:focus { border-color: #B8974E !important; box-shadow: 0 0 0 3px rgba(184,151,78,.15) !important; }


/* ══════════════════════════════════════════════════════════════════════
   8. MODERN TRUST 💎
   أزرق داكن موثوق، حواف 16px، gradient خفيف
══════════════════════════════════════════════════════════════════════ */

/* ── Price Card ── */
body.theme-modern-trust .price-card {
    background: #fff !important;
    border-radius: 16px;
    border: 1px solid #E2E8F0 !important;
    box-shadow: 0 4px 12px rgba(15,23,42,.08);
}
body.theme-modern-trust .price-card h4 {
    background: linear-gradient(135deg, #1B4FD8, #1E3A8A);
    color: #fff !important;
    font-weight: 700;
    padding: 16px 20px;
    margin: -1px -1px 16px;
    border-radius: 16px 16px 0 0;
}
body.theme-modern-trust .price-card .price-discounted { color: #1B4FD8 !important; font-weight: 700; }
body.theme-modern-trust .price-card .price-total { border-top: 2px solid #E2E8F0; }
body.theme-modern-trust .price-card .price-total h4,
body.theme-modern-trust .price-card .price-total h5 { color: #1B4FD8 !important; font-weight: 700; }
body.theme-modern-trust .price-card .btn-primary {
    background: #1B4FD8 !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(27,79,216,.30) !important;
}
body.theme-modern-trust .price-card .btn-primary:hover { background: #1E3A8A !important; transform: translateY(-2px); }

/* ── Social Links ── */
body.theme-modern-trust .social-link {
    background: #EEF3FD !important;
    border: 1px solid rgba(27,79,216,.15) !important;
    border-radius: 8px !important;
    color: #1B4FD8 !important;
    transition: all .25s;
}
body.theme-modern-trust .social-link:hover {
    background: #1B4FD8 !important;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(27,79,216,.30);
}

/* ── Booking Form ── */
body.theme-modern-trust .booking-form,
body.theme-modern-trust .booking-container {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 16px rgba(15,23,42,.08);
}
body.theme-modern-trust .booking-form .form-header { background: linear-gradient(135deg, #1B4FD8, #1E3A8A); border-radius: 16px 16px 0 0; }
body.theme-modern-trust .booking-form .form-header h3 { color: #fff !important; font-weight: 700; }
body.theme-modern-trust .booking-form .form-control { border-radius: 8px !important; border: 1px solid #E2E8F0 !important; }
body.theme-modern-trust .booking-form .form-control:focus { border-color: #1B4FD8 !important; box-shadow: 0 0 0 3px rgba(27,79,216,.15) !important; }
body.theme-modern-trust .booking-form .btn-primary { background: #1B4FD8 !important; border: none !important; border-radius: 8px !important; font-weight: 700; }

/* ── Blog Cards ── */
body.theme-modern-trust .blog-card {
    border: 1px solid #E2E8F0 !important;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(15,23,42,.07);
    background: #fff;
}
body.theme-modern-trust .blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(27,79,216,.14); border-color: #1B4FD8 !important; }
body.theme-modern-trust .blog-card .blog-title a { color: #0F172A !important; font-weight: 700; }
body.theme-modern-trust .blog-card .blog-title a:hover { color: #1B4FD8 !important; }
body.theme-modern-trust .blog-card .read-more {
    color: #1B4FD8 !important;
    background: #EEF3FD;
    border-radius: 6px;
    padding: 4px 14px;
    font-weight: 700;
    transition: all .2s;
}
body.theme-modern-trust .blog-card .read-more:hover { background: #1B4FD8; color: #fff !important; }

/* ── FAQ ── */
body.theme-modern-trust .faq-question {
    background: #fff !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 12px !important;
    color: #0F172A !important;
    font-weight: 600;
}
body.theme-modern-trust .faq-question:hover,
body.theme-modern-trust .faq-item.active .faq-question { background: #EEF3FD !important; color: #1B4FD8 !important; border-color: #1B4FD8 !important; }
body.theme-modern-trust .category-btn {
    border-radius: 6px !important;
    border: 1px solid #E2E8F0 !important;
    color: #0F172A !important;
    font-weight: 600;
}
body.theme-modern-trust .category-btn.active,
body.theme-modern-trust .category-btn:hover { background: #1B4FD8 !important; border-color: #1B4FD8 !important; color: #fff !important; }

/* ── About ── */
body.theme-modern-trust .hero-section::before,
body.theme-modern-trust .page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,.82) 0%, rgba(27,79,216,.78) 100%);
    z-index: 0;
}
body.theme-modern-trust .section-title { color: #1B4FD8 !important; font-weight: 700; }
body.theme-modern-trust .section-title::after { background: linear-gradient(90deg, #1B4FD8, #3B82F6) !important; }

/* ── Contact Form ── */
body.theme-modern-trust .contact-form {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 16px rgba(15,23,42,.08);
    padding: 2rem;
}
body.theme-modern-trust .contact-form h3 { color: #0F172A !important; font-weight: 700; }
body.theme-modern-trust .contact-form .form-control { border-radius: 8px !important; border: 1px solid #E2E8F0 !important; }
body.theme-modern-trust .contact-form .form-control:focus { border-color: #1B4FD8 !important; box-shadow: 0 0 0 3px rgba(27,79,216,.15) !important; }


/* ══════════════════════════════════════════════════════════════════════
   DETAIL PAGE ELEMENTS — price-card-header, feature-icon,
   quick-info-grid, attraction-select-btn, btn-gallery-custom,
   booking-actions btn, info-card header
   (excursions/details.php + private_excursions/details.php)
══════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   1. WARM HOSPITALITY 🌅
───────────────────────────────────────────── */
body.theme-warm-hospitality .price-card-header {
    background: linear-gradient(135deg, #E67E22, #D35400) !important;
}
body.theme-warm-hospitality .price-card-header::after {
    background: rgba(255,255,255,0.3) !important;
}
body.theme-warm-hospitality .price-card {
    border-color: #E67E22 !important;
}
body.theme-warm-hospitality .price-card .btn-light,
body.theme-warm-hospitality .price-card .btn-success,
body.theme-warm-hospitality .booking-actions .btn-success {
    background: #E67E22 !important;
    border-color: #E67E22 !important;
    color: #fff !important;
}
body.theme-warm-hospitality .price-card .btn-light:hover,
body.theme-warm-hospitality .price-card .btn-success:hover,
body.theme-warm-hospitality .booking-actions .btn-success:hover {
    background: #D35400 !important;
    border-color: #D35400 !important;
}
body.theme-warm-hospitality .feature-icon {
    background: #E67E22 !important;
    box-shadow: 0 4px 14px rgba(230,126,34,.35) !important;
}
body.theme-warm-hospitality .quick-info-grid .text-center {
    border-color: rgba(230,126,34,.25) !important;
    background: #fff !important;
}
body.theme-warm-hospitality .quick-info-grid .text-center:hover {
    border-color: #E67E22 !important;
    box-shadow: 0 6px 20px rgba(230,126,34,.18) !important;
}
body.theme-warm-hospitality .quick-info-grid h6 { color: #D35400 !important; opacity: .75; }
body.theme-warm-hospitality .quick-info-grid p   { color: #2C3E50 !important; }
body.theme-warm-hospitality .attraction-select-btn {
    border-color: #E67E22 !important;
    color: #E67E22 !important;
    background: transparent !important;
}
body.theme-warm-hospitality .attraction-select-btn:hover {
    background: #FDF2E9 !important;
}
body.theme-warm-hospitality .attraction-select-btn.selected {
    background: #E67E22 !important;
    border-color: #E67E22 !important;
    color: #fff !important;
}
body.theme-warm-hospitality .attraction-select-btn.selected:hover {
    background: #D35400 !important;
    border-color: #D35400 !important;
}
body.theme-warm-hospitality .btn-gallery-custom {
    background-color: #E67E22 !important;
    border-color: #E67E22 !important;
    color: #fff !important;
}
body.theme-warm-hospitality .btn-gallery-custom:hover {
    background-color: #D35400 !important;
    border-color: #D35400 !important;
}
body.theme-warm-hospitality .info-card {
    border-color: rgba(230,126,34,.25) !important;
}
body.theme-warm-hospitality .info-card .card-header {
    border-bottom-color: #E67E22 !important;
}
body.theme-warm-hospitality .info-card .card-header i { color: #E67E22 !important; }
body.theme-warm-hospitality #bookingFormSection .btn-success {
    background: #E67E22 !important;
    border-color: #E67E22 !important;
}
body.theme-warm-hospitality #bookingFormSection .btn-success:hover {
    background: #D35400 !important;
}
body.theme-warm-hospitality #bookingFormSection .form-control:focus {
    border-color: #E67E22 !important;
    box-shadow: 0 0 0 3px rgba(230,126,34,.15) !important;
}


/* ─────────────────────────────────────────────
   2. APPLE HIG 🍎
───────────────────────────────────────────── */
body.theme-apple-hig .price-card-header {
    background: #007AFF !important;
}
body.theme-apple-hig .price-card {
    border-color: rgba(0,122,255,.35) !important;
    background: rgba(255,255,255,.85) !important;
    backdrop-filter: saturate(180%) blur(20px) !important;
    -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
}
body.theme-apple-hig .price-card .btn-light,
body.theme-apple-hig .price-card .btn-success,
body.theme-apple-hig .booking-actions .btn-success {
    background: #007AFF !important;
    border-color: #007AFF !important;
    color: #fff !important;
    border-radius: 999px !important;
}
body.theme-apple-hig .price-card .btn-light:hover,
body.theme-apple-hig .price-card .btn-success:hover,
body.theme-apple-hig .booking-actions .btn-success:hover {
    background: #0062CC !important;
    border-color: #0062CC !important;
}
body.theme-apple-hig .feature-icon {
    background: #007AFF !important;
    box-shadow: 0 4px 14px rgba(0,122,255,.3) !important;
    border-radius: 999px !important;
}
body.theme-apple-hig .quick-info-grid .text-center {
    background: rgba(255,255,255,.85) !important;
    backdrop-filter: blur(12px) !important;
    border-color: rgba(60,60,67,.12) !important;
    border-radius: 14px !important;
}
body.theme-apple-hig .quick-info-grid h6 { color: #8E8E93 !important; }
body.theme-apple-hig .quick-info-grid p   { color: #1C1C1E !important; }
body.theme-apple-hig .attraction-select-btn {
    border-color: #007AFF !important;
    color: #007AFF !important;
    background: transparent !important;
    border-radius: 999px !important;
}
body.theme-apple-hig .attraction-select-btn:hover {
    background: rgba(0,122,255,.08) !important;
}
body.theme-apple-hig .attraction-select-btn.selected {
    background: #007AFF !important;
    border-color: #007AFF !important;
    color: #fff !important;
    border-radius: 999px !important;
}
body.theme-apple-hig .attraction-select-btn.selected:hover {
    background: #0062CC !important;
    border-color: #0062CC !important;
}
body.theme-apple-hig .btn-gallery-custom {
    background-color: #007AFF !important;
    border-color: #007AFF !important;
    color: #fff !important;
    border-radius: 999px !important;
}
body.theme-apple-hig .btn-gallery-custom:hover {
    background-color: #0062CC !important;
    border-color: #0062CC !important;
}
body.theme-apple-hig .info-card {
    border-color: rgba(60,60,67,.12) !important;
    background: rgba(255,255,255,.85) !important;
}
body.theme-apple-hig .info-card .card-header {
    border-bottom-color: #007AFF !important;
    background: rgba(242,242,247,.8) !important;
}
body.theme-apple-hig .info-card .card-header i { color: #007AFF !important; }
body.theme-apple-hig #bookingFormSection .btn-success {
    background: #007AFF !important;
    border-color: #007AFF !important;
    border-radius: 999px !important;
}
body.theme-apple-hig #bookingFormSection .btn-success:hover {
    background: #0062CC !important;
}
body.theme-apple-hig #bookingFormSection .form-control:focus {
    border-color: #007AFF !important;
    box-shadow: 0 0 0 3px rgba(0,122,255,.15) !important;
}


/* ─────────────────────────────────────────────
   3. RETRO BAUHAUS 🔺
───────────────────────────────────────────── */
body.theme-retro-bauhaus .price-card-header {
    background: #1A3F7A !important;
    border-bottom: 4px solid #F5C800 !important;
}
body.theme-retro-bauhaus .price-card {
    border: 3px solid #0F1923 !important;
    box-shadow: 6px 6px 0 #0F1923 !important;
    border-radius: 4px !important;
}
body.theme-retro-bauhaus .price-card .btn-light,
body.theme-retro-bauhaus .price-card .btn-success,
body.theme-retro-bauhaus .booking-actions .btn-success {
    background: #E63329 !important;
    border: 3px solid #0F1923 !important;
    border-radius: 2px !important;
    box-shadow: 3px 3px 0 #0F1923 !important;
    color: #fff !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
}
body.theme-retro-bauhaus .price-card .btn-light:hover,
body.theme-retro-bauhaus .price-card .btn-success:hover,
body.theme-retro-bauhaus .booking-actions .btn-success:hover {
    background: #C62A21 !important;
    transform: translate(-2px,-2px) !important;
    box-shadow: 5px 5px 0 #0F1923 !important;
}
body.theme-retro-bauhaus .feature-icon {
    background: #E63329 !important;
    border-radius: 2px !important;
    border: 2px solid #0F1923 !important;
    box-shadow: 3px 3px 0 #0F1923 !important;
}
body.theme-retro-bauhaus .quick-info-grid .text-center {
    background: #fff !important;
    border: 3px solid #0F1923 !important;
    border-radius: 2px !important;
    box-shadow: 4px 4px 0 #0F1923 !important;
}
body.theme-retro-bauhaus .quick-info-grid h6 { color: #1A3F7A !important; font-weight: 700; text-transform: uppercase; }
body.theme-retro-bauhaus .quick-info-grid p   { color: #0F1923 !important; font-weight: 900; }
body.theme-retro-bauhaus .attraction-select-btn {
    border: 3px solid #0F1923 !important;
    color: #0F1923 !important;
    background: #F5C800 !important;
    border-radius: 2px !important;
    font-weight: 900;
    text-transform: uppercase;
    font-size: .8rem;
}
body.theme-retro-bauhaus .attraction-select-btn:hover {
    background: #E63329 !important;
    color: #fff !important;
    transform: translate(-2px,-2px);
    box-shadow: 3px 3px 0 #0F1923 !important;
}
body.theme-retro-bauhaus .attraction-select-btn.selected {
    background: #1A3F7A !important;
    border-color: #0F1923 !important;
    color: #F5C800 !important;
}
body.theme-retro-bauhaus .attraction-select-btn.selected:hover {
    background: #0F2D5C !important;
}
body.theme-retro-bauhaus .btn-gallery-custom {
    background-color: #1A3F7A !important;
    border: 3px solid #0F1923 !important;
    border-radius: 2px !important;
    box-shadow: 3px 3px 0 #0F1923 !important;
    color: #F5C800 !important;
    font-weight: 900;
    text-transform: uppercase;
}
body.theme-retro-bauhaus .btn-gallery-custom:hover {
    background-color: #E63329 !important;
    color: #fff !important;
    transform: translate(-2px,-2px);
    box-shadow: 5px 5px 0 #0F1923 !important;
}
body.theme-retro-bauhaus .info-card {
    border: 3px solid #0F1923 !important;
    box-shadow: 4px 4px 0 #0F1923 !important;
    border-radius: 2px !important;
}
body.theme-retro-bauhaus .info-card .card-header {
    background: #1A3F7A !important;
    border-bottom: 4px solid #F5C800 !important;
    border-radius: 0 !important;
}
body.theme-retro-bauhaus .info-card .card-header h5,
body.theme-retro-bauhaus .info-card .card-header h6 { color: #F5C800 !important; font-weight: 900; text-transform: uppercase; }
body.theme-retro-bauhaus .info-card .card-header i  { color: #F5C800 !important; }
body.theme-retro-bauhaus #bookingFormSection .btn-success {
    background: #E63329 !important;
    border: 3px solid #0F1923 !important;
    border-radius: 2px !important;
    box-shadow: 3px 3px 0 #0F1923 !important;
    font-weight: 900;
    text-transform: uppercase;
}
body.theme-retro-bauhaus #bookingFormSection .form-control:focus {
    border-color: #E63329 !important;
    box-shadow: 3px 3px 0 #E63329 !important;
}


/* ─────────────────────────────────────────────
   4. BOOKING STYLE 🏨
───────────────────────────────────────────── */
body.theme-booking-style .price-card-header {
    background: #003580 !important;
}
body.theme-booking-style .price-card {
    border-color: #E5E7EB !important;
    border-radius: 8px !important;
    background: #fff !important;
}
body.theme-booking-style .price-card .btn-light,
body.theme-booking-style .price-card .btn-success,
body.theme-booking-style .booking-actions .btn-success {
    background: #0071C2 !important;
    border-color: #0071C2 !important;
    color: #fff !important;
    border-radius: 4px !important;
    font-weight: 700;
}
body.theme-booking-style .price-card .btn-light:hover,
body.theme-booking-style .price-card .btn-success:hover,
body.theme-booking-style .booking-actions .btn-success:hover {
    background: #005999 !important;
    border-color: #005999 !important;
}
body.theme-booking-style .feature-icon {
    background: #0071C2 !important;
    border-radius: 4px !important;
    box-shadow: 0 4px 12px rgba(0,113,194,.3) !important;
}
body.theme-booking-style .quick-info-grid .text-center {
    background: #fff !important;
    border: 1px solid #E5E7EB !important;
    border-radius: 6px !important;
}
body.theme-booking-style .quick-info-grid .text-center:hover {
    border-color: #0071C2 !important;
    box-shadow: 0 4px 12px rgba(0,113,194,.12) !important;
}
body.theme-booking-style .quick-info-grid h6 { color: #697B8C !important; }
body.theme-booking-style .quick-info-grid p   { color: #003580 !important; }
body.theme-booking-style .attraction-select-btn {
    border-color: #0071C2 !important;
    color: #0071C2 !important;
    background: transparent !important;
    border-radius: 4px !important;
}
body.theme-booking-style .attraction-select-btn:hover {
    background: #EAF4FB !important;
}
body.theme-booking-style .attraction-select-btn.selected {
    background: #0071C2 !important;
    border-color: #0071C2 !important;
    color: #fff !important;
}
body.theme-booking-style .attraction-select-btn.selected:hover {
    background: #005999 !important;
    border-color: #005999 !important;
}
body.theme-booking-style .btn-gallery-custom {
    background-color: #0071C2 !important;
    border-color: #0071C2 !important;
    color: #fff !important;
    border-radius: 4px !important;
}
body.theme-booking-style .btn-gallery-custom:hover {
    background-color: #005999 !important;
    border-color: #005999 !important;
}
body.theme-booking-style .info-card {
    border-color: #E5E7EB !important;
    border-radius: 8px !important;
}
body.theme-booking-style .info-card .card-header {
    background: #F0F5FF !important;
    border-bottom-color: #0071C2 !important;
    border-radius: 7px 7px 0 0 !important;
}
body.theme-booking-style .info-card .card-header i { color: #0071C2 !important; }
body.theme-booking-style #bookingFormSection .btn-success {
    background: #0071C2 !important;
    border-color: #0071C2 !important;
    border-radius: 4px !important;
}
body.theme-booking-style #bookingFormSection .btn-success:hover {
    background: #005999 !important;
}
body.theme-booking-style #bookingFormSection .form-control:focus {
    border-color: #0071C2 !important;
    box-shadow: 0 0 0 2px rgba(0,113,194,.2) !important;
}


/* ─────────────────────────────────────────────
   5. NEO BRUTALISM ⚡
───────────────────────────────────────────── */
body.theme-neo-brutalism .price-card-header {
    background: #0A0A0A !important;
    border-bottom: 4px solid #FF4D4D !important;
}
body.theme-neo-brutalism .price-card {
    border: 3px solid #0A0A0A !important;
    box-shadow: 7px 7px 0 #0A0A0A !important;
    border-radius: 0 !important;
    background: #FAFAF0 !important;
}
body.theme-neo-brutalism .price-card .btn-light,
body.theme-neo-brutalism .price-card .btn-success,
body.theme-neo-brutalism .booking-actions .btn-success {
    background: #FF4D4D !important;
    border: 3px solid #0A0A0A !important;
    border-radius: 0 !important;
    box-shadow: 4px 4px 0 #0A0A0A !important;
    color: #fff !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
body.theme-neo-brutalism .price-card .btn-light:hover,
body.theme-neo-brutalism .price-card .btn-success:hover,
body.theme-neo-brutalism .booking-actions .btn-success:hover {
    background: #E63939 !important;
    transform: translate(-3px,-3px) !important;
    box-shadow: 7px 7px 0 #0A0A0A !important;
}
body.theme-neo-brutalism .feature-icon {
    background: #FF4D4D !important;
    border-radius: 0 !important;
    border: 2px solid #0A0A0A !important;
    box-shadow: 3px 3px 0 #0A0A0A !important;
}
body.theme-neo-brutalism .quick-info-grid .text-center {
    background: #FAFAF0 !important;
    border: 3px solid #0A0A0A !important;
    border-radius: 0 !important;
    box-shadow: 4px 4px 0 #0A0A0A !important;
}
body.theme-neo-brutalism .quick-info-grid h6 { color: #FF4D4D !important; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
body.theme-neo-brutalism .quick-info-grid p   { color: #0A0A0A !important; font-weight: 900; }
body.theme-neo-brutalism .attraction-select-btn {
    border: 3px solid #0A0A0A !important;
    color: #0A0A0A !important;
    background: #F5FF40 !important;
    border-radius: 0 !important;
    font-weight: 900;
    text-transform: uppercase;
}
body.theme-neo-brutalism .attraction-select-btn:hover {
    background: #FF4D4D !important;
    color: #fff !important;
    transform: translate(-2px,-2px);
    box-shadow: 3px 3px 0 #0A0A0A !important;
}
body.theme-neo-brutalism .attraction-select-btn.selected {
    background: #FF4D4D !important;
    border-color: #0A0A0A !important;
    color: #fff !important;
    box-shadow: 3px 3px 0 #0A0A0A !important;
}
body.theme-neo-brutalism .attraction-select-btn.selected:hover {
    background: #E63939 !important;
    transform: translate(-2px,-2px);
    box-shadow: 5px 5px 0 #0A0A0A !important;
}
body.theme-neo-brutalism .btn-gallery-custom {
    background-color: #FF4D4D !important;
    border: 3px solid #0A0A0A !important;
    border-radius: 0 !important;
    box-shadow: 3px 3px 0 #0A0A0A !important;
    color: #fff !important;
    font-weight: 900;
    text-transform: uppercase;
}
body.theme-neo-brutalism .btn-gallery-custom:hover {
    background-color: #0A0A0A !important;
    color: #F5FF40 !important;
    transform: translate(-2px,-2px);
    box-shadow: 5px 5px 0 #FF4D4D !important;
}
body.theme-neo-brutalism .info-card {
    border: 3px solid #0A0A0A !important;
    box-shadow: 5px 5px 0 #0A0A0A !important;
    border-radius: 0 !important;
    background: #FAFAF0 !important;
}
body.theme-neo-brutalism .info-card .card-header {
    background: #0A0A0A !important;
    border-bottom: 4px solid #FF4D4D !important;
    border-radius: 0 !important;
}
body.theme-neo-brutalism .info-card .card-header h5,
body.theme-neo-brutalism .info-card .card-header h6 { color: #FF4D4D !important; font-weight: 900; text-transform: uppercase; }
body.theme-neo-brutalism .info-card .card-header i  { color: #FF4D4D !important; }
body.theme-neo-brutalism #bookingFormSection .btn-success {
    background: #FF4D4D !important;
    border: 3px solid #0A0A0A !important;
    border-radius: 0 !important;
    box-shadow: 4px 4px 0 #0A0A0A !important;
    font-weight: 900;
    text-transform: uppercase;
}
body.theme-neo-brutalism #bookingFormSection .form-control {
    border: 3px solid #0A0A0A !important;
    border-radius: 0 !important;
    background: #fff !important;
}
body.theme-neo-brutalism #bookingFormSection .form-control:focus {
    border-color: #FF4D4D !important;
    box-shadow: 4px 4px 0 #FF4D4D !important;
}


/* ─────────────────────────────────────────────
   6. GLASS UI OCEAN 🌊
───────────────────────────────────────────── */
body.theme-glass-ui-ocean .price-card-header {
    background: rgba(3,105,161,.9) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}
body.theme-glass-ui-ocean .price-card {
    border-color: rgba(255,255,255,.55) !important;
    background: rgba(255,255,255,.65) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-radius: 20px !important;
}
body.theme-glass-ui-ocean .price-card .btn-light,
body.theme-glass-ui-ocean .price-card .btn-success,
body.theme-glass-ui-ocean .booking-actions .btn-success {
    background: #0369A1 !important;
    border-color: #0369A1 !important;
    color: #fff !important;
    border-radius: 999px !important;
    box-shadow: 0 4px 16px rgba(3,105,161,.35) !important;
}
body.theme-glass-ui-ocean .price-card .btn-light:hover,
body.theme-glass-ui-ocean .price-card .btn-success:hover,
body.theme-glass-ui-ocean .booking-actions .btn-success:hover {
    background: #0284C7 !important;
    border-color: #0284C7 !important;
}
body.theme-glass-ui-ocean .feature-icon {
    background: #0369A1 !important;
    box-shadow: 0 4px 16px rgba(3,105,161,.35) !important;
    border-radius: 999px !important;
}
body.theme-glass-ui-ocean .quick-info-grid .text-center {
    background: rgba(255,255,255,.65) !important;
    backdrop-filter: blur(12px) !important;
    border-color: rgba(255,255,255,.55) !important;
    border-radius: 16px !important;
}
body.theme-glass-ui-ocean .quick-info-grid h6 { color: #5B8BAD !important; }
body.theme-glass-ui-ocean .quick-info-grid p   { color: #0C2D4A !important; }
body.theme-glass-ui-ocean .attraction-select-btn {
    border-color: #0369A1 !important;
    color: #0369A1 !important;
    background: rgba(255,255,255,.65) !important;
    backdrop-filter: blur(8px) !important;
    border-radius: 999px !important;
}
body.theme-glass-ui-ocean .attraction-select-btn:hover {
    background: rgba(3,105,161,.12) !important;
}
body.theme-glass-ui-ocean .attraction-select-btn.selected {
    background: #0369A1 !important;
    border-color: #0369A1 !important;
    color: #fff !important;
    border-radius: 999px !important;
}
body.theme-glass-ui-ocean .attraction-select-btn.selected:hover {
    background: #0284C7 !important;
    border-color: #0284C7 !important;
}
body.theme-glass-ui-ocean .btn-gallery-custom {
    background-color: #0369A1 !important;
    border-color: #0369A1 !important;
    color: #fff !important;
    border-radius: 999px !important;
}
body.theme-glass-ui-ocean .btn-gallery-custom:hover {
    background-color: #0284C7 !important;
    border-color: #0284C7 !important;
    box-shadow: 0 4px 16px rgba(3,105,161,.35) !important;
}
body.theme-glass-ui-ocean .info-card {
    background: rgba(255,255,255,.65) !important;
    backdrop-filter: blur(12px) !important;
    border-color: rgba(255,255,255,.55) !important;
    border-radius: 20px !important;
}
body.theme-glass-ui-ocean .info-card .card-header {
    background: rgba(3,105,161,.12) !important;
    border-bottom-color: #0369A1 !important;
    border-radius: 19px 19px 0 0 !important;
}
body.theme-glass-ui-ocean .info-card .card-header i { color: #0369A1 !important; }
body.theme-glass-ui-ocean #bookingFormSection .btn-success {
    background: #0369A1 !important;
    border-color: #0369A1 !important;
    border-radius: 999px !important;
}
body.theme-glass-ui-ocean #bookingFormSection .btn-success:hover {
    background: #0284C7 !important;
}
body.theme-glass-ui-ocean #bookingFormSection .form-control:focus {
    border-color: #0369A1 !important;
    box-shadow: 0 0 0 3px rgba(3,105,161,.2) !important;
}


/* ─────────────────────────────────────────────
   7. LUXURY MINIMAL ✨
───────────────────────────────────────────── */
body.theme-luxury-minimal .price-card-header {
    background: #0C0C0C !important;
    border-bottom: 2px solid #B8974E !important;
}
body.theme-luxury-minimal .price-card {
    border-color: rgba(184,151,78,.25) !important;
    border-radius: 12px !important;
    background: #fff !important;
}
body.theme-luxury-minimal .price-card .btn-light,
body.theme-luxury-minimal .price-card .btn-success,
body.theme-luxury-minimal .booking-actions .btn-success {
    background: #B8974E !important;
    border-color: #B8974E !important;
    color: #fff !important;
    border-radius: 6px !important;
    letter-spacing: .05em;
    font-weight: 600;
}
body.theme-luxury-minimal .price-card .btn-light:hover,
body.theme-luxury-minimal .price-card .btn-success:hover,
body.theme-luxury-minimal .booking-actions .btn-success:hover {
    background: #9A7D3A !important;
    border-color: #9A7D3A !important;
    box-shadow: 0 8px 24px rgba(184,151,78,.4) !important;
}
body.theme-luxury-minimal .feature-icon {
    background: #B8974E !important;
    box-shadow: 0 4px 16px rgba(184,151,78,.35) !important;
    border-radius: 6px !important;
}
body.theme-luxury-minimal .quick-info-grid .text-center {
    background: #fff !important;
    border-color: rgba(184,151,78,.25) !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,.06) !important;
}
body.theme-luxury-minimal .quick-info-grid .text-center:hover {
    border-color: #B8974E !important;
    box-shadow: 0 8px 24px rgba(184,151,78,.18) !important;
}
body.theme-luxury-minimal .quick-info-grid h6 { color: #B8974E !important; opacity: .8; text-transform: uppercase; letter-spacing: .06em; }
body.theme-luxury-minimal .quick-info-grid p   { color: #0C0C0C !important; font-weight: 600; letter-spacing: .01em; }
body.theme-luxury-minimal .attraction-select-btn {
    border-color: #B8974E !important;
    color: #B8974E !important;
    background: transparent !important;
    border-radius: 4px !important;
    font-weight: 600;
    letter-spacing: .04em;
}
body.theme-luxury-minimal .attraction-select-btn:hover {
    background: rgba(184,151,78,.08) !important;
}
body.theme-luxury-minimal .attraction-select-btn.selected {
    background: #B8974E !important;
    border-color: #B8974E !important;
    color: #fff !important;
}
body.theme-luxury-minimal .attraction-select-btn.selected:hover {
    background: #9A7D3A !important;
    border-color: #9A7D3A !important;
}
body.theme-luxury-minimal .btn-gallery-custom {
    background-color: #B8974E !important;
    border-color: #B8974E !important;
    color: #fff !important;
    border-radius: 4px !important;
    letter-spacing: .04em;
    font-weight: 600;
}
body.theme-luxury-minimal .btn-gallery-custom:hover {
    background-color: #9A7D3A !important;
    border-color: #9A7D3A !important;
    box-shadow: 0 4px 16px rgba(184,151,78,.35) !important;
}
body.theme-luxury-minimal .info-card {
    border-color: rgba(184,151,78,.25) !important;
    border-radius: 12px !important;
}
body.theme-luxury-minimal .info-card .card-header {
    background: #FAFAF7 !important;
    border-bottom-color: #B8974E !important;
    border-radius: 11px 11px 0 0 !important;
}
body.theme-luxury-minimal .info-card .card-header i { color: #B8974E !important; }
body.theme-luxury-minimal #bookingFormSection .btn-success {
    background: #B8974E !important;
    border-color: #B8974E !important;
    border-radius: 6px !important;
    font-weight: 600;
    letter-spacing: .04em;
}
body.theme-luxury-minimal #bookingFormSection .btn-success:hover {
    background: #9A7D3A !important;
}
body.theme-luxury-minimal #bookingFormSection .form-control:focus {
    border-color: #B8974E !important;
    box-shadow: 0 0 0 3px rgba(184,151,78,.15) !important;
}


/* ─────────────────────────────────────────────
   8. MODERN TRUST 💎
───────────────────────────────────────────── */
body.theme-modern-trust .price-card-header {
    background: linear-gradient(135deg, #1B4FD8, #1E3A8A) !important;
}
body.theme-modern-trust .price-card {
    border-color: #E2E8F0 !important;
    border-radius: 16px !important;
    background: #fff !important;
}
body.theme-modern-trust .price-card .btn-light,
body.theme-modern-trust .price-card .btn-success,
body.theme-modern-trust .booking-actions .btn-success {
    background: #1B4FD8 !important;
    border-color: #1B4FD8 !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(27,79,216,.3) !important;
}
body.theme-modern-trust .price-card .btn-light:hover,
body.theme-modern-trust .price-card .btn-success:hover,
body.theme-modern-trust .booking-actions .btn-success:hover {
    background: #1E3A8A !important;
    border-color: #1E3A8A !important;
}
body.theme-modern-trust .feature-icon {
    background: #1B4FD8 !important;
    box-shadow: 0 4px 14px rgba(27,79,216,.3) !important;
    border-radius: 10px !important;
}
body.theme-modern-trust .quick-info-grid .text-center {
    background: #fff !important;
    border-color: #E2E8F0 !important;
    border-radius: 12px !important;
}
body.theme-modern-trust .quick-info-grid .text-center:hover {
    border-color: #1B4FD8 !important;
    box-shadow: 0 6px 20px rgba(27,79,216,.12) !important;
}
body.theme-modern-trust .quick-info-grid h6 { color: #64748B !important; }
body.theme-modern-trust .quick-info-grid p   { color: #0F172A !important; }
body.theme-modern-trust .attraction-select-btn {
    border-color: #1B4FD8 !important;
    color: #1B4FD8 !important;
    background: transparent !important;
    border-radius: 8px !important;
}
body.theme-modern-trust .attraction-select-btn:hover {
    background: #EEF3FD !important;
}
body.theme-modern-trust .attraction-select-btn.selected {
    background: #1B4FD8 !important;
    border-color: #1B4FD8 !important;
    color: #fff !important;
}
body.theme-modern-trust .attraction-select-btn.selected:hover {
    background: #1E3A8A !important;
    border-color: #1E3A8A !important;
}
body.theme-modern-trust .btn-gallery-custom {
    background-color: #1B4FD8 !important;
    border-color: #1B4FD8 !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-weight: 700;
}
body.theme-modern-trust .btn-gallery-custom:hover {
    background-color: #1E3A8A !important;
    border-color: #1E3A8A !important;
    box-shadow: 0 4px 14px rgba(27,79,216,.3) !important;
}
body.theme-modern-trust .info-card {
    border-color: #E2E8F0 !important;
    border-radius: 16px !important;
}
body.theme-modern-trust .info-card .card-header {
    background: #EEF3FD !important;
    border-bottom-color: #1B4FD8 !important;
    border-radius: 15px 15px 0 0 !important;
}
body.theme-modern-trust .info-card .card-header i { color: #1B4FD8 !important; }
body.theme-modern-trust #bookingFormSection .btn-success {
    background: #1B4FD8 !important;
    border-color: #1B4FD8 !important;
    border-radius: 8px !important;
    font-weight: 700;
}
body.theme-modern-trust #bookingFormSection .btn-success:hover {
    background: #1E3A8A !important;
}
body.theme-modern-trust #bookingFormSection .form-control:focus {
    border-color: #1B4FD8 !important;
    box-shadow: 0 0 0 3px rgba(27,79,216,.15) !important;
}


/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    body.theme-neo-brutalism .price-card,
    body.theme-neo-brutalism .booking-form,
    body.theme-neo-brutalism .blog-card,
    body.theme-neo-brutalism .contact-form {
        box-shadow: 4px 4px 0 #0A0A0A !important;
    }
    body.theme-retro-bauhaus .price-card,
    body.theme-retro-bauhaus .booking-form,
    body.theme-retro-bauhaus .blog-card,
    body.theme-retro-bauhaus .contact-form {
        box-shadow: 3px 3px 0 #0F1923 !important;
    }
}

/* ══════════════════════════════════════════════════════════════════════
   PI-* PRICE BREAKDOWN CLASSES — Per-theme overrides
   (pi-label, pi-value, pi-total, pi-empty, pi-divider)
══════════════════════════════════════════════════════════════════════ */

/* ── Warm Hospitality ── */
body.theme-warm-hospitality .pi-label  { color: rgba(255,255,255,0.7) !important; }
body.theme-warm-hospitality .pi-value  { color: #fff !important; }
body.theme-warm-hospitality .pi-total  { color: #FFD54F !important; }
body.theme-warm-hospitality .pi-empty  { color: rgba(255,255,255,0.55) !important; }
body.theme-warm-hospitality .pi-divider{ border-top-color: rgba(255,255,255,0.25) !important; }

/* ── Booking Style ── */
body.theme-booking-style .pi-label  { color: #6c757d !important; }
body.theme-booking-style .pi-value  { color: #1a1a2e !important; }
body.theme-booking-style .pi-total  { color: #003580 !important; }
body.theme-booking-style .pi-empty  { color: #9da5b0 !important; }
body.theme-booking-style .pi-divider{ border-top-color: #dee2e6 !important; }

/* ── Luxury Minimal ── */
body.theme-luxury-minimal .pi-label  { color: rgba(255,255,255,0.6) !important; }
body.theme-luxury-minimal .pi-value  { color: rgba(255,255,255,0.9) !important; }
body.theme-luxury-minimal .pi-total  { color: #B8974E !important; }
body.theme-luxury-minimal .pi-empty  { color: rgba(255,255,255,0.45) !important; }
body.theme-luxury-minimal .pi-divider{ border-top-color: rgba(184,151,78,0.35) !important; }

/* ── Modern Trust ── */
body.theme-modern-trust .pi-label  { color: #6c757d !important; }
body.theme-modern-trust .pi-value  { color: #1a1a2e !important; }
body.theme-modern-trust .pi-total  { color: #1B4FD8 !important; }
body.theme-modern-trust .pi-empty  { color: #9da5b0 !important; }
body.theme-modern-trust .pi-divider{ border-top-color: #dee2e6 !important; }

/* ── Glass UI Ocean ── */
body.theme-glass-ui-ocean .pi-label  { color: rgba(255,255,255,0.65) !important; }
body.theme-glass-ui-ocean .pi-value  { color: #fff !important; }
body.theme-glass-ui-ocean .pi-total  { color: #7FD4F5 !important; }
body.theme-glass-ui-ocean .pi-empty  { color: rgba(255,255,255,0.45) !important; }
body.theme-glass-ui-ocean .pi-divider{ border-top-color: rgba(255,255,255,0.2) !important; }

/* ── Apple HIG ── */
body.theme-apple-hig .pi-label  { color: #8a8a8e !important; }
body.theme-apple-hig .pi-value  { color: #1c1c1e !important; }
body.theme-apple-hig .pi-total  { color: #007AFF !important; }
body.theme-apple-hig .pi-empty  { color: #aeaeb2 !important; }
body.theme-apple-hig .pi-divider{ border-top-color: #e5e5ea !important; }

/* ── Neo Brutalism ── */
body.theme-neo-brutalism .pi-label  { color: #888 !important; font-weight: 600 !important; text-transform: uppercase !important; font-size: 0.75rem !important; }
body.theme-neo-brutalism .pi-value  { color: #0A0A0A !important; font-weight: 700 !important; }
body.theme-neo-brutalism .pi-total  { color: #FF4D4D !important; font-weight: 900 !important; }
body.theme-neo-brutalism .pi-empty  { color: #666 !important; font-style: normal !important; text-transform: uppercase !important; }
body.theme-neo-brutalism .pi-divider{ border-top: 3px solid #0A0A0A !important; }

/* ── Retro Bauhaus ── */
body.theme-retro-bauhaus .pi-label  { color: #6b6055 !important; }
body.theme-retro-bauhaus .pi-value  { color: #0F1923 !important; font-weight: 700 !important; }
body.theme-retro-bauhaus .pi-total  { color: #E63946 !important; font-weight: 800 !important; }
body.theme-retro-bauhaus .pi-empty  { color: #9a9085 !important; }
body.theme-retro-bauhaus .pi-divider{ border-top-color: #0F1923 !important; border-top-width: 2px !important; }

/* ══════════════════════════════════════════════════════════════════════
   SHOP-PREVIEW (Hotel Deliveries mega-menu card) — Per-theme styles
══════════════════════════════════════════════════════════════════════ */

/* ── Warm Hospitality ── warm orange → amber gradient */
body.theme-warm-hospitality .shop-preview,
body.theme-warm-hospitality .shop-preview-mobile {
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(230,126,34,.35) !important;
    border: none !important;
}
body.theme-warm-hospitality .shop-preview .btn,
body.theme-warm-hospitality .shop-preview-mobile .btn {
    background: rgba(255,255,255,.2) !important;
    border: 2px solid rgba(255,255,255,.5) !important;
    border-radius: 12px !important;
    color: #fff !important;
    font-weight: 600 !important;
}
body.theme-warm-hospitality .shop-preview .btn:hover,
body.theme-warm-hospitality .shop-preview-mobile .btn:hover {
    background: rgba(255,255,255,.35) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(0,0,0,.15) !important;
}

/* ── Booking Style ── dark navy like Booking.com */
body.theme-booking-style .shop-preview,
body.theme-booking-style .shop-preview-mobile {
    background: linear-gradient(135deg, #003580 0%, #0071C2 100%) !important;
    border-radius: 8px !important;
    box-shadow: 0 6px 20px rgba(0,53,128,.30) !important;
    border: none !important;
}
body.theme-booking-style .shop-preview .btn,
body.theme-booking-style .shop-preview-mobile .btn {
    background: #FF5533 !important;
    border: none !important;
    border-radius: 4px !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: .03em !important;
}
body.theme-booking-style .shop-preview .btn:hover,
body.theme-booking-style .shop-preview-mobile .btn:hover {
    background: #e04020 !important;
    transform: translateY(-1px) !important;
}

/* ── Luxury Minimal ── dark charcoal + gold */
body.theme-luxury-minimal .shop-preview,
body.theme-luxury-minimal .shop-preview-mobile {
    background: linear-gradient(135deg, #0C0C0C 0%, #1a1a1a 100%) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,.40) !important;
    border: 1px solid rgba(184,151,78,.30) !important;
}
body.theme-luxury-minimal .shop-preview h5,
body.theme-luxury-minimal .shop-preview-mobile h5 {
    color: #B8974E !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    font-size: .85rem !important;
}
body.theme-luxury-minimal .shop-preview p,
body.theme-luxury-minimal .shop-preview-mobile p {
    color: rgba(255,255,255,.65) !important;
}
body.theme-luxury-minimal .shop-preview .btn,
body.theme-luxury-minimal .shop-preview-mobile .btn {
    background: transparent !important;
    border: 1px solid #B8974E !important;
    border-radius: 6px !important;
    color: #B8974E !important;
    font-weight: 600 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
}
body.theme-luxury-minimal .shop-preview .btn:hover,
body.theme-luxury-minimal .shop-preview-mobile .btn:hover {
    background: #B8974E !important;
    color: #0C0C0C !important;
}

/* ── Modern Trust ── blue gradient with soft shadow */
body.theme-modern-trust .shop-preview,
body.theme-modern-trust .shop-preview-mobile {
    background: linear-gradient(135deg, #1B4FD8 0%, #2563EB 100%) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(27,79,216,.30) !important;
    border: none !important;
}
body.theme-modern-trust .shop-preview .btn,
body.theme-modern-trust .shop-preview-mobile .btn {
    background: rgba(255,255,255,.18) !important;
    border: 2px solid rgba(255,255,255,.45) !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-weight: 600 !important;
}
body.theme-modern-trust .shop-preview .btn:hover,
body.theme-modern-trust .shop-preview-mobile .btn:hover {
    background: rgba(255,255,255,.30) !important;
    transform: translateY(-2px) !important;
}

/* ── Glass UI Ocean ── glassmorphism with ocean blue */
body.theme-glass-ui-ocean .shop-preview,
body.theme-glass-ui-ocean .shop-preview-mobile {
    background: linear-gradient(135deg, rgba(3,105,161,.75) 0%, rgba(14,165,233,.65) 100%) !important;
    backdrop-filter: blur(16px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255,255,255,.35) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 32px rgba(12,74,110,.20) !important;
}
body.theme-glass-ui-ocean .shop-preview .btn,
body.theme-glass-ui-ocean .shop-preview-mobile .btn {
    background: rgba(255,255,255,.20) !important;
    border: 1.5px solid rgba(255,255,255,.5) !important;
    border-radius: 999px !important;
    color: #fff !important;
    font-weight: 600 !important;
    backdrop-filter: blur(8px) !important;
}
body.theme-glass-ui-ocean .shop-preview .btn:hover,
body.theme-glass-ui-ocean .shop-preview-mobile .btn:hover {
    background: rgba(255,255,255,.35) !important;
    transform: translateY(-2px) !important;
}

/* ── Apple HIG ── frosted glass, clean blue */
body.theme-apple-hig .shop-preview,
body.theme-apple-hig .shop-preview-mobile {
    background: linear-gradient(135deg, rgba(0,122,255,.85) 0%, rgba(0,98,204,.90) 100%) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255,255,255,.30) !important;
    border-radius: 18px !important;
    box-shadow: 0 6px 24px rgba(0,122,255,.25) !important;
}
body.theme-apple-hig .shop-preview .btn,
body.theme-apple-hig .shop-preview-mobile .btn {
    background: rgba(255,255,255,.22) !important;
    border: 1.5px solid rgba(255,255,255,.45) !important;
    border-radius: 999px !important;
    color: #fff !important;
    font-weight: 600 !important;
    letter-spacing: -.01em !important;
}
body.theme-apple-hig .shop-preview .btn:hover,
body.theme-apple-hig .shop-preview-mobile .btn:hover {
    background: rgba(255,255,255,.38) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 14px rgba(0,0,0,.15) !important;
}

/* ── Neo Brutalism ── black bg, red accent, sharp edges, yellow CTA */
body.theme-neo-brutalism .shop-preview,
body.theme-neo-brutalism .shop-preview-mobile {
    background: #0A0A0A !important;
    border: 3px solid #FF4D4D !important;
    border-radius: 0 !important;
    box-shadow: 5px 5px 0 #FF4D4D !important;
}
body.theme-neo-brutalism .shop-preview h5,
body.theme-neo-brutalism .shop-preview-mobile h5 {
    color: #F5FF40 !important;
    text-transform: uppercase !important;
    letter-spacing: .08em !important;
    font-weight: 900 !important;
}
body.theme-neo-brutalism .shop-preview p,
body.theme-neo-brutalism .shop-preview-mobile p {
    color: rgba(255,255,255,.75) !important;
    font-weight: 600 !important;
}
body.theme-neo-brutalism .shop-preview .btn,
body.theme-neo-brutalism .shop-preview-mobile .btn {
    background: #F5FF40 !important;
    border: 3px solid #fff !important;
    border-radius: 0 !important;
    color: #0A0A0A !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
    box-shadow: 3px 3px 0 #fff !important;
}
body.theme-neo-brutalism .shop-preview .btn:hover,
body.theme-neo-brutalism .shop-preview-mobile .btn:hover {
    background: #fff !important;
    transform: translate(-2px,-2px) !important;
    box-shadow: 5px 5px 0 #F5FF40 !important;
}

/* ── Retro Bauhaus ── navy + yellow accent, minimal radius */
body.theme-retro-bauhaus .shop-preview,
body.theme-retro-bauhaus .shop-preview-mobile {
    background: linear-gradient(135deg, #1A3F7A 0%, #0F1923 100%) !important;
    border-radius: 4px !important;
    border-bottom: 4px solid #F5C800 !important;
    box-shadow: 0 6px 20px rgba(15,25,35,.30) !important;
}
body.theme-retro-bauhaus .shop-preview h5,
body.theme-retro-bauhaus .shop-preview-mobile h5 {
    color: #F5C800 !important;
    text-transform: uppercase !important;
    letter-spacing: .07em !important;
    font-weight: 700 !important;
}
body.theme-retro-bauhaus .shop-preview .btn,
body.theme-retro-bauhaus .shop-preview-mobile .btn {
    background: #E63329 !important;
    border: none !important;
    border-radius: 2px !important;
    color: #fff !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
    font-size: 12px !important;
    box-shadow: 0 4px 12px rgba(230,51,41,.35) !important;
}
body.theme-retro-bauhaus .shop-preview .btn:hover,
body.theme-retro-bauhaus .shop-preview-mobile .btn:hover {
    background: #C42820 !important;
    transform: translateY(-2px) !important;
}

/* ══════════════════════════════════════════════════════════════════════
   PRICE BREAKDOWN SECTIONS — Per-theme overrides
   (.ps-heading, .ps-divider, .ps-total-label, .ps-total-value,
    .price-section, .price-total, .price-breakdown)
══════════════════════════════════════════════════════════════════════ */

/* ── Warm Hospitality ── */
body.theme-warm-hospitality .ps-heading,
body.theme-warm-hospitality .ps-heading i { color: #E67E22 !important; }
body.theme-warm-hospitality .ps-divider   { border-color: rgba(230,126,34,.3) !important; }
body.theme-warm-hospitality .ps-total-label { color: #2C3E50 !important; }
body.theme-warm-hospitality .ps-total-value { color: #E67E22 !important; }
body.theme-warm-hospitality .price-section  { border-color: rgba(230,126,34,.2) !important; }
body.theme-warm-hospitality .price-section:hover { border-color: #E67E22 !important; }
body.theme-warm-hospitality .price-total    {
    background: #FDF2E9 !important;
    border-color: rgba(230,126,34,.4) !important;
}

/* ── Booking Style ── */
body.theme-booking-style .ps-heading,
body.theme-booking-style .ps-heading i { color: #003580 !important; }
body.theme-booking-style .ps-divider   { border-color: #E5E7EB !important; }
body.theme-booking-style .ps-total-label { color: #1a1a2e !important; }
body.theme-booking-style .ps-total-value { color: #0071C2 !important; }
body.theme-booking-style .price-section  { border-color: #E5E7EB !important; }
body.theme-booking-style .price-section:hover { border-color: #0071C2 !important; }
body.theme-booking-style .price-total    {
    background: #EBF3FF !important;
    border-color: rgba(0,113,194,.35) !important;
}

/* ── Luxury Minimal ── */
body.theme-luxury-minimal .ps-heading,
body.theme-luxury-minimal .ps-heading i { color: #B8974E !important; letter-spacing: .05em !important; text-transform: uppercase !important; font-size: .8rem !important; }
body.theme-luxury-minimal .ps-divider   { border-color: rgba(184,151,78,.35) !important; }
body.theme-luxury-minimal .ps-total-label { color: #0C0C0C !important; }
body.theme-luxury-minimal .ps-total-value { color: #B8974E !important; }
body.theme-luxury-minimal .price-section  { border-color: rgba(184,151,78,.2) !important; }
body.theme-luxury-minimal .price-section:hover { border-color: #B8974E !important; }
body.theme-luxury-minimal .price-total    {
    background: #F9F2E3 !important;
    border-color: rgba(184,151,78,.4) !important;
}

/* ── Modern Trust ── */
body.theme-modern-trust .ps-heading,
body.theme-modern-trust .ps-heading i { color: #1B4FD8 !important; }
body.theme-modern-trust .ps-divider   { border-color: #D1E0FF !important; }
body.theme-modern-trust .ps-total-label { color: #0F172A !important; }
body.theme-modern-trust .ps-total-value { color: #1B4FD8 !important; }
body.theme-modern-trust .price-section  { border-color: #E2E8F0 !important; }
body.theme-modern-trust .price-section:hover { border-color: #1B4FD8 !important; }
body.theme-modern-trust .price-total    {
    background: #EEF3FD !important;
    border-color: rgba(27,79,216,.35) !important;
}

/* ── Glass UI Ocean ── */
body.theme-glass-ui-ocean .ps-heading,
body.theme-glass-ui-ocean .ps-heading i { color: #0369A1 !important; }
body.theme-glass-ui-ocean .ps-divider   { border-color: rgba(3,105,161,.25) !important; }
body.theme-glass-ui-ocean .ps-total-label { color: #0C4A6E !important; }
body.theme-glass-ui-ocean .ps-total-value { color: #0369A1 !important; }
body.theme-glass-ui-ocean .price-section  {
    background: rgba(255,255,255,.55) !important;
    backdrop-filter: blur(10px) !important;
    border-color: rgba(255,255,255,.45) !important;
}
body.theme-glass-ui-ocean .price-section:hover { border-color: rgba(3,105,161,.5) !important; }
body.theme-glass-ui-ocean .price-total    {
    background: rgba(224,242,254,.75) !important;
    backdrop-filter: blur(10px) !important;
    border-color: rgba(3,105,161,.35) !important;
}

/* ── Apple HIG ── */
body.theme-apple-hig .ps-heading,
body.theme-apple-hig .ps-heading i { color: #007AFF !important; }
body.theme-apple-hig .ps-divider   { border-color: #E5E5EA !important; }
body.theme-apple-hig .ps-total-label { color: #1C1C1E !important; }
body.theme-apple-hig .ps-total-value { color: #007AFF !important; }
body.theme-apple-hig .price-section  {
    background: rgba(255,255,255,.75) !important;
    backdrop-filter: blur(12px) !important;
    border-color: rgba(60,60,67,.12) !important;
    border-radius: 14px !important;
}
body.theme-apple-hig .price-section:hover { border-color: rgba(0,122,255,.4) !important; }
body.theme-apple-hig .price-total    {
    background: #E8F1FF !important;
    border-color: rgba(0,122,255,.35) !important;
    border-radius: 14px !important;
}

/* ── Neo Brutalism ── */
body.theme-neo-brutalism .ps-heading  { color: #FF4D4D !important; text-transform: uppercase !important; letter-spacing: .06em !important; font-size: .78rem !important; font-weight: 900 !important; }
body.theme-neo-brutalism .ps-heading i { color: #FF4D4D !important; }
body.theme-neo-brutalism .ps-divider  { border-color: #0A0A0A !important; border-width: 2px !important; }
body.theme-neo-brutalism .ps-total-label { color: #0A0A0A !important; font-weight: 800 !important; text-transform: uppercase !important; letter-spacing: .04em !important; }
body.theme-neo-brutalism .ps-total-value { color: #FF4D4D !important; font-weight: 900 !important; }
body.theme-neo-brutalism .price-section  {
    background: #fff !important;
    border: 2px solid #0A0A0A !important;
    border-radius: 0 !important;
    box-shadow: 3px 3px 0 #0A0A0A !important;
}
body.theme-neo-brutalism .price-section:hover {
    transform: translate(-2px,-2px) !important;
    box-shadow: 5px 5px 0 #0A0A0A !important;
    border-color: #FF4D4D !important;
}
body.theme-neo-brutalism .price-total  {
    background: #F5FF40 !important;
    border: 3px solid #0A0A0A !important;
    border-radius: 0 !important;
    box-shadow: 4px 4px 0 #0A0A0A !important;
}

/* ── Retro Bauhaus ── */
body.theme-retro-bauhaus .ps-heading,
body.theme-retro-bauhaus .ps-heading i { color: #E63329 !important; }
body.theme-retro-bauhaus .ps-divider   { border-color: rgba(15,25,35,.25) !important; border-width: 2px !important; }
body.theme-retro-bauhaus .ps-total-label { color: #0F1923 !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: .04em !important; }
body.theme-retro-bauhaus .ps-total-value { color: #E63329 !important; font-weight: 800 !important; }
body.theme-retro-bauhaus .price-section  {
    border-color: rgba(15,25,35,.15) !important;
    border-radius: 4px !important;
}
body.theme-retro-bauhaus .price-section:hover { border-color: #E63329 !important; }
body.theme-retro-bauhaus .price-total    {
    background: #FFF0EF !important;
    border-color: rgba(230,51,41,.4) !important;
    border-radius: 4px !important;
    border-bottom: 3px solid #F5C800 !important;
}
