/**
 * Deposit Addon Info Styles
 */

.c-cart__totals-table.shop_table.woocommerce-checkout-review-order-table th{
    text-align: left;
}

.c-cart__totals-table.shop_table.woocommerce-checkout-review-order-table .order-paid,
.c-cart__totals-table.shop_table.woocommerce-checkout-review-order-table  .order-remaining{
    display: inline-block;
    padding-bottom: 10px;
}

.c-cart__totals-table.shop_table.woocommerce-checkout-review-order-table{
    padding-bottom: 20px;
}


html .c-cart__shop-td--product-var-item {
    list-style: none;
    padding-bottom: 5px;
    padding-top: 5px;
}


.c-cart__shop-td--product-var-item .c-meta-options li{
    line-height: 1.7;
}

.dai-deposit-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    margin-top: 8px;
    margin-bottom: 5px;
    border-top: 1px solid rgba(34, 34, 34, 0.15);
    border-bottom: 1px solid rgba(34, 34, 34, 0.15);
    animation: dai-fade-in 0.5s ease-in-out;
    background-color: rgba(209, 135, 47, 0.05); /* Легкий фоновый цвет, соответствующий акцентному цвету */
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 4px;
}

.dai-deposit-info__title {
    font-weight: bold;
    color: var(--headers-color, #222222);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dai-deposit-info__amount {
    font-weight: bold;
    color: var(--accent-color, #d1872f);
    font-size: 18px;
}

/* Анимация появления */
@keyframes dai-fade-in {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 767px) {
    .dai-deposit-info {
        padding: 10px 0;
    }
    
    .dai-deposit-info__title,
    .dai-deposit-info__amount {
        font-size: 14px;
    }
}
