/* Stores Section Styles */
.stores-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stores-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.store-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.6s ease-out;
}

.store-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.store-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.store-card:hover .store-image img {
    transform: scale(1.05);
}

.store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.store-card:hover .store-overlay {
    opacity: 1;
}

.store-direction {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.store-direction:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

.store-info {
    padding: 25px;
}

.store-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.store-location, .store-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #7f8c8d;
}

.store-location i, .store-phone i {
    color: #3498db;
    width: 20px;
}

.store-phone a {
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.store-phone a:hover {
    color: #3498db;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .stores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .stores-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* For very small mobile devices */
@media (max-width: 360px) {
    .section-title {
        font-size: 2rem;
    }
    
    .store-info {
        padding: 15px;
    }
    
    .store-info h3 {
        font-size: 1.2rem;
    }
}
