@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=DM+Mono:wght@500&display=swap');

/* ── Coupon section wrapper ── */

.coupon_code_section {
    margin: 36px auto 0;
    max-width: 280px;
    padding: 0 16px;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
}

/* ── Heading ── */

.coupon_code_section h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
    margin: 0 0 14px;
}

/* ── Input + button row ── */

.coupon_code_input_container {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 5px 5px 5px 12px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.coupon_code_input_container:focus-within {
    border-color: #1e7ed8;
    background: #ffffff;
    box-shadow: 0 0 0 3.5px rgba(30, 126, 216, 0.12);
}

/* ── Text input ── */

.coupon_code_input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    font-family: 'DM Mono', monospace;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #1e7ed8;
    text-transform: uppercase;
    padding: 0;
    height: 34px;
    line-height: 34px;
    outline: none;
    -webkit-appearance: none;

    margin: auto;
}

.coupon_code_input::placeholder {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: #b0bec5;
    text-transform: none;
}

/* ── Apply button ── */

.coupon_apply_btn {
    flex-shrink: 0;
    height: 34px;
    padding: 0 14px;
    background: #1e7ed8;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
    white-space: nowrap;
    margin-left: 8px;
}

.coupon_apply_btn:hover {
    background: #1668b5;
}

.coupon_apply_btn:active {
    background: #1258a0;
}

/* ── Result message ── */

.coupon_code_result {
    margin-top: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    min-height: 20px;
    color: #22c55e;
}

.coupon_code_result.error {
    color: #ef4444;
}

/* ── Responsive ── */

@media (max-width: 480px) {
    .coupon_code_section {
        padding: 0 8px;
    }

    .coupon_apply_btn {
        padding: 0 14px;
    }
}