.coupon-field {
    position: relative;
    display: flex;
    height: 60px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(14, 56, 76, 0.1019607843);
    border: 1px solid rgba(14, 56, 76, 0.1019607843);
    transition: all 0.3s ease;
}

.coupon-field:focus-within {
    border-color: #4a6ee0;
    box-shadow: 0 4px 20px rgba(74, 110, 224, 0.2);
}

.coupon-icon {
    background-color: #f5f7ff;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a6ee0;
    font-size: 1.5rem;
    border-right: 1px solid #eaeaea;
}

.coupon-input {
    flex: 1;
    border: none !important;
    padding: 28px 20px !important;
    outline: none !important;
    text-transform: uppercase;
}

.apply-btn {
    background-color: #4a6ee0;
    color: white;
    border: none;
    padding: 0 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background-color: #3a5ed0;
}

.apply-btn:active {
    transform: scale(0.98);
}

.apply-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.coupon-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eafaf1;
    color: #27ae60;
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 10px;
}

.coupon-tag i.fa-xmark {
    cursor: pointer;
    color: #000;
    text-shadow: 0.5px 0 0 #000, -0.5px 0 0 #000, 0 0.5px 0 #000, 0 -0.5px 0 #000;
}

.coupon-msg {
    margin-top: 10px;
    font-weight: 600;
    text-align: center;
}

.coupon-msg.success {
    color: #27ae60;
}
.coupon-msg.ms-error   {
    color: #e74c3c;
}

@media (max-width: 450px) {
    .coupon-icon{
        display: none;
    }
}