@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@400;500;600;700&display=swap');

/**
 * Elementor Legendary Journeys Widget
 */

/* ============================================
   Variables
   ============================================ */
:root {
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --text-color: #333;
    --text-light: #666;
    --text-lighter: #999;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --black: #000000;
    --border-color: #eee;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ============================================
   Typography
   ============================================ */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: #000000;
    /* Fallback Default */
    position: relative;
    /* Background Image/Color controlled via Customizer/Inline CSS */
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, var(--bg-overlay, 0.75));
    /* Dynamic opacity via variable */
    z-index: -1;
    pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

/* ============================================
   Header Section Widget
   ============================================ */
.egyptwonders-header-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-section-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo-section a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

/* ============================================
   Responsive Header (Tablet & Mobile)
   ============================================ */
@media (max-width: 991px) {
    .header-section-wrapper {
        padding: 10px 20px;
    }

    /* Mobile Toggle Button */
    .egyptwonders-header-section .header-mobile-toggle {
        display: flex !important;
        order: 3;
        /* Rightmost */
        margin-left: auto;
        z-index: 1002;
        /* Above the drawer */
        position: relative;
        background: transparent;
        border: 1px solid rgba(212, 175, 55, 0.5);
        color: #d4af37 !important;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }

    .egyptwonders-header-section .header-mobile-toggle:hover {
        background: rgba(212, 175, 55, 0.1);
    }

    /* Navigation Drawer */
    .header-navigation {
        position: fixed !important;
        top: 0;
        right: -100%;
        /* Start fully hidden */
        width: 100%;
        /* Full screen overlay feel */
        max-width: 300px;
        /* Or limited width */
        height: 100vh;
        background: #000000;
        /* Solid black fallback */
        background: rgba(10, 10, 10, 0.98);
        /* Deep dark background */
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        /* Smooth easing */
        z-index: 1001;
        /* Above everything else */
        padding-top: 60px;
        /* Space for close button area */
    }

    .header-navigation.active {
        right: 0;
    }

    /* Navigation Items */
    .header-navigation ul {
        flex-direction: column;
        gap: 25px;
        width: 100%;
        text-align: center;
        padding: 0 20px;
    }

    .header-navigation a {
        font-size: 20px;
        font-family: 'Cinzel', serif;
        /* Premium font if available */
        color: #fff !important;
        display: block;
        padding: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: color 0.3s, padding-left 0.3s;
    }

    .header-navigation a:hover {
        color: #d4af37 !important;
        padding-left: 10px;
        /* Slight slide effect */
        border-bottom-color: rgba(212, 175, 55, 0.3);
    }

    /* Hide Desktop Elements */
    .header-right-section {
        display: none !important;
    }
}

/* Ensure desktop remains horizontal */
@media (min-width: 992px) {
    .header-navigation {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
        transform: none;
        display: flex !important;
        /* Force flex on desktop */
    }

    .header-mobile-toggle {
        display: none !important;
    }
}

.header-logo-section a:hover {
    opacity: 0.8;
}

.header-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.header-navigation a {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-navigation a:hover {
    opacity: 0.8;
}

.header-right-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-right-section a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.egyptwonders-header-section .header-mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
}

/* ============================================
   Header (Legacy - for backward compatibility)
   ============================================ */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.site-title a {
    color: var(--text-color);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.main-navigation a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.main-navigation a:hover {
    color: var(--primary-color);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
}

/* ============================================
   Hero Section
   ============================================ */
.egyptwonders-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
}

.hero-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.hero-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* ============================================
   Tours Grid
   ============================================ */
.egyptwonders-tours-grid {
    display: grid;
    gap: 30px;
}

.tour-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.tour-image {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: var(--bg-light);
}

.tour-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-content {
    padding: 20px;
}

.tour-category {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.tour-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.tour-rating span:first-child {
    color: #ffa500;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.tour-price {
    text-align: right;
}

.tour-price div:first-child {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.tour-price div:last-child {
    font-size: 12px;
    color: var(--text-lighter);
}

/* ============================================
   Destinations Grid
   ============================================ */
.egyptwonders-destinations-grid {
    display: grid;
    gap: 30px;
}

.destination-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.destination-image {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: var(--bg-light);
}

.destination-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-content {
    padding: 20px;
}

.destination-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.destination-excerpt {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   Testimonials
   ============================================ */
.egyptwonders-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-item:hover {
    box-shadow: var(--shadow-hover);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating span {
    color: #ffa500;
    font-size: 20px;
}

.testimonial-content {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--text-color);
}

.author-position {
    font-size: 14px;
    color: var(--text-lighter);
}

/* ============================================
   CTA Section
   ============================================ */
.egyptwonders-cta-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--white);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-button-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-button-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-button-secondary:hover {
    background-color: var(--white);
    color: var(--text-color);
}

/* ============================================
   Image + Text Section
   ============================================ */
.egyptwonders-image-text-section {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.egyptwonders-image-text-section .image-wrapper {
    flex: 1;
    min-width: 300px;
}

.egyptwonders-image-text-section .image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.egyptwonders-image-text-section .text-wrapper {
    flex: 1;
    min-width: 300px;
}

.section-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.section-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--text-color);
    color: var(--white);
    padding: 40px 0;
    margin-top: 60px;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.footer-menu a {
    color: var(--white);
    transition: var(--transition);
}

.footer-menu a:hover {
    color: var(--primary-color);
}

.site-info {
    color: var(--text-lighter);
    font-size: 14px;
}

/* ============================================
   Excellence Section
   ============================================ */
.egyptwonders-excellence-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.excellence-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.excellence-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.excellence-header {
    text-align: center;
}

.excellence-subtitle {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    transition: var(--transition);
}

.excellence-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.excellence-description {
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

.excellence-features-grid {
    display: grid;
    gap: 30px;
}

.excellence-feature-card {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.excellence-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.excellence-feature-icon {
    margin-bottom: 20px;
}

.excellence-feature-icon i,
.excellence-feature-icon svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid;
}

.excellence-feature-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.excellence-feature-description {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.excellence-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.4);
}

.hero-content-box {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #e0c050 0%, #c9a028 100%);
}

/* ============================================
   Legendary Journeys Section
   ============================================ */
.egyptwonders-legendary-journeys {
    position: relative;
    width: 100%;
}

.legendary-content {
    max-width: 1400px;
    margin: 0 auto;
}

.legendary-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.legendary-header-text {
    flex: 1;
    min-width: 300px;
}

.legendary-subtitle {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    transition: var(--transition);
}

.legendary-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.legendary-description {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.legendary-explore-button a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.legendary-explore-button a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.legendary-tours-grid {
    display: grid;
    gap: 30px;
}

.legendary-tour-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legendary-tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.legendary-tour-cta:hover {
    background-color: #d4af37 !important;
    color: #1a1a1a !important;
    transform: scale(1.1);
    border-color: #d4af37 !important;
}

.legendary-tour-card:hover .legendary-tour-cta {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: scale(1.1);
}

.legendary-tour-image {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: var(--bg-light);
}

.legendary-tour-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.legendary-tour-card:hover .legendary-tour-image img {
    transform: scale(1.1);
}

.legendary-featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.legendary-price-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 10px 16px;
    border-radius: 8px;
    z-index: 2;
    text-align: right;
}

.legendary-category-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.legendary-tour-content {
    padding: 25px;
}

.legendary-tour-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #333;
    line-height: 1.3;
}

.legendary-tour-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 20px 0;
}

.legendary-tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.legendary-tour-meta-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legendary-tour-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legendary-tour-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 14px;
}

.legendary-tour-cta {
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 18px;
    transition: all 0.3s ease;
}

/* ============================================
   Tour Packages Section
   ============================================ */
.egyptwonders-tour-packages {
    position: relative;
    width: 100%;
    padding: 100px 20px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.tour-packages-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.tour-packages-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.tour-packages-header {
    text-align: center;
    margin-bottom: 60px;
}

.tour-packages-subtitle {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    transition: var(--transition);
}

.tour-packages-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 25px 0;
}

.tour-packages-description {
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

.tour-packages-grid {
    display: grid;
    gap: 30px;
}

.tour-package-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.tour-package-card:hover a[style*="background-color: #d4af37"] {
    background-color: #b8941f !important;
    transform: translateY(-2px);
}

.tour-package-image {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    background: #1a1a1a;
}

.tour-package-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-package-card:hover .tour-package-image img {
    transform: scale(1.1);
}

.tour-package-content {
    padding: 30px;
}

/* ============================================
   Exclusive Invitation Section
   ============================================ */
.egyptwonders-exclusive-invitation {
    position: relative;
    width: 100%;
    padding: 100px 20px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.exclusive-invitation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.exclusive-invitation-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.exclusive-invitation-card {
    position: relative;
    max-width: 800px;
    width: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exclusive-invitation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

.exclusive-invitation-icon-top-left,
.exclusive-invitation-icon-top-right {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.exclusive-invitation-icon-bottom-left {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exclusive-invitation-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.exclusive-invitation-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 30px;
}

.exclusive-invitation-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 25px 0;
}

.exclusive-invitation-description {
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 40px 0;
}

.exclusive-invitation-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.exclusive-invitation-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.exclusive-invitation-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.exclusive-invitation-button-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.exclusive-invitation-button-secondary:hover {
    background-color: #444444 !important;
    transform: translateY(-2px);
}

.exclusive-invitation-acclaim {
    font-size: 13px;
    margin: 0 0 20px 0;
}

.exclusive-invitation-publications {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease;
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

/* ============================================
   Footer Section
   ============================================ */
.egyptwonders-footer-section {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.footer-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top-section {
    padding: 60px 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-company-column {
    max-width: 100%;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-contact {
    margin-bottom: 30px;
}

.footer-contact>div {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    transform: translateY(-2px);
}

.footer-menu-column h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    margin-top: 0;
}

.footer-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu-column ul li a {
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu-column ul li a:hover {
    color: var(--primary-color) !important;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 13px;
}

.footer-security {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.footer-security span:first-child {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    display: inline-block;
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color) !important;
}

/* ============================================
   Experiences Grid
   ============================================ */
.egyptwonders-experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.experience-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

.experience-image {
    position: relative;
    width: 100%;
    padding-top: 65%;
    /* Aspect Ratio */
    overflow: hidden;
}

.experience-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.experience-card:hover .experience-image img {
    transform: scale(1.1);
}

.experience-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    z-index: 2;
}

.experience-price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.experience-content {
    padding: 20px;
}

.experience-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 1.4;
}

.experience-title a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s;
}

.experience-title a:hover {
    color: #f0d068;
}

.experience-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #999;
    font-size: 13px;
}

.meta-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-rating i {
    color: #ffa500;
}

.rating-val {
    color: #fff;
    font-weight: 600;
}

.experience-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 15px;
}

.meta-group {
    color: #999;
    font-size: 12px;
}

.view-details-btn {
    color: #d4af37;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.view-details-btn:hover {
    gap: 8px;
    color: #fff;
}

.egyptwonders-pagination {
    margin-top: 40px;
    text-align: center;
}

.egyptwonders-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.egyptwonders-pagination .page-numbers.current,
.egyptwonders-pagination .page-numbers:hover {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .egyptwonders-experiences-grid {
        grid-template-columns: repeat(1, 1fr) !important;
        /* Force single column on mobile */
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow);
        padding: 20px;
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 24px;
    }

    .hero-title {
        font-size: 32px;
    }

    .cta-title {
        font-size: 32px;
    }

    .egyptwonders-tours-grid,
    .egyptwonders-destinations-grid {
        grid-template-columns: 1fr;
    }

    .excellence-features-grid {
        grid-template-columns: 1fr !important;
    }

    .legendary-tours-grid {
        grid-template-columns: 1fr !important;
    }

    .tour-packages-grid {
        grid-template-columns: 1fr !important;
    }

    .tour-packages-title {
        font-size: 32px;
    }

    .exclusive-invitation-title {
        font-size: 32px;
    }

    .exclusive-invitation-card {
        padding: 40px 30px !important;
    }

    .legendary-title {
        font-size: 32px;
    }

    .excellence-title {
        font-size: 32px;
    }

    .excellence-description {
        font-size: 16px;
    }

    .egyptwonders-image-text-section {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .egyptwonders-header-section .header-mobile-toggle {
        display: flex !important;
        order: 2;
    }

    .header-section-wrapper {
        flex-wrap: wrap;
        gap: 15px;
    }

    .header-logo-section {
        order: 1;
    }

    .header-navigation {
        order: 4;
        width: 100%;
        display: none;
    }

    .header-navigation.is-open {
        display: block;
    }

    .header-navigation ul {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .header-right-section {
        order: 3;
        gap: 15px;
    }

    .footer-top-section {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
    }

    .excellence-title {
        font-size: 24px;
    }

    .excellence-features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .excellence-feature-card {
        padding: 25px !important;
    }

    .legendary-title {
        font-size: 24px;
    }

    .legendary-tours-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .legendary-header {
        flex-direction: column;
    }

    .legendary-explore-button {
        align-self: flex-start;
    }

    .tour-packages-title {
        font-size: 24px;
    }

    .tour-packages-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .tour-package-content {
        padding: 20px !important;
    }

    .exclusive-invitation-title {
        font-size: 24px;
    }

    .exclusive-invitation-card {
        padding: 30px 20px !important;
    }

    .exclusive-invitation-buttons {
        flex-direction: column;
    }

    .exclusive-invitation-button-primary,
    .exclusive-invitation-button-secondary {
        width: 100%;
    }

    .exclusive-invitation-publications {
        flex-direction: column;
        gap: 15px;
    }

    .header-section-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-navigation {
        order: 2;
        width: 100%;
    }

    .header-right-section {
        order: 3;
        width: 100%;
        justify-content: space-between;
    }

    .footer-top-section {
        grid-template-columns: 1fr !important;
        gap: 30px;
        padding: 40px 0 !important;
    }

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* ============================================
   Elementor Compatibility
   ============================================ */
.elementor-widget-container {
    margin-bottom: 0;
}

.elementor-section {
    position: relative;
}

/* Lazy Loading Removed to prevent visibility issues */

/* ============================================
   Flights Search
   ============================================ */
.egyptwonders-flights-search-wrapper {
    width: 100%;
    margin: 0 auto;
}

.flights-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 60px;
}

.flights-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #aeaeae;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.flights-badge:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    color: #d4af37;
}

.flights-title {
    font-size: 64px;
    color: #d4af37;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
}

.flights-description {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Form Container */
.flights-form-container {
    background: rgba(43, 43, 48, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.flights-form-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.flight-tab {
    background: rgba(255, 255, 255, 0.1);
    color: #aaa;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.flight-tab.active,
.flight-tab:hover {
    background: #d4af37;
    color: #000;
}

.flights-form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: end;
}

/* Form Fields */
.form-group label {
    display: block;
    color: #ccc;
    font-size: 12px;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-icon-wrap {
    position: relative;
}

.input-icon-wrap i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.input-icon-wrap input,
.input-icon-wrap select {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px 12px 40px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s;
}

.input-icon-wrap select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.input-icon-wrap input:focus,
.input-icon-wrap select:focus {
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.15);
}

/* Specific grid spans */
.form-group:nth-child(1),
/* From */
.form-group:nth-child(2) {
    /* To */
    grid-column: span 1;
}

.form-group:nth-child(3),
/* Depart */
.form-group:nth-child(4) {
    /* Return */
    grid-column: span 1;
}

.form-group:nth-child(5) {
    /* Passengers */
    grid-column: span 1;
}

.form-group:nth-child(6) {
    /* Class */
    grid-column: span 2;
}

.form-group:nth-child(7) {
    /* Button */
    grid-column: span 1;
}

.search-flights-btn {
    width: 100%;
    background: #d4af37;
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.search-flights-btn:hover {
    background: #f0d068;
    transform: translateY(-2px);
}

/* Features Grid */
.flights-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.flight-feature-card {
    background: rgba(43, 43, 48, 0.6);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.flight-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon {
    font-size: 24px;
    color: #d4af37;
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    margin: 0 auto 20px;
}

.feature-title {
    color: #d4af37;
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-desc {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .flights-form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-group:nth-child(6) {
        grid-column: span 1;
    }

    .form-group:nth-child(7) {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .flights-form-grid {
        grid-template-columns: 1fr;
    }

    .form-group,
    .form-group:nth-child(6),
    .form-group:nth-child(7) {
        grid-column: span 1;
    }

    .flights-features-grid {
        grid-template-columns: 1fr;
    }

    .flights-title {
        font-size: 36px;
    }
}

/* ============================================
   Legendary Journeys Widget (Fixed)
   ============================================ */
.egyptwonders-legendary-journeys {
    position: relative;
    padding: 80px 20px;
    background: #000;
    /* Fallback */
}

.legendary-glass-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(60, 50, 40, 0.4), rgba(20, 20, 20, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 0;
}

.legendary-content {
    position: relative;
    z-index: 2;
}

/* Typography Overrides */
.legendary-title {
    font-family: 'Cinzel', serif !important;
    color: #d4af37 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.legendary-description {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 16px;
}

/* Card Styling */
.legendary-tour-card {
    background: rgba(30, 25, 20, 0.6) !important;
    /* Semantic Dark Glass */
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legendary-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.5) !important;
}

/* Text Visibility Fixes */
.legendary-tour-title {
    color: #d4af37 !important;
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

.legendary-tour-description {
    color: rgba(255, 255, 255, 0.7) !important;
}

.legendary-tour-meta span,
.legendary-tour-meta i {
    color: rgba(255, 255, 255, 0.7);
}

.legendary-tour-rating span {
    color: #fff !important;
}

/* Icon Fixes */
.fas,
.far,
.fab {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}

/* Badges & Overlays */
.legendary-featured-badge {
    background: #d4af37 !important;
    color: #000 !important;
    font-weight: 700 !important;
}

.legendary-price-overlay {
    background: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.legendary-category-tag {
    background: rgba(0, 0, 0, 0.7) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Fix weird blue selection if any */
::selection {
    background: #d4af37;
    color: #000;
}