/* Stores Page Styles */
.stores-main {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.stores-header {
    text-align: center;
    margin-bottom: 50px;
}

.stores-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.stores-header p {
    color: #666;
    font-size: 1.1rem;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.store-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.store-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 30px;
}

.store-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fa;
}

.store-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.store-logo.placeholder {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    font-size: 3rem;
    font-weight: bold;
}

.store-info h2 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #333;
}

.delivery-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.95rem;
}

.delivery-time svg {
    stroke: #0066cc;
}

.no-stores {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.stores-info {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stores-info h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.info-item {
    text-align: center;
}

.info-item h3 {
    font-size: 1.25rem;
    color: #0066cc;
    margin-bottom: 10px;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .stores-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .stores-header h1 {
        font-size: 2rem;
    }
    
    .stores-info {
        padding: 25px;
    }
}