/* ═══════════════════════════════════════════════════════════════════════════
   EMV BOOKING SYSTEM — style.css (v5.0)
   Covers: All Tours page, Single Tour Detail page, Homepage sections
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    --emv-red:        #e63946;
    --emv-red-dark:   #c1121f;
    --emv-dark:       #1a1a2e;
    --emv-dark-2:     #111827;
    --emv-text:       #ffffff;
    --emv-text-muted: rgba(255,255,255,0.65);
    --emv-border:     rgba(255,255,255,0.1);
}

/* ─── Shared Loading / Empty / Error States ─────────────────────────────── */

.emv-list-loading { text-align: center; padding: 3rem 1rem; color: var(--emv-text-muted); }
.emv-list-loading .emv-spinner { margin-bottom: 1rem; }
.emv-hp-card-link{ display:block !important;}
.emv-spinner {
    width: 36px; height: 36px; border: 3px solid rgba(230,57,70,0.2); border-top-color: var(--emv-red);
    border-radius: 50%; animation: emvSpin 0.8s linear infinite; margin: 0 auto;
}
@keyframes emvSpin { to { transform: rotate(360deg); } }

.emv-empty-msg {
    text-align: center; color: var(--emv-text-muted); padding: 2rem 1rem; font-size: 0.95rem;
}
.emv-no-results {
    text-align: center; color: var(--emv-text-muted); padding: 3rem 1rem; grid-column: 1 / -1;
}
.emv-error-box {
    background: rgba(230,57,70,0.1); border: 1px solid rgba(230,57,70,0.3); border-radius: 8px;
    padding: 1.5rem; text-align: center; color: #fff; grid-column: 1 / -1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ALL TOURS PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.emv-tours-wrapper { max-width: 1280px; margin: 0 auto; padding: 1.5rem; }

/* ─── Filter Bar ─────────────────────────────────────────────────────────── */
.emv-filter-bar {
    background: var(--emv-dark);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.emv-filter-inner { display: flex; gap: 1rem; flex-wrap: wrap; align-items: flex-end; }
.emv-filter-group { display: flex; flex-direction: column; gap: 0.4rem; flex: 1 1 180px; min-width: 160px; }
.emv-filter-group label { color: var(--emv-text-muted); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.emv-filter-group input,
.emv-filter-group select {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--emv-border);
    color: #fff;
    padding: 0.65rem 0.85rem;
    border-radius: 6px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.emv-filter-group input:focus,
.emv-filter-group select:focus { border-color: var(--emv-red); background: rgba(255,255,255,0.1); }
.emv-filter-group select option { background: var(--emv-dark); color: #fff; }
.emv-filter-group input::placeholder { color: rgba(255,255,255,0.35); }

.emv-filter-btn-group { flex: 0 0 auto; flex-direction: row; gap: 0.6rem; }
.emv-search-btn, .emv-clear-btn {
    border: none; border-radius: 6px; padding: 0.65rem 1.4rem; font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.04em; cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem;
    text-transform: uppercase; transition: all 0.2s; white-space: nowrap;
}
.emv-search-btn { background: var(--emv-red); color: #fff; }
.emv-search-btn:hover { background: var(--emv-red-dark); }
.emv-clear-btn { background: transparent; color: var(--emv-text-muted); border: 1px solid var(--emv-border); }
.emv-clear-btn:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

/* ─── Results Header ─────────────────────────────────────────────────────── */
.emv-results-header {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
    margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--emv-border);
}
.emv-results-count { color: #fff; font-size: 1.05rem; font-weight: 700; }
.emv-results-count span { color: var(--emv-red); }
.emv-sort-group { display: flex; align-items: center; gap: 0.5rem; color: var(--emv-text-muted); font-size: 0.85rem; }
.emv-sort-btn {
    background: transparent; border: 1px solid var(--emv-border); color: var(--emv-text-muted);
    padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.emv-sort-btn:hover { border-color: rgba(255,255,255,0.3); color: #fff; }
.emv-sort-btn.active { background: var(--emv-red); border-color: var(--emv-red); color: #fff; }

/* ─── Tour Cards Grid ─────────────────────────────────────────────────────── */
.emv-tour-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.5rem;
}

.emv-tour-card {
    background: var(--emv-dark);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.emv-tour-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.35); }

.emv-tour-card-img-wrap { position: relative; aspect-ratio: 4 / 2.6; overflow: hidden; background: #222; }
.emv-tour-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.emv-tour-card:hover .emv-tour-card-img { transform: scale(1.05); }
.emv-tour-card-img.emv-img-fallback { object-fit: contain; opacity: 0.5; }

.emv-tour-days-tag {
    position: absolute; top: 12px; left: 12px;
    background: rgba(230,57,70,0.95); color: #fff; font-size: 0.75rem; font-weight: 700;
    padding: 0.3rem 0.75rem; border-radius: 20px; letter-spacing: 0.03em;
}

/* Brochure button on card */
.emv-tour-brochure-btn {
    position: absolute; top: 12px; right: 12px;
    background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
    color: #fff; font-size: 0.72rem; font-weight: 700; text-decoration: none;
    padding: 0.3rem 0.7rem; border-radius: 20px; letter-spacing: 0.02em;
    display: inline-flex; align-items: center; gap: 0.35rem;
    border: 1px solid rgba(255,255,255,0.15); transition: background 0.2s;
}
.emv-tour-brochure-btn:hover { background: var(--emv-red); border-color: var(--emv-red); }

.emv-tour-card-body { padding: 1.1rem 1.25rem 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.emv-tour-card-title { color: #fff; font-size: 1.02rem; font-weight: 700; line-height: 1.35; margin: 0; }
.emv-tour-card-meta { color: rgba(255,255,255,0.35); font-size: 0.75rem; }

.emv-tour-card-footer {
    margin-top: auto; padding-top: 0.75rem; border-top: 1px solid var(--emv-border);
    display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; flex-wrap: wrap;
}
.emv-tour-card-price { display: flex; flex-direction: column; }
.emv-price-label { color: rgba(255,255,255,0.4); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; }
.emv-price-value { color: var(--emv-red); font-size: 1.1rem; font-weight: 800; }
.emv-price-na { color: rgba(255,255,255,0.4); font-size: 0.85rem; font-weight: 600; }

.emv-price-skel {
    display: inline-block; width: 70px; height: 16px; border-radius: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.06) 25%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.06) 75%);
    background-size: 200% 100%; animation: emvShimmer 1.4s infinite;
}
@keyframes emvShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.emv-tour-card-actions { display: flex; gap: 0.5rem; }
.emv-card-view-btn, .emv-card-book-btn {
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
    padding: 0.55rem 1rem; border-radius: 5px; cursor: pointer; transition: all 0.2s; white-space: nowrap;
    text-decoration: none; display: inline-flex; align-items: center; border: none;
}
.emv-card-view-btn { background: transparent; color: var(--emv-text-muted); border: 1px solid var(--emv-border); }
.emv-card-view-btn:hover { color: #fff; border-color: rgba(255,255,255,0.35); }
.emv-card-book-btn { background: var(--emv-red); color: #fff; }
.emv-card-book-btn:hover { background: var(--emv-red-dark); }

/* ─── Load More ──────────────────────────────────────────────────────────── */
.emv-load-more-btn {
    background: transparent; border: 2px solid var(--emv-red); color: var(--emv-red);
    padding: 0.85rem 2.5rem; border-radius: 6px; font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; transition: all 0.2s;
}
.emv-load-more-btn:hover { background: var(--emv-red); color: #fff; }


/* ═══════════════════════════════════════════════════════════════════════════
   SINGLE TOUR DETAIL PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.emv-detail-wrapper { max-width: 1280px; margin: 0 auto; }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.emv-detail-hero {
    position: relative;
    min-height: 420px;
    background-color: #222;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: background-image 0.4s;
}
.emv-detail-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
}
.emv-detail-hero-content { position: relative; z-index: 1; padding: 2.5rem 2rem; width: 100%; max-width: 1280px; margin: 0 auto; }

.emv-detail-breadcrumb { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 1rem; display: flex; gap: 0.5rem; align-items: center; }
.emv-detail-breadcrumb a { color: rgba(255,255,255,0.8); text-decoration: none; }
.emv-detail-breadcrumb a:hover { color: var(--emv-red); }

.emv-detail-title { color: #fff; font-size: 2.2rem; font-weight: 800; margin: 0 0 1rem; letter-spacing: 0.02em; line-height: 1.2; }

.emv-detail-meta-bar { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.emv-meta-pill {
    background: rgba(255,255,255,0.1); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff; font-size: 0.85rem; font-weight: 600;
    padding: 0.5rem 1rem; border-radius: 20px;
    display: inline-flex; align-items: center; gap: 0.5rem;
}
.emv-meta-pill svg { color: var(--emv-red); flex-shrink: 0; }

/* ─── Sticky Tabs ────────────────────────────────────────────────────────── */
.emv-detail-tabs-sticky {
    position: sticky; top: 0; z-index: 50;
    background: var(--emv-dark-2);
    border-bottom: 1px solid var(--emv-border);
}
.emv-detail-tabs {
    max-width: 1280px; margin: 0 auto; display: flex; gap: 0.5rem;
    overflow-x: auto; padding: 0 2rem; scrollbar-width: none;
}
.emv-detail-tabs::-webkit-scrollbar { display: none; }
.emv-tab-btn {
    background: transparent; border: none; border-bottom: 3px solid transparent;
    color: var(--emv-text-muted); font-size: 0.9rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.04em; padding: 1.1rem 1.2rem; cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.emv-tab-btn:hover { color: #fff; }
.emv-tab-btn.active { color: var(--emv-red); border-bottom-color: var(--emv-red); }

/* ─── Body Layout ────────────────────────────────────────────────────────── */
.emv-detail-body {
    display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem;
    max-width: 1280px; margin: 0 auto; padding: 2.5rem 2rem;
}
.emv-detail-main { min-width: 0; }

@media (max-width: 992px) {
    .emv-detail-body { grid-template-columns: 1fr; }
}

/* ─── Feature Icons ──────────────────────────────────────────────────────── */
.emv-feature-icons {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
    background: var(--emv-dark); border-radius: 10px; padding: 1.5rem; margin-bottom: 2rem;
}
.emv-feature-item {
    display: flex; flex-direction: column; align-items: center; gap: 0.6rem; text-align: center;
    color: var(--emv-text-muted); font-size: 0.75rem; font-weight: 600; line-height: 1.4;
}
@media (max-width: 700px) {
    .emv-feature-icons { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Tab Panels ─────────────────────────────────────────────────────────── */
.emv-tab-panel { display: none; }
.emv-tab-panel.active { display: block; animation: emvTabFadeIn 0.3s ease; }
@keyframes emvTabFadeIn { from { opacity: 0; } to { opacity: 1; } }

.emv-section-title {
    color: #fff; font-size: 1.4rem; font-weight: 800; letter-spacing: 0.05em;
    margin: 0 0 1.5rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--emv-red); display: inline-block;
}

/* ─── Itinerary Timeline ─────────────────────────────────────────────────── */
.emv-itinerary-timeline { position: relative; padding-left: 2.5rem; }
.emv-itinerary-timeline::before {
    content: ''; position: absolute; left: 14px; top: 8px; bottom: 8px; width: 2px; background: var(--emv-border);
}
.emv-itinerary-day { position: relative; padding-bottom: 1.75rem; }
.emv-itinerary-day:last-child { padding-bottom: 0; }
.emv-itinerary-day-marker {
    position: absolute; left: -2.5rem; top: 0; width: 30px; height: 30px; border-radius: 50%;
    background: var(--emv-red); display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: 0.8rem; box-shadow: 0 0 0 4px var(--emv-dark-2);
}
.emv-itinerary-day-content h4 { color: #fff; margin: 0 0 0.4rem; font-size: 1.05rem; font-weight: 700; }
.emv-itinerary-country { color: rgba(255,255,255,0.4); font-weight: 500; font-size: 0.85rem; }
.emv-itinerary-day-content p { color: var(--emv-text-muted); margin: 0; line-height: 1.6; font-size: 0.92rem; }

/* ─── Includes Grid ──────────────────────────────────────────────────────── */
.emv-includes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
.emv-include-item {
    display: flex; align-items: center; gap: 0.75rem; color: var(--emv-text-muted); font-size: 0.92rem;
    background: var(--emv-dark); border-radius: 8px; padding: 0.85rem 1rem;
}
.emv-include-item svg { flex-shrink: 0; }
@media (max-width: 600px) { .emv-includes-grid { grid-template-columns: 1fr; } }

/* ─── Hotels Tab ─────────────────────────────────────────────────────────── */
.emv-hotels-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.emv-hotel-card { background: var(--emv-dark); border-radius: 10px; overflow: hidden; }
.emv-hotel-img-wrap { aspect-ratio: 4/2.6; background: #222; overflow: hidden; }
.emv-hotel-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.emv-hotel-body { padding: 1rem 1.1rem; }
.emv-hotel-body h4 { color: #fff; margin: 0 0 0.4rem; font-size: 0.98rem; font-weight: 700; }
.emv-hotel-city,.emv-hotel-address,.emv-hotel-phone,.emv-hotel-email,.emv-hotel-city,
.emv-hotel-nights { color: var(--emv-text-muted); font-size: 0.85rem; margin: 0.2rem 0; }
.emv-hotel-stars { color: #f5b400; font-size: 0.9rem; margin: 0.2rem 0; letter-spacing: 0.1em; }
.emv-hotel-nights { color: var(--emv-text-muted); font-size: 0.8rem; margin: 0.2rem 0; }
.emv-hotel-note { color: rgba(255,255,255,0.35); font-size: 0.75rem; font-style: italic; margin-top: 0.4rem; }

/* ─── Gallery Tab ────────────────────────────────────────────────────────── */
.emv-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.emv-gallery-item { aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; cursor: pointer; background: #222; }
.emv-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.emv-gallery-item:hover img { transform: scale(1.06); }

.emv-lightbox-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 999999;
    display: flex; align-items: center; justify-content: center; padding: 2rem;
}
.emv-lightbox-img { max-width: 100%; max-height: 90vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.emv-lightbox-close {
    position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(255,255,255,0.1); border: none; color: #fff;
    width: 40px; height: 40px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; transition: background 0.2s;
}
.emv-lightbox-close:hover { background: var(--emv-red); }

/* ─── Dates Tab ──────────────────────────────────────────────────────────── */
.emv-dates-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.9rem; }
.emv-date-card {
    background: var(--emv-dark); border-radius: 8px; padding: 1rem; text-align: center;
    border: 1px solid var(--emv-border);
}
.emv-date-value { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 0.35rem; }
.emv-date-avail { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; }
.emv-date-available .emv-date-avail { color: #2ecc71; }
.emv-date-limited   .emv-date-avail { color: #f39c12; }
.emv-date-full      .emv-date-avail { color: #e63946; }
.emv-date-full { opacity: 0.5; }

/* ─── Sidebar ────────────────────────────────────────────────────────────── */
.emv-detail-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.emv-price-card {
    background: linear-gradient(135deg, var(--emv-red) 0%, var(--emv-red-dark) 100%);
    border-radius: 12px; padding: 1.75rem; text-align: center; color: #fff;
    position: sticky; top: 90px;
}
.emv-price-from { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.85; }
.emv-price-amount { font-size: 2.4rem; font-weight: 800; margin: 0.25rem 0; }
.emv-price-per { font-size: 0.8rem; opacity: 0.85; margin-bottom: 1.25rem; }

.emv-quote-btn, .emv-brochure-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    width: 100%; padding: 0.85rem 1.5rem; border-radius: 6px; font-size: 0.9rem; font-weight: 800;
    letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: all 0.2s; border: none;
}
.emv-quote-btn { background: #fff; color: var(--emv-red); }
.emv-quote-btn:hover { background: #1a1a2e; color: #fff; }
button.emv-quote-btn { width: 100%; }

.emv-brochure-btn {
    background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.35); margin-top: 0.75rem;
}
.emv-brochure-btn:hover { background: rgba(255,255,255,0.3); }

/* ─── Summary Card ───────────────────────────────────────────────────────── */
.emv-summary-card { background: var(--emv-dark); border-radius: 12px; padding: 1.5rem; }
.emv-summary-card h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.1em; margin: 0 0 1rem; text-transform: uppercase; }
.emv-summary-row {
    display: flex; align-items: center; gap: 0.6rem; padding: 0.65rem 0; border-bottom: 1px solid var(--emv-border);
    font-size: 0.88rem; color: var(--emv-text-muted);
}
.emv-summary-row:last-child { border-bottom: none; }
.emv-summary-row svg { flex-shrink: 0; }
.emv-sum-label { font-weight: 600; color: rgba(255,255,255,0.5); }
.emv-summary-row span:last-child { margin-left: auto; color: #fff; font-weight: 600; text-align: right; }

/* ─── Visiting Cities Card ───────────────────────────────────────────────── */
.emv-cities-card { background: var(--emv-dark); border-radius: 12px; padding: 1.5rem; }
.emv-cities-card h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.1em; margin: 0 0 1rem; text-transform: uppercase; }
#emv-visiting-cities { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.emv-city-tag {
    background: rgba(230,57,70,0.15); color: var(--emv-red); border: 1px solid rgba(230,57,70,0.3);
    font-size: 0.78rem; font-weight: 700; padding: 0.35rem 0.85rem; border-radius: 20px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE SECTIONS
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Search Bar ─────────────────────────────────────────────────────────── */
.emv-hp-search {
    background: var(--emv-dark); border-radius: 14px; padding: 1.75rem;
    max-width: 1280px; margin: 0 auto 2.5rem; box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.emv-hp-search-inner { display: flex; gap: 1rem; flex-wrap: wrap; align-items: flex-end; }
.emv-hp-field { display: flex; flex-direction: column; gap: 0.4rem; flex: 1 1 180px; min-width: 160px; }
.emv-hp-field label {
    color: var(--emv-text-muted); font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.04em; display: flex; align-items: center; gap: 0.4rem;
}
.emv-hp-field label svg { color: var(--emv-red); }
.emv-hp-field input, .emv-hp-field select {
    background: rgba(255,255,255,0.06); border: 1px solid var(--emv-border); color: #fff;
    padding: 0.7rem 0.9rem; border-radius: 6px; font-size: 0.9rem; outline: none; transition: border-color 0.2s;
}
.emv-hp-field input:focus, .emv-hp-field select:focus { border-color: var(--emv-red); }
.emv-hp-field select option { background: var(--emv-dark); color: #fff; }
.emv-hp-field input::placeholder { color: rgba(255,255,255,0.35); }

.emv-hp-field--btn { flex: 0 0 auto; }
.emv-hp-search-btn {
    background: var(--emv-red); color: #fff; border: none; padding: 0.7rem 2rem; border-radius: 6px;
    font-size: 0.85rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer;
    display: inline-flex; align-items: center; gap: 0.5rem; transition: background 0.2s; white-space: nowrap;
}
.emv-hp-search-btn:hover { background: var(--emv-red-dark); }

.emv-hp-quick-links {
    margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--emv-border);
    display: flex; gap: 0.85rem; flex-wrap: wrap; align-items: center; font-size: 0.85rem; color: var(--emv-text-muted);
}
.emv-hp-quick-links a {
    color: #fff; text-decoration: none; background: rgba(255,255,255,0.06); padding: 0.35rem 0.9rem;
    border-radius: 20px; font-weight: 600; transition: background 0.2s;
}
.emv-hp-quick-links a:hover { background: var(--emv-red); }

/* ─── Section Header ─────────────────────────────────────────────────────── */
.emv-hp-section { max-width: 1280px; margin: 0 auto 3rem; padding: 0 1.5rem; }
.emv-hp-section-header {
    display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem;
}
.emv-hp-section-header h2 { color: #fff; font-size: 1.7rem; font-weight: 800; margin: 0; letter-spacing: 0.02em; }
.emv-hp-view-all { color: var(--emv-red); text-decoration: none; font-weight: 700; font-size: 0.9rem; white-space: nowrap; }
.emv-hp-view-all:hover { color: var(--emv-red-dark); text-decoration: underline; }

/* ─── Homepage Card Grid ─────────────────────────────────────────────────── */
.emv-hp-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }

.emv-hp-card {
    background: var(--emv-dark); border-radius: 12px; overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2); transition: transform 0.2s, box-shadow 0.2s;
}
.emv-hp-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.35); }

.emv-hp-card-img-wrap { position: relative; aspect-ratio: 4/2.6; background: #222; overflow: hidden; }
.emv-hp-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.emv-hp-card:hover .emv-hp-card-img { transform: scale(1.05); }

.emv-hp-days-tag {
    position: absolute; top: 10px; left: 10px; background: rgba(230,57,70,0.95); color: #fff;
    font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.65rem; border-radius: 16px;
}

.emv-hp-card-body { padding: 1rem 1.1rem 1.1rem; }
.emv-hp-card-body h3 { color: #fff; font-size: 0.95rem; font-weight: 700; margin: 0 0 0.75rem; line-height: 1.35; min-height: 2.6em; }
.emv-hp-card-footer { display: flex; justify-content: space-between; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.emv-hp-price { color: var(--emv-red); font-weight: 800; font-size: 0.95rem; }
.emv-hp-card-link { color: var(--emv-text-muted); text-decoration: none; font-size: 0.8rem; font-weight: 700; transition: color 0.2s; white-space: nowrap; }
.emv-hp-card-link:hover { color: #fff; }

/* ─── Skeleton Cards ──────────────────────────────────────────────────────── */
.emv-hp-card-skeleton { pointer-events: none; }
.emv-skel-img {
    aspect-ratio: 4/2.6;
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.04) 75%);
    background-size: 200% 100%; animation: emvShimmer 1.4s infinite;
}
.emv-skel-body { padding: 1rem 1.1rem 1.1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.emv-skel-line {
    height: 12px; border-radius: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.04) 75%);
    background-size: 200% 100%; animation: emvShimmer 1.4s infinite;
}
.emv-skel-title { width: 85%; height: 16px; }
.emv-skel-sub   { width: 60%; }
.emv-skel-price { width: 40%; margin-top: 0.4rem; }


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .emv-tours-wrapper, .emv-hp-section, .emv-detail-body, .emv-detail-hero-content, .emv-detail-tabs { padding-left: 1rem; padding-right: 1rem; }
    .emv-filter-inner, .emv-hp-search-inner { flex-direction: column; align-items: stretch; }
    .emv-filter-btn-group { flex-direction: row; }
    .emv-detail-title { font-size: 1.5rem; }
    .emv-price-card { position: static; }
    .emv-hp-section-header h2 { font-size: 1.35rem; }
}
