/**
 * Public facing styles for Higa Woo Descontos & Parcelas.
 */

.higa-dp-group-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 10px 0;
    line-height: 1.4;
    text-align: inherit;
}

/* Loop specific overrides if needed */
.products .product .higa-dp-group-wrapper {
    margin: 6px 0;
    font-size: 0.9em;
}

/* Items inside group */
.higa-dp-discount-item {
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3px;
    transition: opacity 0.25s ease-in-out;
}

body:not(.single-product) .higa-dp-discount-item {
    justify-content: center;
}

.higa-dp-crossed-price {
    text-decoration: line-through;
    font-weight: normal;
    margin-right: 3px;
}

.higa-dp-final-price {
    font-weight: 700;
}

.higa-dp-installment-item {
    font-weight: 500;
    display: block;
    margin-top: 2px;
    transition: opacity 0.25s ease-in-out;
}

.higa-dp-installment-item .higa-dp-inst-count,
.higa-dp-installment-item .higa-dp-inst-price {
    font-weight: 700;
}

/* Cart Page Styles */
.higa-dp-cart-wrapper {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.higa-dp-cart-discount,
.higa-dp-cart-installment {
    line-height: 1.3;
}

/* Live updating fade effect */
.higa-dp-updating {
    opacity: 0.3 !important;
}

/* Cart Totals Custom Styling */
.higa-dp-cart-totals-discount-row th,
.higa-dp-cart-totals-installment-row th {
    font-weight: 600;
    color: #475569;
}

.higa-dp-apply-note {
    font-size: 0.8em;
    font-weight: normal;
    color: #64748b;
    margin-left: 4px;
}