/* Show only on desktop */
@media (min-width: 1024px){
  .tig-stick-cart{
    position: fixed;
    right: 16px;
    top: 15%;             /* adjust to clear your header */
    width: 340px;          /* tweak to fit your layout */
    max-height: calc(100vh - 120px);
    overflow: auto;
    z-index: 10010;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,.08);
    max-width:250px;
    padding:5px;
  }
  .tig-stick-cart__head{
    padding: 12px 14px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
  }
  .tig-stick-cart__inner{
    padding: 12px 14px;
  }

  /* truncate product titles in the TIG sticky cart to 2 lines */
#tig-stick-cart .elementor-menu-cart__product-name a {
  display: -webkit-box;
  -webkit-line-clamp: 2;     /* limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3em;           /* 2 × line-height (adjust if your theme uses different line-height) */
  line-height: 1.5em;
  white-space: normal;       /* allow wrapping */
}

}

/* Hide on tablet/mobile */
@media (max-width: 1023.98px){
  .tig-stick-cart{ display:none; }
}