.breadcrumbs{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    font-size:14px;
    color:var(--mp-muted);
    margin-bottom:18px;
}

.breadcrumbs a{
    color:var(--mp-brand);
}

/* =========================================================
   PRODUCT GRID / CATEGORY PAGE
   ========================================================= */

.product-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:20px;
}

.product-card{
    background:var(--mp-surface);
    border-radius:var(--mp-radius);
    box-shadow:var(--mp-shadow);
    overflow:hidden;
    border:1px solid var(--mp-line);
}

.product-card__image-wrap{
    aspect-ratio:4 / 3;
    background:#ece7e4;
}

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

.product-card__body{
    padding:18px;
}

.product-card__title{
    font-size:20px;
    line-height:1.25;
    margin-bottom:8px;
}

.product-card__bakery{
    font-size:15px;
    color:var(--mp-muted);
    margin-bottom:10px;
}

.product-card__price{
    font-size:18px;
    font-weight:700;
    margin-bottom:14px;
}

.product-card__link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:40px;
    padding:0 16px;
    border-radius:999px;
    background:var(--mp-brand);
    color:#fff;
    font-size:14px;
    font-weight:700;
}