.products-overview {
    padding: clamp(48px, 7vw, 88px) 0;
    background:
        radial-gradient(circle at 10% 15%, rgba(196, 154, 88, 0.1) 0 2px, transparent 2.5px) 0 0 / 24px 24px,
        #fff;
}
.products-overview__intro {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}
.products-overview__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: #8a5830;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.products-overview__eyebrow i {
    width: 7px;
    height: 14px;
    border-radius: 8px 0;
    background: currentColor;
}
.products-overview__title {
    color: #20251e;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 700;
}
.products-overview__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.products-overview__card {
    overflow: hidden;
    border: 1px solid #ecebe5;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(24, 38, 18, 0.07);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.products-overview__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 44px rgba(24, 38, 18, 0.13);
}
.products-overview__card img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
}
.products-overview__body {
    padding: 22px;
}
.products-overview__body h2 {
    margin: 0 0 9px;
    color: #20251e;
    font-size: 22px;
    line-height: 1.3;
}
.products-overview__body p {
    margin-bottom: 18px;
    color: #5f625b;
    line-height: 1.7;
}
.products-overview__link {
    color: #24501f;
    font-weight: 700;
    text-decoration: none;
}
.products-overview__link:hover {
    color: #8a5830;
}
@media (max-width: 767px) {
    .products-overview__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .products-overview__card img {
        height: 210px;
    }
}
