/* ===== Shop - Product Card ===== */
.product-card {
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    border: 1px solid #e9ecef;
    overflow: hidden;
}
.product-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.product-card-image-link {
    display: block;
    overflow: hidden;
}

.product-card-img {
    height: 220px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 8px;
    transition: transform 0.3s ease;
}
.product-card:hover .product-card-img {
    transform: scale(1.05);
}

.product-card-img-placeholder {
    height: 220px;
    background: #f8f9fa;
}

.product-card-title {
    font-size: 0.95rem;
    line-height: 1.3;
}
.product-card-title a:hover {
    color: var(--color-primary, #2d5016) !important;
}

.product-card-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary, #2d5016);
}

.product-card-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Product Detail ===== */
.product-detail-price {
    color: var(--color-primary, #2d5016);
}

/* ===== Cart ===== */
.cart-qty-input {
    -moz-appearance: textfield;
}
.cart-qty-input::-webkit-inner-spin-button,
.cart-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ===== Checkout ===== */
#paypal-button-container {
    min-height: 45px;
}

/* ===== Cart Badge in Nav ===== */
#cart-badge-nav {
    font-size: 0.65rem;
}

/* ===== Product Carousel (home page) ===== */
.product-carousel {
    padding: 8px 4px 40px;
    overflow: visible;
}
.product-carousel .swiper-slide {
    height: auto;
}
.product-carousel .swiper-slide .card {
    margin: 0;
}
.product-carousel-pagination {
    bottom: 0 !important;
}
.product-carousel-pagination .swiper-pagination-bullet {
    background: var(--color-primary, #2d5016);
    opacity: .35;
}
.product-carousel-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

/* ===== Product Grid (shop list) ===== */
#product-grid {
    margin-left: 0;
    margin-right: 0;
    justify-content: center;
    flex-direction: row;
}
#product-grid > [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
    display: flex;
    justify-content: center;
}
#product-grid .product-card {
    width: 100%;
    max-width: 320px;
}

/* ===== Responsive ===== */
@media (max-width: 576px) {
    .product-card-img {
        height: 160px;
    }
    .product-card-img-placeholder {
        height: 160px;
    }
    .product-card-title {
        font-size: 0.85rem;
    }
    .product-card-price {
        font-size: 1rem;
    }
    .home-product-card {
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }
    .product-carousel .swiper-slide {
        display: flex;
        justify-content: center;
    }
    .product-carousel .swiper-slide .card {
        max-width: 280px;
    }
}
