.categories {
    background: #fffdf9;
}

.categories__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-24);
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eef2eb;
}

.product-card__image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.product-card__body {
    padding: var(--space-24);
}

.product-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #f3f7ee;
    margin-top: -52px;
    position: relative;
    z-index: 2;
    margin-bottom: var(--space-16);
    box-shadow: var(--shadow-sm);
}

.product-card__icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.product-card__title {
    font-family: var(--font-family-heading);
    font-size: var(--fs-24);
    margin-bottom: var(--space-12);
}

.product-card__text {
    color: var(--color-text-muted);
    margin-bottom: var(--space-16);
}

.product-card__meta {
    display: flex;
    gap: var(--space-12);
    align-items: center;
    margin-bottom: var(--space-16);
    flex-wrap: wrap;
}

.product-card__price {
    font-weight: 700;
}

.product-card__badge {
    padding: 6px 10px;
    border-radius: 999px;
    background: #edf5e7;
    color: var(--color-primary-dark);
    font-size: var(--fs-12);
    font-weight: 700;
}

.product-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-12);
    flex-wrap: wrap;
}

.inline-cart-form {
    margin: 0;
}
