/* SweetAlert2 Custom Styling */
.swal2-confirm-custom {
    font-weight: 600 !important;
    box-shadow: 0 3px 10px rgba(227, 203, 152, 0.4) !important;
}

.swal2-confirm-custom:hover {
    background-color: #d4b882 !important;
    box-shadow: 0 5px 15px rgba(227, 203, 152, 0.6) !important;
}

.swal2-cancel-custom {
    font-weight: 600 !important;
}

/* Redeem Now Button Styles */
.rendeam-now-btn {
    background: #E3CB98;
    color: #000;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(227, 203, 152, 0.3);
}

.rendeam-now-btn:hover {
    background: #d4b882;
    box-shadow: 0 4px 10px rgba(227, 203, 152, 0.5);
    transform: translateY(-1px);
}

.rendeam-now-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    opacity: 0.6;
}