/* Contenedor principal */
.farmacias-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.farmacias-wrapper {
    display: flex;
    gap: 0;
    height: 700px;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(156, 91, 166, 0.12);
}

/* Sidebar con lista de farmacias */
.farmacias-sidebar {
    width: 40%;
    overflow-y: auto;
    background: #fff;
    border-right: 1px solid #e0e0e0;
}

.farmacias-header {
    padding: 25px 20px;
    border-bottom: 2px solid #9c5ba6;
    background: linear-gradient(135deg, #f8f4fa 0%, #ffffff 100%);
}

.farmacias-header h2 {
    margin: 0 0 15px 0;
    font-size: 24px;
    color: #9c5ba6;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.farmacias-filter {
    margin-top: 15px;
}

.farmacias-filter label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.farmacias-filter select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    color: #333;
}

.farmacias-filter select:focus {
    outline: none;
    border-color: #9c5ba6;
    box-shadow: 0 0 0 3px rgba(156, 91, 166, 0.1);
}

/* Lista de farmacias */
.farmacias-list {
    padding: 0;
}

.farmacia-item {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s;
}

.farmacia-item:hover {
    background-color: #f8f4fa;
}

.farmacia-item.hidden {
    display: none;
}

.farmacia-item.active {
    background-color: #f3ebf6;
    border-left: 4px solid #9c5ba6;
}

.farmacia-item h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 700;
    color: #9c5ba6;
    line-height: 1.4;
}

.farmacia-direccion {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.farmacia-horarios {
    margin: 0 0 15px 0;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* Badges */
.farmacia-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-24hs {
    background: #ffeaa7;
    color: #d68910;
    border: none;
}

.badge-envios {
    background: #d4edda;
    color: #155724;
    border: none;
}

/* Botones de acción */
.farmacia-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    flex: 1;
}

.btn-whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.btn-directions {
    background: #9c5ba6;
    color: #fff;
    border: none;
    flex: 1;
}

.btn-directions:hover {
    background: #8b4c9e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(156, 91, 166, 0.3);
}

/* Contenedor del mapa */
.farmacias-map-container {
    width: 60%;
    position: relative;
    min-height: 700px;
}

.farmacias-map {
    width: 100%;
    height: 100%;
    min-height: 700px;
    z-index: 1;
}

/* Estilos del popup del mapa */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    padding: 0;
}

.leaflet-popup-content {
    margin: 0;
    min-width: 250px;
}

.map-popup {
    padding: 15px;
}

.map-popup h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 700;
    color: #9c5ba6;
}

.map-popup p {
    margin: 0 0 8px 0;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.map-popup .farmacia-badges {
    margin: 10px 0;
}

.map-popup .btn {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
}

/* Responsive — Tablet */
@media (max-width: 968px) {
    .farmacias-wrapper {
        flex-direction: column;
        height: auto;
    }

    .farmacias-sidebar {
        width: 100%;
        max-height: 350px;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .farmacias-map-container {
        width: 100%;
        height: 350px;
        min-height: 350px;
    }

    .farmacias-map {
        min-height: 350px;
    }
}

/* Responsive — Mobile */
@media (max-width: 600px) {
    .farmacias-wrapper {
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(156, 91, 166, 0.1);
    }

    /* Header mínimo: solo título chico */
    .farmacias-header {
        padding: 8px 12px;
        border-bottom-width: 1px;
    }

    .farmacias-header h2 {
        font-size: 14px;
        margin-bottom: 0;
    }

    /* Ocultar filtro de localidad en mobile */
    .farmacias-filter {
        display: none;
    }

    /* Sidebar 50/50 con el mapa */
    .farmacias-sidebar {
        max-height: 250px;
    }

    /* Items mínimos: nombre + dirección en una línea */
    .farmacia-item {
        padding: 8px 12px;
    }

    .farmacia-item h3 {
        font-size: 13px;
        margin-bottom: 1px;
        line-height: 1.2;
    }

    .farmacia-direccion {
        font-size: 11px;
        margin-bottom: 0;
        color: #888;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Ocultar horarios, badges y botones en la lista mobile */
    .farmacia-item .farmacia-horarios,
    .farmacia-item .farmacia-badges,
    .farmacia-item .farmacia-actions {
        display: none;
    }

    /* Mapa */
    .farmacias-map-container {
        height: 250px;
        min-height: 250px;
    }

    .farmacias-map {
        min-height: 250px;
    }

    /* Popups — toda la info aparece acá al tocar */
    .leaflet-popup-content {
        min-width: 180px;
        max-width: 240px;
    }

    .map-popup {
        padding: 10px;
    }

    .map-popup h4 {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .map-popup p {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .map-popup .farmacia-badges {
        margin: 5px 0;
        gap: 4px;
    }

    .map-popup .badge {
        font-size: 9px;
        padding: 2px 7px;
    }

    .map-popup .btn {
        margin-top: 5px;
        padding: 8px 10px;
        font-size: 11px;
        min-height: 36px;
    }
}

/* Responsive — Small phones */
@media (max-width: 380px) {
    .farmacias-sidebar {
        max-height: 200px;
    }

    .farmacias-map-container {
        height: 220px;
        min-height: 220px;
    }

    .farmacias-map {
        min-height: 220px;
    }

    .farmacia-item {
        padding: 6px 10px;
    }

    .farmacia-item h3 {
        font-size: 12px;
    }

    .farmacia-direccion {
        font-size: 10px;
    }
}

/* Scrollbar personalizado */
.farmacias-sidebar::-webkit-scrollbar {
    width: 8px;
}

.farmacias-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.farmacias-sidebar::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.farmacias-sidebar::-webkit-scrollbar-thumb:hover {
    background: #555;
}