/* Redeem Modal Styles */
.redeem-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.redeem-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.redeem-modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10001;
}

.redeem-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0 0 24px 0;
    text-align: center;
}

.redeem-product-info {
    background: #f5f7fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: center;
}

.redeem-product-name {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.redeem-product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.redeem-price-current {
    font-size: 28px;
    font-weight: 800;
    color: #142f90;
}

.redeem-price-original {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.redeem-form-group {
    margin-bottom: 20px;
}

.redeem-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.redeem-form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.redeem-form-group input:focus {
    outline: none;
    border-color: #142f90;
}

.redeem-modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.redeem-btn-cancel,
.redeem-btn-submit {
    flex: 1;
    padding: 0;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    height: 44px;
    line-height: 44px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.redeem-btn-cancel {
    background: #e5e7eb;
    color: #333;
}

.redeem-btn-cancel:hover {
    background: #d1d5db;
}

.redeem-btn-submit {
    background: #142f90;
    color: #fff;
}

.redeem-btn-submit:hover {
    background: #0d1f5c;
}

#redeemModalContent {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    overflow-y: auto;
}