/* map.css - ZDrive Two Location Map */
.zdrive-map-section {
    width: 100%;
    max-width: 1300px;
}

.zdrive-map-canvas {
    width: 100%;
    height: 420px;
    border-radius: 10px;
    overflow: hidden;
    background: #f2f2f2;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

/* iOS safety */
.leaflet-container {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-overflow-scrolling: touch;
}

/* Responsive */
@media (max-width: 768px) {
    .zdrive-map-canvas { height: 300px; }
}