/* Khung bao ngoài (Card) */
.coupon-card {
    background: #fff;
    width: 500px; /* Tùy chỉnh độ rộng */
    max-width: 95%;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
    position: relative;
    margin: 20px auto; /* Để căn giữa khi test */
}

/* Header: Tiêu đề và nút đóng */
.coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.coupon-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.close-icon {
    font-size: 24px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.close-icon:hover {
    color: #333;
}

/* INPUT GROUP - Phần quan trọng nhất */
.coupon-input-group {
    position: relative; /* Để định vị nút 'Sử dụng' bên trong */
    width: 100%;
    margin-bottom: 8px;
}

.coupon-input-group input {
    width: 100%;
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 24px; /* Bo tròn kiểu viên thuốc */
    padding-left: 20px;
    padding-right: 100px; /* Chừa chỗ cho nút Sử dụng */
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.coupon-input-group input:focus {
    border-color: #2e7d58;
}

/* Nút 'Sử dụng' nằm đè lên input */
.btn-apply {
    position: absolute;
    top: 4px;      /* Cách mép trên một chút */
    right: 4px;    /* Cách mép phải một chút */
    height: 40px;  /* Nhỏ hơn input một chút */
    padding: 0 20px;
    background-color: #f0f2f5; /* Màu xám nhạt */
    color: #8898aa; /* Màu chữ xám */
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-apply:hover {
    background-color: #e4e6eb;
    color: #555;
}

/* Dòng chú thích nhỏ */
.coupon-note {
    font-size: 13px;
    color: #777;
    margin: 0 0 25px 5px; /* Margin left một chút cho thẳng hàng text */
}

/* Footer chứa nút Tiếp tục */
.coupon-footer {
    display: flex;
    justify-content: flex-end; /* Đẩy nút sang phải */
}

.btn-continue {
    background-color: #ee2b5b; /* Màu xanh đậm giống hình */
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(43, 110, 80, 0.3);
}

.btn-continue:hover {
    background-color: #f3567d;
}