/*
 * ═══════════════════════════════════════════════════════════════════════════════
 * Lavisa Destinations Theme — ENHANCED SINGLE PAGE CARD SECTIONS (E16)
 * ═══════════════════════════════════════════════════════════════════════════════
 *
 * @file        assets/css/ldt-enhanced-sections-single-cards.css
 * @package     Lavisa_Destinations_Theme
 * @since       2.9.17  (E16 — Visual Enhancement Roadmap v2 — Stage 6 middle)
 * @depends     ldt-tokens-enhanced.css                  (E1)
 *              ldt-enhanced-base.css                    (E2)
 *              ldt-enhanced-animations.css              (E3 — keyframes:
 *                                                            ldt-fade-up,
 *                                                            ldt-pulse-glow)
 *              ldt-enhanced-sections-single.css         (E15 — section primitives)
 *
 *   Polishes the listing + card sections inside single destination pages —
 *   the surfaces a visitor scrolls through after the overview to see what
 *   to do, eat, where to stay, etc.:
 *
 *     section-attractions.php  + section-attraction-card.php
 *     section-dining.php       + section-dining-card.php
 *     section-hotels.php       + section-hotel-card.php
 *     section-nightlife.php    + section-nightlife-card.php
 *     section-shopping.php     + section-shopping-card.php
 *     section-services.php     + section-service-card.php
 *     section-children.php     + section-child-card.php
 *
 *   The theme uses two card class systems:
 *     OLD (list-embedded): .ldt-attraction-card, .ldt-dining-card,
 *                          .ldt-hotel-card, .ldt-nightlife-card,
 *                          .ldt-shopping-card, .ldt-child-card
 *     NEW (compact reusable): .ldt-ac-card, .ldt-dc, .ldt-hc, .ldt-nc
 *
 *   Both are polished here, sharing the same hover-lift + image-zoom +
 *   accent-border vocabulary established in E12-E14.
 *
 *   PURE CSS LAYER — no PHP partial is touched. Same approach as E4-E15.
 *
 * ═══════════════════════════════════════════════════════════════════════════════
 */


/* ═══════════════════════════════════════════════════════════════════════════════
 * 1. SHARED LIST SECTION HEADERS
 *
 * The listing sections (.ldt-attractions, .ldt-dining, .ldt-hotels, etc.)
 * all use a parallel header pattern — title + count + filters strip. We
 * unify the polish via comma-grouped selectors. The .ldt-section__title is
 * already gradient text from E9.
 * ═══════════════════════════════════════════════════════════════════════════════ */

/* Count pill — shown next to title (e.g., "Top Attractions in Paris (24)") */
body .ldt-attractions__count,
body .ldt-dining__count,
body .ldt-hotels__count,
body .ldt-nightlife__count,
body .ldt-shopping__count,
body .ldt-services__count,
body .ldt-children__count {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    margin-left: 10px;
    background: rgba(255, 140, 0, 0.16);
    color: var(--ldt-accent-dark, #e07a00);
    border-radius: var(--ldt-radius-pill, 9999px);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    vertical-align: middle;
}

[dir="rtl"] body .ldt-attractions__count,
[dir="rtl"] body .ldt-dining__count,
[dir="rtl"] body .ldt-hotels__count,
[dir="rtl"] body .ldt-nightlife__count,
[dir="rtl"] body .ldt-shopping__count,
[dir="rtl"] body .ldt-services__count,
[dir="rtl"] body .ldt-children__count,
.ldt-rtl body .ldt-attractions__count,
.ldt-rtl body .ldt-dining__count,
.ldt-rtl body .ldt-hotels__count,
.ldt-rtl body .ldt-nightlife__count,
.ldt-rtl body .ldt-shopping__count,
.ldt-rtl body .ldt-services__count,
.ldt-rtl body .ldt-children__count {
    margin-left: 0;
    margin-right: 10px;
}

/* Filters strip — polished segmented filter buttons */
body .ldt-attractions__filters,
body .ldt-dining__filters,
body .ldt-hotels__filters,
body .ldt-nightlife__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 12px;
    margin: 14px 0 18px;
    background: var(--ldt-glass-light, rgba(255, 255, 255, 0.92));
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-input, 0.75rem);
    box-shadow: 0 2px 8px rgba(0, 53, 128, 0.04);
}

body .ldt-attractions__filters button,
body .ldt-dining__filters button,
body .ldt-hotels__filters button,
body .ldt-nightlife__filters button {
    padding: 6px 14px !important;
    background: transparent !important;
    border: 1px solid rgba(0, 53, 128, 0.10) !important;
    border-radius: var(--ldt-radius-pill, 9999px) !important;
    color: var(--ldt-gray-600, #64748b) !important;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition:
        background 200ms var(--ldt-ease-portal, ease),
        color 200ms var(--ldt-ease-portal, ease),
        border-color 200ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-attractions__filters button:hover:not(.is-active),
    body .ldt-dining__filters button:hover:not(.is-active),
    body .ldt-hotels__filters button:hover:not(.is-active),
    body .ldt-nightlife__filters button:hover:not(.is-active) {
        background: rgba(255, 140, 0, 0.06) !important;
        color: var(--ldt-accent-dark, #e07a00) !important;
        border-color: rgba(255, 140, 0, 0.30) !important;
    }
}

body .ldt-attractions__filters button.is-active,
body .ldt-dining__filters button.is-active,
body .ldt-hotels__filters button.is-active,
body .ldt-nightlife__filters button.is-active {
    background: var(--ldt-gradient-accent,
                linear-gradient(135deg, #ff8c00 0%, #e07a00 100%)) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: var(--ldt-shadow-accent-soft,
                0 2px 8px rgba(255, 140, 0, 0.30));
}

/* Grid layouts — consistent gap */
body .ldt-attractions__grid,
body .ldt-dining__grid,
body .ldt-nightlife__grid,
body .ldt-shopping__grid,
body .ldt-services__grid,
body .ldt-children__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 2. SHARED CARD BASE (.ldt-card class on all old-style cards)
 *
 * .ldt-card is a shared utility class on every old-style card. We give all
 * of them a consistent base — white surface with brand-soft border, soft
 * shadow at rest, and lift+accent-border on hover.
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-card {
    background: #ffffff;
    border-radius: var(--ldt-radius-card, 1.25rem);
    overflow: hidden;
    border: 1px solid rgba(0, 53, 128, 0.04);
    box-shadow: 0 4px 14px rgba(0, 53, 128, 0.06);
    transition:
        transform 350ms var(--ldt-ease-portal, ease),
        box-shadow 350ms var(--ldt-ease-portal, ease),
        border-color 350ms var(--ldt-ease-portal, ease);
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-card:hover {
        transform: translateY(-6px);
        border-color: rgba(255, 140, 0, 0.22);
        box-shadow:
            0 18px 36px -8px rgba(0, 53, 128, 0.20),
            0 0 0 1px rgba(255, 140, 0, 0.08);
    }
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 3. ATTRACTION CARDS — old style (.ldt-attraction-card) + new (.ldt-ac-card)
 * ═══════════════════════════════════════════════════════════════════════════════ */

/* OLD-STYLE attraction-card */
body .ldt-attraction-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

body .ldt-attraction-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--ldt-ease-portal, ease);
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-attraction-card:hover .ldt-attraction-card__img {
        transform: scale(1.08);
    }
}

/* Category badge — glass-light pill on image */
body .ldt-attraction-card__cat-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--ldt-radius-pill, 9999px);
    color: var(--ldt-accent-dark, #e07a00);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

[dir="rtl"] body .ldt-attraction-card__cat-badge,
.ldt-rtl body .ldt-attraction-card__cat-badge {
    left: auto;
    right: 12px;
}

/* Family-friendly badge — bouncing emoji circle */
body .ldt-attraction-card__family-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.60);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    line-height: 1;
    z-index: 1;
}

[dir="rtl"] body .ldt-attraction-card__family-badge,
.ldt-rtl body .ldt-attraction-card__family-badge {
    right: auto;
    left: 12px;
}

body .ldt-attraction-card__body {
    padding: 16px 18px;
}

body .ldt-attraction-card__name {
    color: var(--ldt-dark, #1e293b);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 6px;
    transition: color 250ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-attraction-card:hover .ldt-attraction-card__name {
        color: var(--ldt-primary, #003580);
    }
}

body .ldt-attraction-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--ldt-gray-600, #64748b);
    font-size: 13px;
    font-weight: 500;
}

body .ldt-attraction-card__rating {
    color: var(--ldt-accent, #ff8c00);
    font-weight: 700;
    filter: drop-shadow(0 1px 1px rgba(255, 140, 0, 0.30));
}

body .ldt-attraction-card--hidden {
    display: none;
}


/* NEW-STYLE compact attraction card (.ldt-ac-card) */
body .ldt-ac-card {
    background: #ffffff;
    border-radius: var(--ldt-radius-card, 1.25rem);
    overflow: hidden;
    border: 1px solid rgba(0, 53, 128, 0.04);
    box-shadow: 0 4px 14px rgba(0, 53, 128, 0.06);
    transition:
        transform 350ms var(--ldt-ease-portal, ease),
        box-shadow 350ms var(--ldt-ease-portal, ease),
        border-color 350ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-ac-card:hover {
        transform: translateY(-6px);
        border-color: rgba(255, 140, 0, 0.22);
        box-shadow:
            0 18px 36px -8px rgba(0, 53, 128, 0.20),
            0 0 0 1px rgba(255, 140, 0, 0.08);
    }
}

body .ldt-ac-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: transparent;
    border: none;
    width: 100%;
    text-align: inherit;
    padding: 0;
    cursor: pointer;
}

body .ldt-ac-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

body .ldt-ac-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--ldt-ease-portal, ease);
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-ac-card:hover .ldt-ac-card__img {
        transform: scale(1.08);
    }
}

body .ldt-ac-card__img--placeholder {
    background: linear-gradient(
        135deg,
        rgba(0, 53, 128, 0.16) 0%,
        rgba(255, 140, 0, 0.16) 100%
    );
}

body .ldt-ac-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--ldt-radius-pill, 9999px);
    color: var(--ldt-accent-dark, #e07a00);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

[dir="rtl"] body .ldt-ac-card__badge,
.ldt-rtl body .ldt-ac-card__badge {
    left: auto;
    right: 12px;
}

body .ldt-ac-card__family {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    border-radius: 50%;
    color: var(--ldt-accent, #ff8c00);
    z-index: 1;
}

[dir="rtl"] body .ldt-ac-card__family,
.ldt-rtl body .ldt-ac-card__family {
    right: auto;
    left: 12px;
}

body .ldt-ac-card__body {
    padding: 16px 18px;
}

body .ldt-ac-card__name {
    color: var(--ldt-dark, #1e293b);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 6px;
    transition: color 250ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-ac-card:hover .ldt-ac-card__name {
        color: var(--ldt-primary, #003580);
    }
}

body .ldt-ac-card__desc {
    color: var(--ldt-gray-600, #64748b);
    font-size: 13px;
    line-height: 1.55;
    margin: 0 0 10px;
}

body .ldt-ac-card__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 53, 128, 0.06);
}

body .ldt-ac-card__rating,
body .ldt-ac-card__duration,
body .ldt-ac-card__price {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
}

body .ldt-ac-card__rating {
    color: var(--ldt-accent-dark, #e07a00);
}

body .ldt-ac-card__rating-icon {
    color: var(--ldt-accent, #ff8c00);
    filter: drop-shadow(0 1px 1px rgba(255, 140, 0, 0.30));
}

body .ldt-ac-card__duration {
    color: var(--ldt-gray-600, #64748b);
}

body .ldt-ac-card__price {
    color: var(--ldt-primary, #003580);
    font-weight: 800;
    margin-left: auto;
}

[dir="rtl"] body .ldt-ac-card__price,
.ldt-rtl body .ldt-ac-card__price {
    margin-left: 0;
    margin-right: auto;
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 4. DINING CARDS — old (.ldt-dining-card) + new (.ldt-dc)
 * ═══════════════════════════════════════════════════════════════════════════════ */

/* OLD-STYLE dining-card */
body .ldt-dining-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

body .ldt-dining-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--ldt-ease-portal, ease);
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-dining-card:hover .ldt-dining-card__img {
        transform: scale(1.08);
    }
}

/* Type badge — accent gradient (food = appetite) */
body .ldt-dining-card__type-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: var(--ldt-gradient-accent,
                linear-gradient(135deg, #ff8c00 0%, #e07a00 100%));
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: var(--ldt-radius-pill, 9999px);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: var(--ldt-shadow-accent-soft, 0 2px 8px rgba(255, 140, 0, 0.30));
    z-index: 1;
}

[dir="rtl"] body .ldt-dining-card__type-badge,
.ldt-rtl body .ldt-dining-card__type-badge {
    left: auto;
    right: 12px;
}

/* Price range pill — glass white */
body .ldt-dining-card__price {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    border-radius: var(--ldt-radius-pill, 9999px);
    color: var(--ldt-primary, #003580);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    z-index: 1;
}

[dir="rtl"] body .ldt-dining-card__price,
.ldt-rtl body .ldt-dining-card__price {
    right: auto;
    left: 12px;
}

/* NEW-STYLE compact dining card (.ldt-dc) */
body .ldt-dc {
    background: #ffffff;
    border-radius: var(--ldt-radius-card, 1.25rem);
    overflow: hidden;
    border: 1px solid rgba(0, 53, 128, 0.04);
    box-shadow: 0 4px 14px rgba(0, 53, 128, 0.06);
    transition:
        transform 350ms var(--ldt-ease-portal, ease),
        box-shadow 350ms var(--ldt-ease-portal, ease),
        border-color 350ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-dc:hover {
        transform: translateY(-6px);
        border-color: rgba(255, 140, 0, 0.22);
        box-shadow:
            0 18px 36px -8px rgba(0, 53, 128, 0.20),
            0 0 0 1px rgba(255, 140, 0, 0.08);
    }
}

body .ldt-dc__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

body .ldt-dc__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

body .ldt-dc__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--ldt-ease-portal, ease);
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-dc:hover .ldt-dc__img {
        transform: scale(1.08);
    }
}

body .ldt-dc__img--placeholder {
    background: linear-gradient(
        135deg,
        rgba(255, 140, 0, 0.16) 0%,
        rgba(0, 53, 128, 0.16) 100%
    );
}

body .ldt-dc__cuisine {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: var(--ldt-gradient-accent,
                linear-gradient(135deg, #ff8c00 0%, #e07a00 100%));
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: var(--ldt-radius-pill, 9999px);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: var(--ldt-shadow-accent-soft, 0 2px 8px rgba(255, 140, 0, 0.30));
    z-index: 1;
}

[dir="rtl"] body .ldt-dc__cuisine,
.ldt-rtl body .ldt-dc__cuisine {
    left: auto;
    right: 12px;
}

body .ldt-dc__body {
    padding: 16px 18px;
}

body .ldt-dc__name {
    color: var(--ldt-dark, #1e293b);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 4px;
    transition: color 250ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-dc:hover .ldt-dc__name {
        color: var(--ldt-accent-dark, #e07a00);
    }
}

body .ldt-dc__area {
    color: var(--ldt-gray-500, #94a3b8);
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 10px;
}

body .ldt-dc__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 53, 128, 0.06);
}

body .ldt-dc__rating {
    color: var(--ldt-accent-dark, #e07a00);
    font-weight: 700;
    font-size: 13px;
}

body .ldt-dc__price {
    color: var(--ldt-primary, #003580);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.04em;
}

/* Dietary tags row */
body .ldt-dc__dietary {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 4px;
}

body .ldt-dc__dietary-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background: rgba(34, 197, 94, 0.10);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: var(--ldt-radius-pill, 9999px);
    color: rgb(21, 128, 61);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 5. HOTEL CARDS — old (.ldt-hotel-card) + new (.ldt-hc)
 * ═══════════════════════════════════════════════════════════════════════════════ */

/* OLD-STYLE hotel-card */
body .ldt-hotel-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

body .ldt-hotel-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--ldt-ease-portal, ease);
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-hotel-card:hover .ldt-hotel-card__img {
        transform: scale(1.08);
    }
}

/* Hotels carousel layout */
body .ldt-hotels__carousel {
    position: relative;
}

body .ldt-hotels__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 140, 0, 0.30) transparent;
    padding-bottom: 8px;
}

body .ldt-hotels__track > * {
    flex: 0 0 320px;
    scroll-snap-align: start;
}

body .ldt-hotels__track::-webkit-scrollbar {
    height: 6px;
}

body .ldt-hotels__track::-webkit-scrollbar-thumb {
    background: rgba(255, 140, 0, 0.30);
    border-radius: 3px;
}

body .ldt-hotels__track::-webkit-scrollbar-thumb:hover {
    background: var(--ldt-accent, #ff8c00);
}


/* NEW-STYLE compact hotel card (.ldt-hc) */
body .ldt-hc {
    background: #ffffff;
    border-radius: var(--ldt-radius-card, 1.25rem);
    overflow: hidden;
    border: 1px solid rgba(0, 53, 128, 0.04);
    box-shadow: 0 4px 14px rgba(0, 53, 128, 0.06);
    transition:
        transform 350ms var(--ldt-ease-portal, ease),
        box-shadow 350ms var(--ldt-ease-portal, ease),
        border-color 350ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-hc:hover {
        transform: translateY(-6px);
        border-color: rgba(255, 140, 0, 0.22);
        box-shadow:
            0 18px 36px -8px rgba(0, 53, 128, 0.20),
            0 0 0 1px rgba(255, 140, 0, 0.08);
    }
}

/* Horizontal orientation — image on left, body on right */
body .ldt-hc--horizontal {
    display: grid;
    grid-template-columns: 240px 1fr;
}

@media (max-width: 768px) {
    body .ldt-hc--horizontal {
        grid-template-columns: 1fr;
    }
}

[dir="rtl"] body .ldt-hc--horizontal,
.ldt-rtl body .ldt-hc--horizontal {
    grid-template-columns: 1fr 240px;
}

@media (max-width: 768px) {
    [dir="rtl"] body .ldt-hc--horizontal,
    .ldt-rtl body .ldt-hc--horizontal {
        grid-template-columns: 1fr;
    }
}

body .ldt-hc__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

body .ldt-hc--horizontal .ldt-hc__media {
    aspect-ratio: auto;
    height: 100%;
    min-height: 200px;
}

body .ldt-hc__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--ldt-ease-portal, ease);
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-hc:hover .ldt-hc__img {
        transform: scale(1.08);
    }
}

body .ldt-hc__img--placeholder {
    background: linear-gradient(
        135deg,
        rgba(0, 53, 128, 0.20) 0%,
        rgba(0, 87, 184, 0.20) 100%
    );
}

/* Score badge — brand-blue gradient (review score, e.g., "9.2 Excellent") */
body .ldt-hc__score {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 11px;
    background: var(--ldt-gradient-brand,
                linear-gradient(135deg, #003580 0%, #0057b8 100%));
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: var(--ldt-radius-pill, 9999px);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(0, 53, 128, 0.30);
    z-index: 1;
}

[dir="rtl"] body .ldt-hc__score,
.ldt-rtl body .ldt-hc__score {
    left: auto;
    right: 12px;
}

/* Type badge — glass-light pill */
body .ldt-hc__type-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    border-radius: var(--ldt-radius-pill, 9999px);
    color: var(--ldt-primary, #003580);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

[dir="rtl"] body .ldt-hc__type-badge,
.ldt-rtl body .ldt-hc__type-badge {
    left: auto;
    right: 12px;
}

body .ldt-hc__body {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
}

body .ldt-hc__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}

body .ldt-hc__name {
    color: var(--ldt-dark, #1e293b);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0;
    transition: color 250ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-hc:hover .ldt-hc__name {
        color: var(--ldt-primary, #003580);
    }
}

body .ldt-hc__stars {
    color: var(--ldt-accent, #ff8c00);
    font-size: 13px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 1px rgba(255, 140, 0, 0.30));
}

body .ldt-hc__area {
    color: var(--ldt-gray-500, #94a3b8);
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 8px;
}

body .ldt-hc__desc {
    color: var(--ldt-gray-600, #64748b);
    font-size: 13px;
    line-height: 1.55;
    margin: 0 0 12px;
}

body .ldt-hc__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 53, 128, 0.06);
    margin-top: auto;
}

body .ldt-hc__price {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
}

body .ldt-hc__price-from {
    color: var(--ldt-gray-500, #94a3b8);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

body .ldt-hc__price-value {
    background: var(--ldt-gradient-accent,
                linear-gradient(135deg, #ff8c00 0%, #e07a00 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--ldt-accent, #ff8c00);  /* fallback */
    font-weight: 800;
    font-size: 1.125rem;
    letter-spacing: -0.01em;
}

body .ldt-hc__price-unit {
    color: var(--ldt-gray-500, #94a3b8);
    font-size: 11px;
    font-weight: 500;
}

body .ldt-hc__book {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--ldt-gradient-accent,
                linear-gradient(135deg, #ff8c00 0%, #e07a00 100%));
    color: #ffffff !important;
    border-radius: var(--ldt-radius-pill, 9999px);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    box-shadow: var(--ldt-shadow-accent-soft, 0 4px 12px rgba(255, 140, 0, 0.25));
    transition:
        transform 200ms var(--ldt-ease-portal, ease),
        box-shadow 200ms var(--ldt-ease-portal, ease),
        filter 200ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-hc__book:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(255, 140, 0, 0.40);
        filter: brightness(1.06);
    }
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 6. NIGHTLIFE CARDS — old (.ldt-nightlife-card) + new (.ldt-nc — image-led)
 * ═══════════════════════════════════════════════════════════════════════════════ */

/* OLD-STYLE nightlife-card */
body .ldt-nightlife-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

body .ldt-nightlife-card__image-wrap img {
    transition: transform 600ms var(--ldt-ease-portal, ease);
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-nightlife-card:hover .ldt-nightlife-card__image-wrap img {
        transform: scale(1.08);
    }
}

body .ldt-nightlife-card__rating {
    color: var(--ldt-accent, #ff8c00);
    font-weight: 700;
    filter: drop-shadow(0 1px 1px rgba(255, 140, 0, 0.30));
}

/* Regulations notice */
body .ldt-nightlife__regulations {
    background: rgba(0, 53, 128, 0.06);
    border: 1px solid rgba(0, 53, 128, 0.10);
    border-left: 4px solid var(--ldt-accent, #ff8c00);
    border-radius: var(--ldt-radius-input, 0.75rem);
    padding: 14px 18px;
    margin: 14px 0 18px;
    color: var(--ldt-gray-700, #334155);
    font-size: 14px;
    line-height: 1.6;
}

[dir="rtl"] body .ldt-nightlife__regulations,
.ldt-rtl body .ldt-nightlife__regulations {
    border-left: 1px solid rgba(0, 53, 128, 0.10);
    border-right: 4px solid var(--ldt-accent, #ff8c00);
}

/* NEW-STYLE compact nightlife card (.ldt-nc) — image-led with overlay caption */
body .ldt-nc {
    position: relative;
    border-radius: var(--ldt-radius-card, 1.25rem);
    overflow: hidden;
    border: 1px solid rgba(0, 53, 128, 0.04);
    box-shadow: 0 4px 14px rgba(0, 53, 128, 0.10);
    aspect-ratio: 4 / 5;
    transition:
        transform 350ms var(--ldt-ease-portal, ease),
        box-shadow 350ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-nc:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 44px -8px rgba(0, 53, 128, 0.30);
    }
}

body .ldt-nc__link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

body .ldt-nc__media {
    position: absolute;
    inset: 0;
}

body .ldt-nc__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms var(--ldt-ease-portal, ease);
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-nc:hover .ldt-nc__img {
        transform: scale(1.10);
    }
}

body .ldt-nc__img--placeholder {
    background: linear-gradient(
        135deg,
        rgba(0, 53, 128, 0.40) 0%,
        rgba(255, 140, 0, 0.40) 100%
    );
}

/* Overlay — multi-stop dark gradient */
body .ldt-nc__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 30%,
        rgba(0, 0, 0, 0.40) 60%,
        rgba(15, 23, 42, 0.92) 100%
    );
    transition: background 350ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-nc:hover .ldt-nc__overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0) 25%,
            rgba(0, 0, 0, 0.50) 55%,
            rgba(120, 35, 0, 0.88) 100%
        );
    }
}

body .ldt-nc__media-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 18px;
    color: #ffffff;
    z-index: 1;
}

body .ldt-nc__name {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0 0 4px;
    font-size: 17px;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.50),
        0 4px 14px rgba(0, 0, 0, 0.40);
    transition: transform 250ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-nc:hover .ldt-nc__name {
        transform: translateY(-2px);
    }
}

body .ldt-nc__type {
    display: inline-flex;
    align-items: center;
    color: var(--ldt-accent, #ff8c00);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.50);
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 7. SHOPPING CARDS (.ldt-shopping-card)
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-shopping-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

body .ldt-shopping-card__image-wrap img {
    transition: transform 600ms var(--ldt-ease-portal, ease);
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-shopping-card:hover .ldt-shopping-card__image-wrap img {
        transform: scale(1.08);
    }
}

body .ldt-shopping-card__body {
    padding: 16px 18px;
}

body .ldt-shopping-card__rating {
    color: var(--ldt-accent, #ff8c00);
    font-weight: 700;
    filter: drop-shadow(0 1px 1px rgba(255, 140, 0, 0.30));
    margin: 4px 0 10px;
}

body .ldt-shopping-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 53, 128, 0.06);
}

body .ldt-shopping-card__specs > * {
    color: var(--ldt-gray-600, #64748b);
    font-size: 12px;
    font-weight: 600;
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 8. SERVICES CARDS — uses .ldt-card base; light extra polish on container
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-services__header {
    margin-bottom: 18px;
}

body .ldt-services__grid > * {
    transition:
        transform 300ms var(--ldt-ease-portal, ease),
        border-color 300ms var(--ldt-ease-portal, ease),
        box-shadow 300ms var(--ldt-ease-portal, ease);
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 9. CHILDREN CARDS (.ldt-child-card) — image-led with overlay + portrait variant
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-children__header {
    margin-bottom: 18px;
}

body .ldt-child-card {
    position: relative;
    display: block;
    border-radius: var(--ldt-radius-card, 1.25rem);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 53, 128, 0.04);
    box-shadow: 0 4px 14px rgba(0, 53, 128, 0.06);
    text-decoration: none;
    color: inherit;
    transition:
        transform 350ms var(--ldt-ease-portal, ease),
        box-shadow 350ms var(--ldt-ease-portal, ease),
        border-color 350ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-child-card:hover {
        transform: translateY(-6px);
        border-color: rgba(255, 140, 0, 0.22);
        box-shadow:
            0 18px 36px -8px rgba(0, 53, 128, 0.20),
            0 0 0 1px rgba(255, 140, 0, 0.08);
    }
}

body .ldt-child-card--portrait {
    aspect-ratio: 4 / 5;
}

body .ldt-child-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

body .ldt-child-card--portrait .ldt-child-card__media {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
}

body .ldt-child-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--ldt-ease-portal, ease);
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-child-card:hover .ldt-child-card__img {
        transform: scale(1.08);
    }
}

body .ldt-child-card__img--placeholder {
    background: linear-gradient(
        135deg,
        rgba(0, 53, 128, 0.20) 0%,
        rgba(255, 140, 0, 0.20) 100%
    );
}

body .ldt-child-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 30%,
        rgba(0, 30, 80, 0.85) 100%
    );
    opacity: 0;
    transition: opacity 350ms var(--ldt-ease-portal, ease);
}

body .ldt-child-card--portrait .ldt-child-card__overlay {
    opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-child-card:hover .ldt-child-card__overlay {
        opacity: 1;
    }
}

/* Overlay caption (used on portrait variant) */
body .ldt-child-card__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px;
    color: #ffffff;
    z-index: 1;
}

/* Floating flag pill in overlay */
body .ldt-child-card__flag--overlay {
    display: inline-block;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.50);
    border-radius: var(--ldt-radius-pill, 9999px);
    font-size: 18px;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.20);
    margin-bottom: 6px;
}

body .ldt-child-card__name--overlay {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0 0 4px;
    font-size: 16px;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.50),
        0 4px 14px rgba(0, 20, 60, 0.40);
}

body .ldt-child-card__count--overlay {
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.40);
}

/* Body section (non-portrait) */
body .ldt-child-card__body {
    padding: 14px 16px;
}

body .ldt-child-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 8px;
}

body .ldt-child-card__tags > * {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background: rgba(0, 53, 128, 0.06);
    border: 1px solid rgba(0, 53, 128, 0.10);
    border-radius: var(--ldt-radius-pill, 9999px);
    color: var(--ldt-primary, #003580);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 10. RESPONSIVE
 * ═══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

    /* Filter strips: tighter padding */
    body .ldt-attractions__filters,
    body .ldt-dining__filters,
    body .ldt-hotels__filters,
    body .ldt-nightlife__filters {
        padding: 8px 10px;
    }

    body .ldt-attractions__filters button,
    body .ldt-dining__filters button,
    body .ldt-hotels__filters button,
    body .ldt-nightlife__filters button {
        padding: 5px 12px !important;
        font-size: 12px;
    }

    /* Grids: smaller min-width */
    body .ldt-attractions__grid,
    body .ldt-dining__grid,
    body .ldt-nightlife__grid,
    body .ldt-shopping__grid,
    body .ldt-services__grid,
    body .ldt-children__grid {
        gap: 14px;
    }

    /* Hotels carousel: narrower cards */
    body .ldt-hotels__track > * {
        flex: 0 0 280px;
    }

    /* Hotel card horizontal: stacks on mobile (already in main block) */

    /* Card body padding tighter */
    body .ldt-attraction-card__body,
    body .ldt-ac-card__body,
    body .ldt-dc__body,
    body .ldt-hc__body,
    body .ldt-shopping-card__body,
    body .ldt-child-card__body {
        padding: 14px;
    }
}


/* ─── END OF ldt-enhanced-sections-single-cards.css ───────────────────────── */
