.gallery {
    gap: 10px;
}

    .gallery img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

.small-icon {
    width: 25px;
    height: 25px;
}

    .small-icon:hover {
        animation: wiggle 0.7s ease-in-out;
    }

.gallery {
    height: 260px;
    padding: 0 5px;
}

.img1 {
    grid-row: 1 / 3; /* full height */
    grid-column: 1;
}

.img2 {
    grid-row: 1;
    grid-column: 2;
}

.img3 {
    grid-row: 2;
    grid-column: 2;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes wiggle {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.video-banner {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

    .video-banner iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        transform: translate(-50%, -50%);
        pointer-events: none; /* prevent clicking video */
    }

.select-item {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 8px 12px;
    background: white;
    cursor: pointer;
}

    .select-item .dropdown-icon {
        width: 20px;
        height: 20px;
        object-fit: contain;
        margin-right: 10px;
    }

    .select-item .dropdown-text {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.dropdown-text .subtitle {
    color: var(--dark-grey);
}

.select-item select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.dropdown-card {
    margin: 10px 0;
}

select,
::picker(select) {
    appearance: base-select;
}

::picker(select) {
    color: var(--theme-dark-blue);
    border: none;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 6px 6px;
}

option {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid transparent;
    &:focus-visible

{
    outline: none;
    background: #dedfdf;
}

&:checked {
    font-weight: bold;
}

&::checkmark {
    display: none;
}

}

option:hover {
    background-color: var(--theme-dark-blue);
    color: white;
}
