/* Olpa Frontend — caja de promociones single product */
.olpa-promotions {
    border: 1px solid #e2e4e7;
    border-radius: 8px;
    background: #fff;
    margin: 20px 0;
    padding: 0;
    font-size: 14px;
}
.olpa-promotions-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f6f7f7;
    border-bottom: 1px solid #e2e4e7;
    border-radius: 8px 8px 0 0;
}
.olpa-promotions-title {
    font-weight: 600;
    font-size: 15px;
    color: #1d2327;
}
.olpa-promotions-toggle {
    background: none;
    border: none;
    color: #2271b1;
    cursor: pointer;
    font-size: 13px;
    padding: 4px 8px;
}
.olpa-promotions-toggle:hover { text-decoration: underline; }
.olpa-promotions-toggle .olpa-arrow { display: inline-block; transition: transform .2s; }
.olpa-promotions-toggle[aria-expanded="true"] .olpa-arrow { transform: rotate(180deg); }

.olpa-promotions-body {
    padding: 8px 0;
    max-height: 320px;
    overflow: hidden;
    transition: max-height .3s ease;
}
.olpa-promotions-body.olpa-collapsed {
    max-height: 180px;
}
.olpa-promotions-body.olpa-expanded {
    max-height: 1500px;
}

.olpa-promo-method {
    padding: 12px 16px;
    border-bottom: 1px dashed #e2e4e7;
}
.olpa-promo-method:last-child { border-bottom: none; }
.olpa-promo-method-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #1d2327;
}
.olpa-promo-logo {
    height: 22px;
    width: auto;
    object-fit: contain;
}
.olpa-promo-plans {
    list-style: none;
    margin: 0;
    padding: 0;
}
.olpa-promo-plan {
    display: flex;
    gap: 10px;
    padding: 8px 0 8px 8px;
    border-left: 3px solid transparent;
    margin-bottom: 4px;
}
.olpa-promo-cash_discount   { border-left-color: #2c8c4d; background: #f1f9f3; }
.olpa-promo-installment_no_interest { border-left-color: #2271b1; background: #f0f6fc; }
.olpa-promo-installment_interest    { border-left-color: #b45309; background: #fff8ee; }
.olpa-promo-cash_normal     { border-left-color: #888; }

.olpa-promo-info {
    flex: 1;
    min-width: 0;
}

/* Línea principal: nombre — cuotas — precio final */
.olpa-promo-row-main {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 6px;
    font-size: 14px;
    color: #50575e;
}
.olpa-promo-name {
    font-weight: 600;
    color: #1d2327;
}
.olpa-promo-sep {
    color: #ccc;
    font-size: 12px;
}
.olpa-promo-installments strong {
    color: #1d2327;
}
.olpa-promo-final-price {
    font-weight: 700;
    color: #1d2327;
    font-size: 15px;
}
.olpa-promo-strike {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
}

/* Línea de descuento y ahorro */
.olpa-promo-row-savings {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 3px;
}
.olpa-promo-discount-badge {
    background: #2c8c4d;
    color: #fff;
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 11px;
    white-space: nowrap;
}
.olpa-promo-savings-amount {
    font-size: 12px;
    font-weight: 600;
    color: #2c8c4d;
}

/* Loop — preview de cuotas en cards */
.olpa-loop-installments {
    margin-top: 6px;
}
.olpa-loop-installment-line {
    font-size: 13px;
    color: #2c8c4d;
    font-weight: 600;
    line-height: 1.4;
}

/* Checkout — selector de planes */
.olpa-checkout-plans {
    margin: 20px 0;
    padding: 16px;
    background: #fff;
    border: 1px solid #e2e4e7;
    border-radius: 8px;
}
.olpa-checkout-plans-title { margin: 0 0 4px; font-size: 18px; }
.olpa-checkout-plans-help  { margin: 0 0 12px; font-size: 13px; color: #646970; }
.olpa-checkout-plan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 10px;
}
.olpa-plan-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border: 2px solid #e2e4e7;
    border-radius: 8px;
    cursor: pointer;
    transition: all .15s ease;
    background: #fff;
}
.olpa-plan-card:hover { border-color: #c3c4c7; }
.olpa-plan-card-selected { border-color: #2271b1; background: #f0f6fc; }
.olpa-plan-card input[type="radio"] { margin-top: 4px; }
.olpa-plan-card-body { flex: 1; min-width: 0; }
.olpa-plan-card-method {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #646970;
    margin-bottom: 4px;
}
.olpa-plan-card-logo { height: 18px; width: auto; }
.olpa-plan-card-name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.olpa-plan-card-detail { display: flex; flex-wrap: wrap; gap: 4px 8px; align-items: baseline; font-size: 13px; }
.olpa-plan-card-total { font-size: 17px; font-weight: 700; color: #1d2327; }
.olpa-plan-card-installment { font-size: 16px; font-weight: 700; color: #2271b1; }
.olpa-plan-card-total-small { font-size: 12px; color: #646970; }
.olpa-plan-card-recargo { background: #fff3cd; color: #b45309; padding: 1px 6px; border-radius: 3px; font-size: 11px; font-weight: 600; }

.olpa-order-plan-table th { width: 30%; text-align: left; }
