body {
    font-family: 'Inter', sans-serif;
}

/* Custom Scrollbar for a premium feel */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}

/* Force larger font in selects for mobile */
select {
    font-size: 18px !important;
}

select option {
    font-size: 18px !important;
    padding: 10px;
}

/* Leaflet Customizations */
.leaflet-container {
    font-family: 'Inter', sans-serif;
}

.leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.leaflet-popup-content {
    margin: 16px;
    line-height: 1.5;
}

.custom-popup .store-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
    font-size: 14px;
}

.custom-popup .store-address {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
}

.custom-popup .popup-btn {
    display: inline-block;
    background-color: #a6282d;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.custom-popup .popup-btn:hover {
    background-color: #c93b41;
}

/* Marker clustering animation if needed in future */
.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
