.product-card {
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.12) !important;
}

.product-card__media-link {
    display: block;
    color: inherit;
}

.product-card__media {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8faf8 0%, #eef5ef 100%);
    aspect-ratio: 4 / 3;
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.product-card:hover .product-card__image {
    transform: scale(1.04);
}

.product-card .card-body {
    padding: 1rem 1rem 1.1rem;
}

.product-card__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-card__title {
    line-height: 1.45;
    min-height: 3.1rem;
}

.product-card__title a:hover {
    color: #1f6f43 !important;
}

.product-card__description {
    font-size: 0.875rem;
    line-height: 1.6;
    min-height: 4.3rem;
}

.product-card__price {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.product-card__price-old {
    display: block;
    font-size: 0.8rem;
    text-decoration: line-through;
}

.product-card__cta {
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.18em;
    white-space: nowrap;
}

.product-card__cta:hover,
.product-card__cta:focus {
    color: #1f6f43 !important;
}

@media (max-width: 767.98px) {
    .product-card__title {
        min-height: 2.8rem;
    }

    .product-card__description {
        min-height: 4rem;
        font-size: 0.8125rem;
    }

    .product-card__price {
        font-size: 0.95rem;
    }
}
