.products {
    background: var(--cream);
    padding: 80px 0;
}

.products h2 {
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.products .subtitle {
    color: #6b4423;
    opacity: .85;
    text-align: center;
    font-size: 1.4rem;
}

.products img {
    display: block;
    width: 100%;
    max-width: 720px;
    height: auto;
    margin: 0 auto 24px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.products-grid a {
    text-decoration: none;
}

.product-card {
    background: radial-gradient(
       ellipse at center,
            #fffefb 0%,
            #fdf8ef 55%,
            #f2e3c5 100%
        ); 
    border: 1px solid #c8a86a;
    border-radius: 8px;
    box-shadow:
        inset 0 0 25px rgba(176,141,87,.05),
        0 5px 15px rgba(43,26,16,.08);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
    padding: 24px;
    box-sizing: border-box;
}

.product-card h3,
.product-card p {
    text-align: center;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow:
        inset 0 0 25px rgba(176,141,87,.08),
        0 12px 24px rgba(43,26,16,.12);
}

.product-card .product-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    margin-bottom: 22px;
    display: block;
    border: 1px solid #b9965d;
    filter:
        saturate(1.08)
        contrast(1.03)
        brightness(1.02)
        sepia(.06)
}

.product-card .decor {
    display: flex;
    justify-content: center;
    margin: 10px 0 12px;
}

.product-card .decor img {
    width: 320px;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    margin: 0;
    border: none;
}

.product-card h3 {
    margin-bottom: 10px;
    color: #6b4423;
    letter-spacing: .2px;
}

@media (max-width: 768px) {

    .products-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0;
    }

    .products .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .products > .container > img {
        width: 100%;
        max-width: 720px;
        height: auto;
    }

    .product-card .decor img {

        width:70%;
        max-width:320px;
    }
}
