
.bpmcb-product-card {
    --bpmcb-bg: #f6f6f6;
    --bpmcb-border: #f47c20;
    --bpmcb-heading: #1d273b;
    --bpmcb-text: #2f2f2f;
    --bpmcb-muted: #6b7280;
    --bpmcb-price: #111827;
    --bpmcb-button-bg: #f47c20;
    --bpmcb-button-text: #ffffff;
    --bpmcb-button-hover-bg: #df6f1b;
    --bpmcb-title-bg: #f6f6f6;
    --bpmcb-button-wrap-bg: #f6f6f6;
    position: relative;
    overflow: visible;
    margin: 24px 0 30px;
    padding: 18px 22px 14px;
    background: var(--bpmcb-bg);
    border: 2px dashed var(--bpmcb-border);
    border-radius: 18px;
    color: var(--bpmcb-text);
    box-sizing: border-box;
}

.bpmcb-product-card__label {
    position: absolute;
    top: -13px;
    left: 18px;
    display: inline-block;
    padding: 0 12px;
    background: var(--bpmcb-title-bg);
    color: var(--bpmcb-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 24px;
}

.bpmcb-product-card__inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.bpmcb-product-card__media {
    flex: 0 0 118px;
    max-width: 118px;
}

.bpmcb-product-card__media a,
.bpmcb-product-card__media img {
    display: block;
    width: 118px;
    height: 118px;
}

.bpmcb-product-card__media img {
    object-fit: cover;
    border-radius: 12px;
}

.bpmcb-product-card__content {
    flex: 1 1 auto;
    min-width: 0;
    padding-top: 2px;
}

.bpmcb-product-card__title {
    margin: 0 0 4px;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 800;
}

.bpmcb-product-card__title a {
    color: var(--bpmcb-heading);
    text-decoration: none;
}

.bpmcb-product-card__title a:hover {
    color: var(--bpmcb-border);
}

.bpmcb-product-card__price {
    margin: 0 0 6px;
    color: var(--bpmcb-price);
    font-size: 16px;
    font-weight: 700;
}

.bpmcb-product-card__price del {
    opacity: 0.55;
    margin-right: 8px;
    font-size: 0.92em;
}

.bpmcb-product-card__price ins {
    text-decoration: none;
    color: var(--bpmcb-price);
}

.bpmcb-product-card__excerpt {
    margin: 0;
    color: var(--bpmcb-text);
    font-size: 14px;
    line-height: 1.45;
}

.bpmcb-product-card__footer {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-top: 6px;
    min-height: 20px;
}

.bpmcb-product-card__footer-text {
    color: var(--bpmcb-muted);
    font-size: 14px;
    line-height: 1.4;
    padding-right: 210px;
}

.bpmcb-product-card__button-wrap {
    position: absolute;
    right: 14px;
    bottom: -20px;
    display: inline-flex;
    align-items: center;
    padding: 0 0 0 12px;
    background: var(--bpmcb-button-wrap-bg);
    z-index: 2;
}

.bpmcb-product-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 11px 26px;
    background: var(--bpmcb-button-bg);
    color: var(--bpmcb-button-text) !important;
    text-decoration: none;
    border-radius: 999px;
    border: 0;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    box-shadow: none;
    transition: background .2s ease, transform .2s ease;
    min-width: 170px;
    text-shadow: 0 1px 0 rgba(0,0,0,0.08);
    -webkit-text-fill-color: var(--bpmcb-button-text) !important;
}

.bpmcb-product-card__button:hover,
.bpmcb-product-card__button:focus {
    background: var(--bpmcb-button-hover-bg);
    color: var(--bpmcb-button-text) !important;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .bpmcb-product-card {
        padding: 20px 18px 16px;
        margin-bottom: 20px;
    }

    .bpmcb-product-card__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .bpmcb-product-card__media,
    .bpmcb-product-card__media a,
    .bpmcb-product-card__media img {
        width: 120px;
        height: 120px;
        max-width: 120px;
    }

    .bpmcb-product-card__content {
        padding-top: 0;
    }

    .bpmcb-product-card__title {
        font-size: 22px;
    }

    .bpmcb-product-card__price {
        font-size: 17px;
    }

    .bpmcb-product-card__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 12px;
    }

    .bpmcb-product-card__footer-text {
        padding-right: 0;
    }

    .bpmcb-product-card__button-wrap {
        position: static;
        padding-left: 0;
        margin-top: 0;
    }
}


.bpmcb-product-card__button:visited,
.bpmcb-product-card__button:active,
.bpmcb-product-card__button:hover,
.bpmcb-product-card__button:focus {
    color: var(--bpmcb-button-text) !important;
    -webkit-text-fill-color: var(--bpmcb-button-text) !important;
}
