/**
 * Cart Coupon Toggle Styles
 * Stylowanie dla rozwijanego formularza kuponu rabatowego w koszyku
 */

.coupon-toggle-row {
    background: transparent;
}

.coupon-toggle-cell {
    text-align: center;
    padding: 10px 0 !important;
}

.show-coupon-form {
    display: inline-block;
    color: #666;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px dashed #999;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.show-coupon-form:hover {
    color: #CF142B;
    border-bottom-color: #CF142B;
}

.coupon-form-row {
    transition: all 0.3s ease;
}

.coupon-form-row.show {
    display: table-row !important;
}

.coupon-form-row .actions {
    padding: 20px 0;
}

.coupon-form-row .coupon {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .coupon-toggle-cell {
        padding: 15px 0 !important;
    }
    
    .show-coupon-form {
        font-size: 13px;
    }
    
    .coupon-form-row .coupon {
        flex-direction: column;
        align-items: stretch;
    }
    
    .coupon-form-row .coupon input,
    .coupon-form-row .coupon button {
        width: 100%;
    }
}
