/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 03 2026 | 00:27:21 */
/* =====================================
   CUPOM – MINIMAL PREMIUM TECH
===================================== */

.coupon.e-cart-section {
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: 16px;
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* Layout */
.coupon .coupon-col {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Campo de cupom */
.coupon input#coupon_code {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.12);
    background-color: transparent;
    font-size: 14px;
    color: #111827;
    transition: all 0.25s ease;
}

/* Placeholder */
.coupon input#coupon_code::placeholder {
    color: #9ca3af;
}

/* Focus clean */
.coupon input#coupon_code:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

/* Botão */
.coupon .e-apply-coupon {
    height: 48px;
    padding: 0 24px;
    border-radius: 12px;
    border: none;
    background-color: #111827;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
}

/* Hover */
.coupon .e-apply-coupon:hover {
    background-color: #1f2937;
    transform: translateY(-1px);
}

/* Active */
.coupon .e-apply-coupon:active {
    transform: translateY(0);
    background-color: #0f172a;
}

/* Disabled */
.coupon .e-apply-coupon:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Mobile */
@media (max-width: 640px) {
    .coupon .coupon-col {
        flex-direction: column;
        gap: 12px;
    }

    .coupon .e-apply-coupon {
        width: 100%;
    }
}
