/*//add css*/

 /* Apple Wallet Popup CSS (your existing CSS) */
#appleWalletPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Google Wallet Popup CSS */
#googleWalletPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Shared popup styles (your existing CSS) */
.popup-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    max-width: 350px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: popIn 0.3s ease-out;
}

@keyframes popIn {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.popup-header {
    margin-bottom: 20px;
}

.popup-header h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.popup-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.wallet-icon {
    margin-bottom: 15px;
}

.wallet-icon img {
    width: 70px;
    height: auto;
}

.btn-wallet {
    background: #000;
    color: #fff;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.2s ease;
}

.btn-wallet:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Google Wallet specific button style */
.google-wallet-btn {
    background: #4285F4;
}

.google-wallet-btn:hover {
    background: #3367D6;
}

.btn-wallet svg {
    margin-right: 8px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 22px;
    color: #999;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 5px;
    line-height: 1;
}

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

.no-thanks {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.no-thanks:hover {
    text-decoration: underline;
    color: #333;
}
