.home-section {
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
}

.home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0.5rem;
}

.home-content {
    z-index: 10;
    color: white;
    text-align: center;
    padding: 2rem;
}

.info-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

.info-card i,
.info-card h4 {
    color: #ff5722;
}

.prodName,
.prodPrice {
    font-family: "Playfair", serif;
    font-size: 1.3rem;
}

.prodPrice {
    white-space: nowrap;
}

.listCarte h2 {
    color: #ffc107;
    font-family: "Playfair", serif;
    font-size: 2.6rem;
}

.listCarte h1 {
    color: #ffc107;
    font-family: "Lora", serif;
    font-size: 3.5rem;
    font-weight: lighter;
}

.menuName {
    color: #ffc107;
    font-family: "Playfair", serif;
    font-size: 2.3rem;
}

.gestionProduitName {
    color: #ffc107;
    font-family: "Lora", serif;
    font-size: 3rem;
}

.lstProduct {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 16px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

#chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#chatbot-toggler {
    transition: transform 0.3s ease;
    border: 2px solid #ffc107;
}

#chatbot-toggler:hover {
    transform: scale(1.1);
}

#chatbot-window {
    width: 350px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .home-section {
        min-height: 20vh;
        padding: 2rem 1rem;
    }

    .listCarte h1,
    .display-3 {
        font-size: 2.5rem !important;
    }

    .listCarte h2,
    .gestionProduitName,
    .menuName {
        font-size: 1.8rem;
    }

    #chatbot-window {
        width: 300px;
    }

    .listCarte ul li a {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        text-align: left;
    }

    .menuName {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        text-align: left;
    }
}
