body {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.playfair-display-unique {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 400; /* Remplacez par la valeur de poids souhaitée entre 400 et 900 */
    font-style: normal; /* ou 'italic' si vous voulez un style italique */
}

header {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

main {
    padding: 20px;
}

#product-list, #cart-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.product, .cart-item {
    background-color: white;
    padding: 20px;
    margin: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: calc(33% - 40px);
    box-sizing: border-box;
}

.product img, .cart-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}


.carousel-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    border-radius: 10px;
}

.carousel-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.carousel-buttons button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
}

.btn-phone{
    display: none;
}



#imageModal {
    display: none;
}

#imageModal.show {
    display: flex;
}