/* Styles CSS pour la mise en forme */
  .sidebarright {
    background-color: #AD863F;
    color: #fff;
    width: 13%;
    height: 80vh;
    position: fixed;
    top: 210px;
    right: -200px;
    padding-top: 5px;
      padding-bottom: 5px;
    overflow-y: auto;
    transition: 0.5s;
    border-radius: 10px; /* Ajout des coins arrondis */
  }
  .sidebarright-content {
    padding: 5px;
  }
  .sidebarright a {
    border-radius: 10px;
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  .sidebarright a:hover {
    background-color: #9C341B;
    border-radius: 10px;
  }

  .main-content {
    margin-right: 200px;
    padding: 20px;
  }
  .productsidebar {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 10px;
    width: 100%;
  color: #000;
  }
  .productsidebar img {
    width: 40%;
    height: auto;
    display: block;
  }
  .product-content {
    padding: 20px;
      color: black;
  }



.sidebarright-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.scrollable-products {
  flex: 1;
  overflow-y: auto;
}

.cart-total-container {
  flex-shrink: 0;
  /*padding: 10px;*/
  position: sticky;
  bottom: 0;
}