/* Geo-Targeted Shipping Popup Modal */
#tepp-geo-popup-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#tepp-geo-popup-backdrop.show {
    opacity: 1;
    visibility: visible;
}

#tepp-geo-popup-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    width: 90%;
    max-width: 450px;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease, visibility 0.3s ease;
    border: none;
    overflow: hidden;
}

#tepp-geo-popup-container.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.tepp-geo-popup-image {
    width: 100%;
    height: 220px;
    background-image: url('../image/internationaldelivery.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.tepp-geo-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.tepp-geo-popup-close:hover {
    background: #ffffff;
    color: #1a202c;
    transform: scale(1.05);
}

.tepp-geo-popup-content {
    padding: 30px;
    text-align: center;
}

.tepp-geo-popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.3;
}

.tepp-geo-popup-desc {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.5;
}

.tepp-geo-popup-btn {
    display: inline-block;
    width: auto;
    min-width: 200px;
    background: #364457;
    color: #ffffff;
    text-align: center;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.1s ease;
    box-shadow: 0 4px 6px rgba(49, 130, 206, 0.2);
}

.tepp-geo-popup-btn:hover {
    background: #2a3544;
    color: #ffffff;
    transform: translateY(-1px);
}

.tepp-geo-popup-btn:active {
    transform: translateY(1px);
}
