@font-face {
    font-family: 'Besans';
    src: url('Besans.ttf') format('truetype');
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px 20px;
    border-bottom: 2px solid #470e89; /* Violet foncé */
}
#logo img {
    max-width: 260px;
    max-height: 115px;
}
#headerLinks a {
    margin: 0 10px;
    text-decoration: none;
    color: #470e89; /* Violet foncé */
    font-weight: bold;
}
#offer {
    background-color: #c0c4e3; /* Violet clair */
    color: #470e89; /* Violet foncé */
    text-align: center;
    padding: 20px 0;
}
#content {
    display: flex;
    margin: 20px;
}
.sidebar {
    flex: 1;
    padding: 20px;
    background-color: #ffffff;
    border-right: 2px solid #ccc;
}
.sidebar input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.menu h2 {
    font-family: 'Besans', Arial, sans-serif;
    color: #470e89; /* Violet foncé */
}
.menu ul {
    list-style: none;
    padding: 0;
}
.menu ul li {
    margin-bottom: 10px;
}
.menu ul li a {
    text-decoration: none;
    color: #470e89; /* Violet foncé */
}
.mainContent {
    flex: 3;
    padding: 20px;
}
.productRow {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}
.productInfo {
    text-align: center;
}
.productInfo img {
    max-width: 100%;
    height: auto;
}
.price {
    color: #470e89; /* Violet foncé */
    font-weight: bold;
    margin: 10px 0;
}
.buyButton {
    background-color: #470e89; /* Violet foncé */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.buyButton:hover {
    background-color: #333;
}
footer {
    background-color: #c0c4e3; /* Violet clair */
    color: #470e89; /* Violet foncé */
    text-align: center;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.footerlinks img {
    margin: 0 10px;
}
