/* Général */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #F8F9FA;
}

/* Hover zoom sur cartes */
.hover-zoom {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-zoom:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Services */
.service-card:hover {
  background: linear-gradient(135deg, #f0f8ff, #e6f7ff);
}

/* Prix */
.price {
  font-size: 1.1rem;
}

/* Toast notification */
.toast {
  background: #333;
  color: #fff;
  border-radius: 10px;
  padding: 1rem;
}
/* ----- Page produit ----- */
.product-container {
    margin-top: 50px;
    margin-bottom: 50px;
}
.product-img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.product-details h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}
.product-details p {
    font-size: 1rem;
}
.product-price {
    font-size: 1.5rem;
    margin: 10px 0;
}
.product-price .old-price {
    text-decoration: line-through;
    color: #777;
    margin-right: 10px;
}
.product-price .promo-price {
    color: #dc3545;
    font-weight: bold;
}
.product-stock {
    font-weight: bold;
}
.product-actions {
    margin-top: 20px;
}
.product-actions input[type="number"] {
    width: 100px;
}
.product-actions button {
    white-space: nowrap;
}
@media (max-width: 768px) {
    .product-container .row {
        flex-direction: column;
    }
    .product-actions {
        flex-direction: column;
        gap: 10px;
    }
    .product-actions input[type="number"] {
        width: 100%;
    }
}
#chat-box::-webkit-scrollbar {
    width: 6px;
}
#chat-box::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 3px;
}
#chat-box::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}
textarea {
    resize: none;
}
