/* === Slider container === */
.product-swiper {
    padding: 4px 6px 48px;
}

/* altta pagination için boşluk */

/* Slayt yüksekliği içeriğe göre */
.product-swiper .swiper-slide {
    height: auto;
}

/* === Kart === */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 18px rgba(16, 24, 40, .06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(16, 24, 40, .12);
}

/* === Görsel alanı: eşit yükseklik için sabit oran === */
.product-thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* kare: tüm kartlar aynı */
    background: #f6f6f6;
    overflow: hidden;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.product-card:hover .product-thumb img {
    transform: scale(1.04);
}

.product-thumb.img-error {
    background: repeating-linear-gradient(45deg, #f1f1f1, #f1f1f1 10px, #e7e7e7 10px, #e7e7e7 20px);
}

.product-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.product-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title a {
    color: #1f2937;
    text-decoration: none;
}

.product-title a:hover {
    text-decoration: underline;
}

.product-desc {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin: 2px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-swiper .swiper-pagination {
    position: relative;
    margin-top: 28px;
}

.product-swiper .swiper-pagination-bullet {
    margin: 0 7px !important;
    width: 10px;
    height: 10px;
    opacity: 1;
    background: #d1d5db;
    transition: transform .2s, background .2s;
}

.product-swiper .swiper-pagination-bullet-active {
    background: #ef4444;
    transform: scale(1.18);
}

.product-swiper .swiper-button-next,
.product-swiper .swiper-button-prev {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 6px 18px rgba(16, 24, 40, .12);
    top: calc(50% - 12px);
    color: #ef4444;
}

.product-swiper .swiper-button-next:after,
.product-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 576px) {

    .product-swiper .swiper-button-next,
    .product-swiper .swiper-button-prev {
        top: 46%;
    }
}

.beverage-section .swiper-slide {
    padding: 4px;
}