/* ================================================================
   MC Product Related Carousel (mc-rpc)
   ================================================================ */

.mc-rpc {
    box-sizing: border-box;
    width: 100%;
}

/* ── Nagłówek ────────────────────────────────────────────────── */
.mc-rpc__head {
    margin-bottom: 24px;
}

.mc-rpc__heading {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #252525;
    line-height: 1.3;
}

/* ── Slider outer ───────────────────────────────────────────── */
.mc-rpc__slider-outer {
    display: flex;
    align-items: center;
}

/* ── Strzałki ───────────────────────────────────────────────── */
.mc-rpc__arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    color: #252525;
    transition: background-color 0.2s, color 0.2s, opacity 0.2s;
    padding: 0;
    outline: none;
    z-index: 2;
}

.mc-rpc__arrow:hover {
    background: #f5f5f5;
}

.mc-rpc__arrow--prev {
    margin-right: 8px;
}

.mc-rpc__arrow--next {
    margin-left: 8px;
}

.mc-rpc__arrow.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.mc-rpc__arrow svg {
    display: block;
    flex-shrink: 0;
}

/* ── Swiper ─────────────────────────────────────────────────── */
.mc-rpc__swiper {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

/* ── Karta produktu ─────────────────────────────────────────── */
.mc-rpc__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box;
}

/* ── Obraz ──────────────────────────────────────────────────── */
.mc-rpc__img-wrap {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.mc-rpc__img-link {
    display: block;
}

.mc-rpc__img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* ── Badge bar (nad zdjęciem) ───────────────────────────────── */
.mc-rpc__badge-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 6px;
}

/* ── Badge ──────────────────────────────────────────────────── */
.mc-rpc__badge {
    display: inline-flex;
    align-items: center;
    background: #252525;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
}

/* Badge overlay (na zdjęciu) */
.mc-rpc__badge--overlay {
    position: absolute;
    pointer-events: none;
}

/* ── Treść karty ────────────────────────────────────────────── */
.mc-rpc__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px;
    box-sizing: border-box;
}

.mc-rpc__cat {
    display: block;
    font-size: 12px;
    color: #888;
    text-decoration: none;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mc-rpc__cat:hover {
    color: #555;
}

.mc-rpc__title-price-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 0 0 8px;
}

.mc-rpc__title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #252525;
    flex: 1 1 auto;
    min-width: 0;
}

.mc-rpc__title a {
    color: inherit;
    text-decoration: none;
}

.mc-rpc__title a:hover {
    opacity: 0.8;
}

/* ── Cena ───────────────────────────────────────────────────── */
.mc-rpc__price {
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 600;
    color: #252525;
    line-height: 1.2;
    text-align: right;
}

.mc-rpc__price .woocommerce-Price-amount {
    font-size: inherit;
    font-weight: inherit;
}

.mc-rpc__price del {
    color: #999;
    font-weight: 400;
    font-size: 13px;
    margin-right: 4px;
    opacity: 1;
}

.mc-rpc__price del .woocommerce-Price-amount {
    color: inherit;
    font-weight: inherit;
    font-size: inherit;
}

.mc-rpc__price ins {
    text-decoration: none;
}

/* ── Przyciski w karcie ─────────────────────────────────────── */
.mc-rpc__actions {
    margin-top: auto;
    display: flex;
    align-items: center;
}

.mc-rpc__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #252525;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
    flex-shrink: 0;
    box-sizing: border-box;
}

.mc-rpc__btn:hover {
    background: #444;
    color: #fff;
}

.mc-rpc__btn svg {
    display: block;
}

/* ── Placeholder (brak produktów / edytor) ──────────────────── */
.mc-rpc__placeholder {
    padding: 24px;
    background: #f5f5f5;
    color: #888;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
}

/* ── Responsywność ──────────────────────────────────────────── */
