.brand-container {
  width: 5px !important;
}
.brand-image {
    width: 120px !important;
    height: 120px !important;
    border-radius: 100% !important;
    margin-bottom: 12px !important;
    transition: all 0.5s;
    opacity: 0.9;
}

.brand-image:hover {
    transform: scale(1.2) !important;
    opacity: 1;
}
.item-info-container {
    height: 200px !important;
}

.item-description{
    max-height:100px !important; 
    overflow:auto !important;
    z-index: 0 !important;
}
/* For WebKit-based browsers (Chrome, Safari) */
.item-description::-webkit-scrollbar {
    width: 6px;
  }
  
  .item-description::-webkit-scrollbar-thumb {
    background-color: #888; /* Color of the scrollbar thumb */
    border-radius: 6px; /* Rounded corners */
  }

  .item-description {
    scrollbar-width: thin; /* You can also use auto for a default scrollbar */
  }
  
  /* Thumb */
  .item-description {
    scrollbar-color: #888 transparent; /* Color of the thumb and track */
  }