/**
 * Section: Products List
 * Product rows with WooCommerce prices + label badges
 */

.bc-products-list {
    padding: 120px 0;
}

.bc-products-list__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
}

.bc-products-list .bc-section__title {
    font-family: var(--bc-font-heading);
    font-size: 60px;
    font-weight: 400;
    line-height: 72px;
    margin: 0;
    color: var(--bc-black);
    font-feature-settings: 'liga' 0;
}

.bc-products-list__cta-link {
    font-family: var(--bc-font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--bc-pink);
    text-decoration: none;
    border-bottom: 1px solid var(--bc-pink);
    padding-bottom: 4px;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.bc-products-list__cta-link:hover {
    opacity: 0.8;
    color: var(--bc-pink);
}

.bc-products-list__items {
    margin-top: 48px;
}

.bc-products-list__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid #D2D2D2;
}

.bc-products-list__item:last-child {
    border-bottom: 1px solid #D2D2D2;
}

.bc-products-list__item-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.bc-products-list__item-name {
    font-family: var(--bc-font-body);
    font-size: 24px;
    font-weight: 500;
    color: var(--bc-black);
    line-height: normal;
}

/* Label badge ribbon — base shape from .bc-badge in utilities.css */
.bc-products-list__label {
    gap: 2px;
    flex-shrink: 0;
}

.bc-products-list__label-heart {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* Item right side */
.bc-products-list__item-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.bc-products-list__price {
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.bc-products-list__price-prefix {
    font-family: var(--bc-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #3B3336;
}

.bc-products-list__price-value {
    font-family: var(--bc-font-heading);
    font-size: 28px;
    font-weight: 400;
    line-height: 30px;
    color: var(--bc-black);
}

.bc-products-list__price-suffix {
    font-family: var(--bc-font-body);
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: var(--bc-black);
}

.bc-products-list__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: #fff;
    border: 1px solid var(--bc-black);
    border-radius: 100px;
    font-family: var(--bc-font-body);
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    color: var(--bc-black);
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.bc-products-list__btn:hover {
    background: var(--bc-pink);
    border-color: var(--bc-pink);
    color: #fff !important;
}

/* Payment icons footer */
.bc-products-list__payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
}

.bc-products-list__payment-text {
    font-family: var(--bc-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: var(--bc-black);
}

.bc-products-list__payment-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bc-products-list__payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 30px;
    flex-shrink: 0;
}

.bc-products-list__payment-icon svg {
    display: block;
    width: 50px;
    height: 30px;
}

/* Responsive */
@media (max-width: 991px) {
    .bc-products-list {
        padding: 80px 0;
    }

    .bc-products-list .bc-section__title {
        font-size: 40px;
        line-height: 48px;
    }

    .bc-products-list__item-name {
        font-size: 18px;
    }

    .bc-products-list__price-value {
        font-size: 24px;
        line-height: 26px;
    }
}

@media (max-width: 767px) {
    .bc-products-list {
        padding: 60px 0;
    }

    .bc-products-list__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .bc-products-list .bc-section__title {
        font-size: 32px;
        line-height: 40px;
    }

    .bc-products-list__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .bc-products-list__item-left {
        flex-wrap: wrap;
    }

    .bc-products-list__item-right {
        width: 100%;
        justify-content: space-between;
    }

    .bc-products-list__payment {
        flex-direction: column;
        gap: 12px;
    }
}
