/* JAMA GALLERY */
.jama-gallery {
    width: 100%;
}

/* Ảnh lớn */
.jama-main {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 18px;
    background: #f5f5f5;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.jama-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .35s;
}

/* Thanh tiêu đề */
.jama-overlay {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 22px;
    background: rgba(0, 0, 0, .82);
    color: var(--color-white);
    border-radius: 14px;
    z-index: 5;
}

.jama-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
}

.jama-brand {
    font-size: 18px;
    font-weight: 700;
    color: #ff8b1e;
    white-space: nowrap;
}

/* Nút chuyển */
.jama-prev, .jama-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
	line-height: 0;
	letter-spacing: 0;
	margin-right: 0;
	padding: 0;
	min-height: 0;
    min-width: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .55);
    color: var(--color-white);
    font-size: 25px;
    cursor: pointer;
    transition: .3s;
    z-index: 10;
}

.jama-prev {
    left: 18px;
}

.jama-next {
    right: 18px;
}

.jama-prev:hover, .jama-next:hover {
    background: var(--color-main);
}

/* Thumbnail */
.jama-thumbs {
    display: flex;
    gap: 14px;
    margin-top: 18px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.jama-thumbs::-webkit-scrollbar {
    display: none;
}

.jama-thumb {
    flex: 0 0 120px;
    width: 120px;
    height: 82px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    opacity: .55;
    border: 3px solid transparent;
    transition: .3s;
}

.jama-thumb:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.jama-thumb.active {
    opacity: 1;
    border-color: var(--color-main);
    box-shadow: 0 6px 16px rgba(224, 89, 0, .25);
}

/* Laptop */
@media(max-width:1200px) {
    .jama-main {
        height: 460px;
    }

    .jama-title {
        font-size: 20px;
    }
}

/* Tablet */
@media(max-width:992px) {
    .jama-main {
        height: 380px;
    }

    .jama-overlay {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 12px 16px;
    }

    .jama-title {
        font-size: 18px;
    }

    .jama-brand {
        font-size: 15px;
    }

    .jama-thumb {
        width: 105px;
        height: 72px;
        flex-basis: 105px;
    }
}

/* Mobile */
@media(max-width:768px) {
    .jama-main {
        height: 260px;
        border-radius: 14px;
    }

    .jama-overlay {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 10px 12px;
    }

    .jama-title {
        font-size: 15px;
    }

    .jama-brand {
        font-size: 12px;
    }

    .jama-prev, .jama-next {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }

    .jama-prev {
        left: 10px;
    }

    .jama-next {
        right: 10px;
    }

    .jama-thumb {
        width: 88px;
        height: 62px;
        flex-basis: 88px;

    }
}

/* Mobile nhỏ */
@media(max-width:480px) {
    .jama-main {
        height: 220px;
    }

    .jama-thumb {
        width: 78px;
        height: 56px;
        flex-basis: 78px;
    }
}