/* Home catalogue cards */
.home-best-sellers {
    max-width: 1440px;
    margin: 0 auto;
    padding: 70px 24px 84px;
}

.home-best-sellers .section-title {
    margin-bottom: 34px;
    text-align: center;
}

.home-best-sellers .section-title h2 {
    margin: 0;
    color: #29211d;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.25rem, 4vw, 4rem);
    font-weight: 600;
    letter-spacing: -.035em;
}

.home-best-sellers .section-title p {
    max-width: 620px;
    margin: 12px auto 0;
    color: #776b62;
}

.bestseller-carousel {
    position: relative;
}

.home-best-sellers .products {
    display: grid;
    grid-auto-columns: calc((100% - 48px) / 3);
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-template-rows: 1fr;
    gap: 24px;
    margin: 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 6px 2px 18px;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
}

.home-best-sellers .products::-webkit-scrollbar {
    display: none;
}

.home-best-sellers .product-card {
    position: relative;
    min-width: 0;
    height: clamp(390px, 34vw, 470px);
    overflow: hidden;
    border-radius: 24px;
    background: #d5c2b0;
    box-shadow: 0 10px 24px rgba(65, 42, 25, .16);
    isolation: isolate;
    scroll-snap-align: start;
}

.home-best-sellers .product-card::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: '';
    background: linear-gradient(180deg, rgba(31, 20, 12, 0) 34%, rgba(31, 20, 12, .1) 47%, rgba(53, 31, 17, .92) 100%);
    pointer-events: none;
}

.home-best-sellers .product-card .product-image {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: cover;
    transition: transform .45s ease;
}

.home-best-sellers .product-card:hover .product-image { transform: scale(1.055); }

.home-best-sellers .product-card-overlay {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 22px 20px 20px;
    color: #fff;
}

.home-best-sellers .collection-tag {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 5px 11px;
    border-radius: 6px;
    background: #f2b211;
    color: #563904;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1;
    text-transform: uppercase;
}

.home-best-sellers .collection-tag.tag-new { background: #79e7a0; color: #155c2f; }
.home-best-sellers .collection-tag.tag-best { background: #f2b211; color: #563904; }

.home-best-sellers .product-card h3 {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.3rem, 1.8vw, 1.75rem);
    font-weight: 600;
    line-height: 1.1;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home-best-sellers .product-card-copy {
    display: -webkit-box;
    margin: 6px 0 14px;
    overflow: hidden;
    color: rgba(255, 255, 255, .94);
    font-size: .92rem;
    line-height: 1.2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home-best-sellers .product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.home-best-sellers .product-card-price { font-size: 1.08rem; font-weight: 750; }
.home-best-sellers .product-card-link { color: #fff; font-size: .95rem; font-weight: 750; text-decoration: none; }
.home-best-sellers .product-card-link:hover { color: #fff; text-decoration: underline; }
.home-best-sellers .product-card-link i { margin-left: 4px; transition: transform .2s ease; }
.home-best-sellers .product-card-link:hover i { transform: translateX(4px); }

.carousel-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(78, 49, 31, .16);
    border-radius: 50%;
    background: #fff;
    color: #6e472b;
    box-shadow: 0 10px 28px rgba(65, 42, 25, .2);
    cursor: pointer;
    font-size: 1.15rem;
    place-items: center;
    transform: translateY(-50%);
}

.carousel-arrow:hover:not(:disabled) {
    background: #6e472b;
    color: #fff;
}

.carousel-arrow:disabled {
    cursor: default;
    opacity: .38;
}

.carousel-arrow--previous { left: -18px; }
.carousel-arrow--next { right: -18px; }

.carousel-hint {
    margin: 10px 0 0;
    color: #776b62;
    font-size: .86rem;
    text-align: center;
}

.carousel-hint i { margin-right: 5px; }

@media (max-width: 900px) {
    .home-best-sellers .products { grid-auto-columns: calc((100% - 24px) / 2); }
    .home-best-sellers .product-card { height: 430px; }
}

@media (max-width: 560px) {
    .home-best-sellers { padding: 52px 16px 64px; }
    .home-best-sellers .products { grid-auto-columns: 100%; gap: 18px; }
    .home-best-sellers .product-card { height: 420px; border-radius: 20px; }
    .home-best-sellers .product-card-overlay { padding: 18px; }
    .carousel-arrow { width: 40px; height: 40px; }
    .carousel-arrow--previous { left: -10px; }
    .carousel-arrow--next { right: -10px; }
}
