.storage-near-you-main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.storage-near-you-main-wrapper h2 {
    color: #1e3a8a;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: left;
}

.storage-near-you-placeholder {
    min-height: 20px;
    margin: 20px 0;
}


#storage-near-you {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.storage-near-you-carousel-container {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.storage-near-you-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.8), transparent);
    pointer-events: none;
    z-index: 1;
}

.storage-near-you-carousel-container.no-scroll-needed::after {
    display: none;
}
.storage-near-you-carousel-container.no-scroll-needed .storage-near-you-carousel {
    scroll-snap-type: none;
    overflow-x: visible;
}

.storage-near-you-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 20px 0;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.storage-near-you-carousel::-webkit-scrollbar {
    height: 8px;
}

.storage-near-you-carousel::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.storage-near-you-carousel::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.storage-near-you-carousel::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.storage-facility-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex: 1 1 300px;
    min-width: 300px;
    max-width: 400px;
    scroll-snap-align: start;
}

.facility-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-info {
    padding: 20px;
}

.facility-address {
    margin-bottom: 12px;
    line-height: 1.4;
}

.facility-address strong {
    color: #1f2937;
    font-weight: 600;
}

.facility-distance {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.facility-price {
    color: #1f2937;
    font-weight: 500;
    margin-bottom: 16px;
    font-size: 0.9rem;
    min-height: 1.2em;
}

.get-started-btn {
    display: inline-block;
    background: white;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.storage-near-you-loading {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
    font-size: 1.1rem;
}

.storage-near-you-error {
    text-align: center;
    padding: 40px 20px;
    color: #dc2626;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    margin: 20px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .storage-near-you-carousel {
        gap: 16px;
        padding: 10px 0 15px 0;
    }
    
    .storage-facility-card {
        flex: 1 1 280px;
        min-width: 280px;
        max-width: 350px;
    }
    
    .storage-near-you-main-wrapper,
    #storage-near-you {
        padding: 15px;
    }
    
    .storage-near-you-main-wrapper h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .facility-info {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .storage-near-you-carousel {
        gap: 12px;
        padding: 10px 0 12px 0;
    }
    
    .storage-facility-card {
        flex: 1 1 260px;
        min-width: 260px;
        max-width: 320px;
    }
    
    .facility-image {
        height: 150px;
    }
    
    .facility-info {
        padding: 14px;
    }
    
    .get-started-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}
