/* ===================================== */
/* HERO GALLERY — AIRBNB STYLE v2.0     */
/* ===================================== */

.ezb-td-hero * {
    box-sizing: border-box;
}

/* =============================== */
/* WRAPPER                         */
/* =============================== */

.ezb-td-hero {
    display: flex;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    margin-bottom: 30px;
}

/* =============================== */
/* LEFT — LARGE HERO IMAGE        */
/* =============================== */

.ezb-hero-left {
    flex: 3;
    display: flex;
}

.ezb-hero-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: 14px;
    overflow: hidden;
}

.ezb-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px);
    transform: scale(1.1);
    transition: all 0.6s ease;
}

.is-loaded.ezb-hero-img {
    filter: blur(0);
    transform: scale(1);
}

/* BADGE */
.ezb-hero-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: var(--ez-primary);
    border-radius: 12px;
}

/* VIEW GALLERY */
.ezb-hero-gallery-btn {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 8px 18px;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.92);
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

/* =============================== */
/* RIGHT — SMALL IMAGES           */
/* =============================== */

.ezb-hero-right {
    flex: 1.2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
}

.ezb-hero-small {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: 14px;
    overflow: hidden;
}

.ezb-hero-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =============================== */
/* LIGHTBOX                        */
/* =============================== */

.ezb-lightbox {
    inset: 0;
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
}

.is-open.ezb-lightbox {
    display: flex;
}

.ezb-lightbox img {
    max-width: 92vw;
    max-height: 92vh;
    border-radius: 12px;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.ezb-lightbox img.is-visible {
    opacity: 1;
}

/* CLOSE */
.ezb-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}

/* COUNTER */
.ezb-lightbox-counter {
    position: absolute;
    top: 22px;
    left: 24px;
    font-size: 0.95rem;
    color: #fff;
    opacity: 0.8;
}

/* =============================== */
/* INCLUDED / EXCLUDED + ICON FIX  */
/* =============================== */

/* GRID FOR INCLUDED / EXCLUDED */
.ezb-option-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* LIST RESET */
.ezb-option-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ezb-option-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* SVG ICONS FIX */
.ezb-option-list svg,
.ezb-option-confirmation svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    fill: none;
    stroke-width: 2;
}

/* INCLUDED */
.included.ezb-option-list svg {
    stroke: #00a870;
}

/* EXCLUDED */
.excluded.ezb-option-list svg {
    stroke: #c0392b;
}

/* RIGHT SIDE CONFIRMATION */
.ezb-option-confirmation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0a8f3a;
}

.ezb-option-confirmation svg {
    stroke: #0a8f3a;
}

/* =============================== */
/* MOBILE                          */
/* =============================== */

@media (max-width: 992px) {
    .ezb-td-hero {
        flex-direction: column;
    }

    .ezb-hero-left {
        height: 300px;
    }

    .ezb-hero-right {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr;
    }

    .ezb-hero-small {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .ezb-option-lists {
        grid-template-columns: 1fr;
    }

    .ezb-option-confirmation {
        justify-content: flex-start;
    }
}
