/* Location-Based Pricing Styles */
.location-banner {
    font-size: 14px;
}

.location-banner strong {
    color: #2c3e50;
}

.cursor-pointer {
    cursor: pointer !important;
}

.hover-shadow {
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.hover-shadow:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.region-option {
    transition: all 0.3s ease;
}

.region-option:hover {
    background-color: #f8f9fa !important;
    cursor: pointer;
}

.region-option:active {
    transform: scale(0.98);
}

#currentCityDisplay {
    font-weight: 500;
}

/* Price display special styling */
.price-regional {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.price-eye-icon {
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.3s;
}

.price-eye-icon:hover {
    opacity: 1;
}

/* RTL Support for location elements */
[dir="rtl"] .location-banner {
    text-align: right;
}

[dir="rtl"] .region-option {
    text-align: right;
}

/* New styles for location detection and pricing */
.location-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Price Reveal Styles */
.price-blur-container {
    position: relative;
    display: inline-block;
    min-width: 80px;
}

.price-blurred {
    filter: blur(5px);
    user-select: none;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.price-revealed {
    filter: blur(0);
    opacity: 1;
}

.price-reveal-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.price-reveal-btn:hover {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.price-container.revealed .price-blurred {
    filter: none;
    opacity: 1;
}

.price-container.revealed .price-reveal-btn {
    display: none;
}