.qlub-loyalty-checkout-wrapper {
    background: #fff;
    color: #333;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.qlub-loyalty-checkout-wrapper h3 {
    margin-top: 0;
    color: #555632;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.qlub-loyalty-inner p {
    margin-bottom: 15px;
    color: #777;
    font-size: 0.9em;
}
.qlub-loyalty-input-group {
    display: flex;
    flex-direction: column; /* Force them to stack vertically */
    gap: 10px;
    margin-bottom: 10px;
}
.qlub-loyalty-input-group input,
.qlub-loyalty-input-group button {
    width: 100%;
    box-sizing: border-box;
}
.qlub-loyalty-input-group input {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #444;
    background: #656347;
    color: #fff;
}

/* Change placeholder color */
.qlub-loyalty-input-group input::placeholder {
    color: #b5b5b5; /* Adjust to the color you want */
    opacity: 1;
}
.qlub-loyalty-input-group button {
    background: #ddc898 !important;
    color: #797759 !important;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}
.qlub-loyalty-input-group button:hover {
    background: #22c55e !important;
    color: #fff !important;
}
.qlub-loyalty-input-group button.qlub-btn-success {
    background: #22c55e !important;
    color: #fff !important;
}
#qlub_loyalty_message {
    font-size: 0.9em;
    margin-top: 5px;
}

/* Popup Animation */
.qlub-loyalty-popup-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}
.qlub-loyalty-popup-content {
    background: #fff;
    color: #111;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 90%;
    width: 350px;
    animation: qlubJoyPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.qlub-loyalty-confetti {
    font-size: 50px;
    margin-bottom: 20px;
    animation: qlubBounce 1s infinite alternate;
}
.qlub-loyalty-popup-content h4 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #555632;
}
.qlub-loyalty-popup-content p {
    margin: 0;
    font-size: 15px;
    color: #555;
}

@keyframes qlubJoyPop {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes qlubBounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

/* Fix iOS Safari select styling */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px auto;
    padding-right: 40px !important; 
}
select::-ms-expand {
    display: none;
}
