/* ============================= */
/* MOBILE HOMEPAGE 3D CAROUSEL */
/* ============================= */
/* desktop не бачить */
.mobile-home-carousel {
    display: none;
}

/* мобільна версія */
@media (max-width: 768px) {
.mobile-home-carousel {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: visible;
    min-height: 80vw;
    padding-top: 10px;
    
    gap: 12px;
    padding-left: 22%;
    padding-right: 22%;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

/* прибираємо скролбар */
.mobile-home-carousel::-webkit-scrollbar {
    display: none;
}
/* плитки */
.mobile-carousel-card {
    flex: 0 0 76%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    text-decoration: none;
    overflow: visible;
    transform-origin: center center;
    transform: scale(0.40) translateY(-6px);
    opacity: 0.45;
    z-index: 1;
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

/* активна плитка */
.mobile-carousel-card.active {
    transform: scale(1.04) translateY(0);
    opacity: 1;
    z-index: 5;
}
    
/* картинка плитки */
.mobile-carousel-card img {
    width: 100%;
    height: 70vw;
    object-fit: cover;
    border-radius: 20px;

    transform: translateZ(0);
    backface-visibility: hidden;
}
/* назва під плиткою */
.mobile-carousel-title {
    margin-top: 6px;
    font-size: 14px;
    color: #333;
    text-align: center;
    white-space: nowrap;
}
}

/* ============================= */
/* HIDE OLD MOBILE CATALOG GRID */
/* ONLY FOR HOMEPAGE */
/* ============================= */
@media (max-width: 768px) {
body.home .catalog-row {
    display: none;
}
}

@media (max-width: 768px) {
body.home .mobile-home-carousel {
    min-height: 82vw;
}
}
