.truncate-50 {
    display: inline-block;
    max-width: 50ch; /* Limits the text to 50 characters */
    white-space: nowrap; /* Prevents the text from wrapping */
    overflow: hidden; /* Hides overflowed text */
    text-overflow: ellipsis; /* Adds an ellipsis ("...") */
}

@media (max-width: 576px) {
    .product-item .img-product-container {
        display: block;
    }
}

html {
  scroll-behavior: smooth;
}

.images-exp {
    margin-bottom: 8px;
    margin-top: -2px;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    background-color: #0aaa50;
    color: #ffffff;
    text-align: center;
    border-radius: 18px;
    padding: 5px 16px;
    position: fixed;
    left: 50%;
    bottom: 100px;
    transform: translateX(-50%);
    z-index: 1000;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.5s, bottom 0.5s;
  }
  
  #snackbar.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
  }
  