/* Modiseh Blog Bridge — product card */
.mbb-card {
    max-width: 460px;
    margin: 28px auto;
    border: 1px solid #ececec;
    border-radius: 14px;
    background: #f6f6f7;            /* very light background */
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    overflow: hidden;
    font-family: inherit;
}

.mbb-card__link {
    display: block;
    text-decoration: none !important;
    color: inherit;
}

.mbb-card__media {
    padding: 20px 20px 0;
    text-align: center;
}

.mbb-card__media img {
    max-width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: contain;
    display: inline-block;
}

.mbb-card__body {
    padding: 14px 20px 20px;
}

.mbb-card__title {
    font-size: 15px;
    line-height: 1.7;
    font-weight: 700;
    margin: 0 0 12px;
    color: #222;
}

.mbb-card__prices {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    list-style: none;
}

.mbb-card__discount {
    background: #e6123d;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    padding: 2px 7px;
}

.mbb-card__old {
    color: #999;
    font-size: 13px;
    text-decoration: line-through;
}

.mbb-card__price {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    margin-inline-start: auto;
}

.mbb-card__unit {
    font-size: 12px;
    font-weight: 600;
    color: #777;
}

.mbb-card__oos {
    color: #999;
    font-weight: 700;
    margin-bottom: 14px;
}

/* Compact, auto-width, centered button (was full-width) */
.mbb-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    margin: 16px auto 0;
    background: #e6123d;
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 30px;
    border-radius: 8px;
    transition: background .15s ease;
}

.mbb-card__btn-ic {
    flex: 0 0 auto;
}

.mbb-card__link:hover .mbb-card__btn {
    background: #c20f34;
}
