/* ========== 首页产品轮播 ========== */
.home-product-swiper {
    width: 100%;
    padding: 0 0 30px;
}

    .home-product-swiper .swiper-slide {
        height: auto;
    }

    .home-product-swiper .swiper-pagination {
        bottom: 0;
    }

    .home-product-swiper .swiper-pagination-bullet-active {
        background: #198754;
    }

    /* 产品卡片在轮播中 */
    .home-product-swiper .product-card {
        margin: 0;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }

    .home-product-swiper .card-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .home-product-swiper .card-img-link {
        display: block;
    }

    /* 农场 */
.farm-cards-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.farm-cards-two .farm-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-decoration: none;
    color: #333;
    display: block;
}
.farm-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    font-size: 0.65rem;
    padding: 3px 10px;
    border-radius: 10px;
    font-weight: 600;
}
.farm-badge.new {
    background: #e3f2fd;
    color: #1565c0;
}
.farm-badge.hot {
    background: #fce4ec;
    color: #c62828;
}
