/* Pickup Locations Styling */
.shop-item {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.shop-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.shop-thumbnail {
    position: relative;
    overflow: hidden;
}

.shop-thumbnail img {
    transition: transform 0.3s ease;
}

.shop-item:hover .shop-thumbnail img {
    transform: scale(1.05);
}

.shop-content h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.location-info,
.contact-info,
.phone-info {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #6c757d;
    font-size: 0.9rem;
}

.location-info i,
.contact-info i,
.phone-info i {
    margin-right: 8px;
    color: #007bff;
    width: 16px;
}

.description-info {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
}

.description-info p {
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Empty state styling */
.bg-light {
    background-color: #f8f9fa !important;
    border: 2px dashed #dee2e6;
}

.text-muted {
    color: #6c757d !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .shop-content h5 {
        font-size: 1rem;
    }
    
    .location-info,
    .contact-info,
    .phone-info {
        font-size: 0.85rem;
    }
    
    .description-info p {
        font-size: 0.8rem;
    }
}
