/* Styles communs */
.store-page-container,
.stores-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

/* Styles pour la carte */
#stores-map {
    height: 400px;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Styles pour les cartes de boutiques */
.store-card {
    transition: transform 0.2s;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
}

.store-card:hover {
    transform: translateY(-5px);
}

.store-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #000;
}

.store-info {
    text-align: center;
    margin-bottom: 30px;
}

.store-info p {
    margin: 5px 0;
    font-size: 16px;
}

.phone {
    color: #E22424;
    font-weight: bold;
}

/* Styles pour les horaires */
.store-hours {
    margin-top: 40px;
}

.store-hours h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #000;
}

.hours-list {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
}

.day-column {
    flex: 0 0 200px;
}

.hours-column {
    flex: 1;
}

.day, .hours {
    padding: 10px;
    margin-bottom: 5px;
}

.day {
    background: #000;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
}

.hours {
    background: #f5f5f5;
    border-radius: 4px;
}

.closed {
    color: #E22424;
    font-style: italic;
}

/* Styles pour les boutons de transport */
.transport-buttons {
    text-align: center;
    margin-bottom: 20px;
}

.transport-button {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
}

.car-button {
    background-color: #e67e22;
}

.transit-button {
    background-color: #2ecc71;
}

.transport-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.directions-panel {
    margin-top: 20px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid #ddd;
}

/* Styles pour la fenêtre d'info Google Maps */
.store-infowindow {
    padding: 10px;
    max-width: 200px;
}

.store-infowindow h3 {
    font-size: 16px;
    margin: 0 0 10px;
    color: #000;
}

.store-infowindow p {
    margin: 0 0 10px;
    font-size: 14px;
}

/* Styles pour la liste des boutiques */
.store-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.store-hours li {
    margin-bottom: 5px;
    font-size: 14px;
}

.store-hours .day {
    font-weight: bold;
    display: inline-block;
    min-width: 100px;
}

/* Styles responsive */
@media (max-width: 768px) {
    .hours-list {
        flex-direction: column;
    }
    
    .day-column, .hours-column {
        width: 100%;
    }

    .transport-buttons {
        flex-direction: column;
    }

    .transport-button {
        width: 100%;
        margin: 5px 0;
    }
}
