.bg-warm {
    background-color: #F3E5AB;
}
#chat-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FFA500;
    color: white;
    border-radius: 50%;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
}
#cart-bubble {
    position: fixed;
    bottom: 70px; /* Espacement par rapport à la bulle de chat */
    right: 20px;
    background-color: #FF4500; /* Couleur pour la bulle de panier */
    color: white;
    border-radius: 50%;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000; /* Assurer que la bulle de panier est au-dessus d'autres éléments */
}
.logo-img {
    width: 100px; /* Change cette valeur pour ajuster la largeur */
    height: auto; /* Garde le ratio de l'image */
}
.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer h3 {
    color: #ffcc00;
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer .address_infor,
.footer .social_icon ul,
.footer .email_address_bottom {
    margin-top: 10px;
}

.address_infor p {
    display: flex;
    align-items: center;
    color: #ccc;
}

.address_infor .icon img {
    width: 20px;
    margin-right: 10px;
}

.social_icon ul {
    list-style-type: none;
    padding: 0;
}

.social_icon ul li {
    display: inline-block;
    margin: 0 10px;
}

.social_icon ul li a img {
    width: 30px;
    filter: grayscale(100%);
    transition: filter 0.3s, transform 0.3s;
}

.social_icon ul li a img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.email_address_bottom form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.field_email input[type="email"] {
    padding: 10px;
    width: 250px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.field_email button {
    padding: 10px 15px;
    background-color: #ffcc00;
    color: #333;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.field_email button:hover {
    background-color: #ff9900;
}

.field_email i {
    font-size: 16px;
}

.footer a {
    color: #ffcc00;
    text-decoration: none;
}

.footer a:hover {
    color: #ff9900;
    text-decoration: underline;
}
.product-carousel .carousel-inner img {
    height: 400px; /* Ajuste la hauteur des images */
    object-fit: cover; /* Ajuste l'image pour remplir l'espace sans la déformer */
}

.product-carousel .carousel-caption {
    background-color: rgba(0, 0, 0, 0.6); /* Fond semi-transparent */
    padding: 20px;
    border-radius: 10px;
    color: #fff;
}

.product-carousel h3 {
    font-size: 24px;
    font-weight: bold;
    color: #ffcc00; /* Couleur du titre */
}

.product-carousel p {
    font-size: 16px;
    color: #fff; /* Couleur de la description */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #ffcc00; /* Couleur des flèches de navigation */
    border-radius: 50%;
    padding: 10px;
}
.container {
    max-width: 1200px;
}

.section-title {
    font-size: 1.5rem;
    color: #333;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.card-title {
    font-size: 1.2rem;
    color: #ff5733;
}

.card-text {
    font-size: 0.9rem;
    color: #555;
}

.btn-primary {
    background-color: #ffcc00;
    border: none;
    color: #333;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #ffa500;
}

