/* ==========================================================================
   SECTION COLLECTIONS (port từ home.model.css)
   ========================================================================== */

.home-collections {
    padding-bottom: 4.38rem;
}

.home-collections .home-section-header {
    padding-top: 5.38rem;
    padding-bottom: 2.5rem;
}

.home-collections__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.home-collections__button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-collections__card {
    display: block;
    position: relative;
    border-radius: 0.625rem;
    overflow: hidden;
    color: inherit;
    text-decoration: none;

    /* Scroll-in animation */
    opacity: 0;
    transform: translateY(40px);
}

.home-collections__card:focus-visible {
    outline: 2px solid #1d262d;
    outline-offset: 3px;
}

.home-collections__card.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.home-collections__card[data-stagger-index="0"].is-visible { transition-delay: 0s; }
.home-collections__card[data-stagger-index="1"].is-visible { transition-delay: 0.1s; }
.home-collections__card[data-stagger-index="2"].is-visible { transition-delay: 0.2s; }
.home-collections__card[data-stagger-index="3"].is-visible { transition-delay: 0.3s; }

/* Mobile swiper card không cần animation reveal (Swiper tự handle) */
.home-collections__mobile .home-collections__card {
    opacity: 1;
    transform: none;
}

.home-collections__card-bg-sub {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 70%,
        rgba(0, 0, 0, 0.7) 90%
    );
    pointer-events: none;
}

.home-collections__card-context {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    z-index: 10;
}

.home-collections__card-image {
    width: 21.2495rem;
height: 29.1875rem;
    overflow: hidden;
}

.home-collections__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.home-collections__card:hover .home-collections__card-image img {
    transform: scale(1.05);
}

.home-collections__card-name {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.03rem;
    text-transform: capitalize;
    margin: 0;
}

.home-collections__card-content {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;

    color: rgba(255, 255, 255, 0.80);


font-family: "Averta Std CY";
font-size: 0.75rem;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: uppercase;
}

/* Mobile swiper container */
.home-collections__mobile {
    display: none !important;
}

/* ========================================================================
   MOBILE
   ======================================================================== */
@media (max-width: 768px) {
    .home-collections {
        padding-bottom: 2.25rem;
    }

     .home-collections__button {
        padding-top: 1rem;
        width: 9.88rem;
        margin: 0 auto;
    }

    .home-collections .home-section-header {
        padding-top: 2.25rem;
        padding-bottom: 1.75rem;
    }

    .home-collections .home-section-header__title {
        max-width: 18rem;
    }

    .home-collections__grid {
        display: none;
    }

    .home-collections__mobile {
        display: block !important;
        margin-bottom: 1rem;
        overflow: hidden;
    }

    .home-collections__mobile .swiper-slide {
        height: auto;
    }

    .home-collections__card-image {
        width: 100%;
        height: 16rem;
        border-radius: 0.375rem;
    }

    .home-collections__card-name {
        font-size: 1.25rem;
    }

    .home-collections__pagination {
        position: static;
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 0.25rem;
        margin-top: 1.12rem;
        min-height: 1rem;
        padding: 0.375rem 0;
        width: 100%;
        transform: none;
        --swiper-pagination-color: #1d262d;
        --swiper-pagination-bullet-inactive-color: rgba(29, 38, 45, 0.22);
        --swiper-pagination-bullet-inactive-opacity: 1;
    }

    .home-collections__pagination.swiper-pagination-bullets .swiper-pagination-bullet,
    .home-collections__mobile.swiper-horizontal > .home-collections__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
        width: 1.58525rem;
        height: 0.1875rem;
        margin: 0;
        border-radius: 0;
        background: rgba(29, 38, 45, 0.22);
        opacity: 1;
    }
    .home-collections__card-content {
    font-size: 0.625rem;
    }

    .home-collections__pagination.swiper-pagination-bullets .swiper-pagination-bullet-active,
    .home-collections__mobile.swiper-horizontal > .home-collections__pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
        background: #1d262d;
    }
}
