body {
    font-family: Helvetica, sans-serif;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
}

.header-center {
    flex-grow: 1;
    text-align: center;
}

.header-center h1 {
    margin: 0;
}

.magasin-info {
    text-align: center;
    margin-bottom: 20px;
}

.magasin-info h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.magasin-info p {
    margin: 5px 0;
}

.magasin-image img {
    width: 200px;
    height: auto;
    margin: 10px 0;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 10px;
}

.product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 20px;
    text-align: center;
    width: 30%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

.product-info h3 {
    font-size: 1.5em;
    margin: 10px 0;
}

.product-info p {
    font-size: 1em;
    color: #666;
    margin: 10px 0;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5 em;
    font-weight: bold;
    color: #000;
    margin: 10px 0;
}

.product-price img {
    width: 30px;
    height: 30px;
    margin-left: 10px;
}

.btn {
    margin-top: 10px;
}

.btn-info {
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

.product-info .description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Nombre de lignes à afficher */
    -webkit-box-orient: vertical;
    height: 5em;
    /* Ajustez la hauteur en fonction de la ligne et de la taille de la police */
    margin-bottom: 10px;
    color: #666;
}


.filters {
    display: flex;
    flex-direction: column;
    align-items: flex-center;
}

.filter-btn {
    background-color: #299AD4;
    border: none;
    color: white;
    padding: 10px 20px;
    margin: 5px 0;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #110E2B;
}