
/* Fix slide spacing here */
.slick-slide {
    padding: 0 5px;
    box-sizing: border-box;
  }
  .tv-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 10px 0;
    overflow: hidden;
  }
  
  .tv-card {
    flex: 0 1 calc((100% - 20px) / 3); /* Default: 3 columns */
    background: #fff;
    text-align: center;
    padding: 5px 5px 0;
    border: 1px solid #eee;
    box-sizing: border-box;
    margin: 0;
    position: relative;
  }
  
  .tv-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #fff;
    padding-top: 23px;
    max-width: 100%;
  }
  
  .tv-card h3 {
    font-size: 1.2em;
    margin: 10px 0 5px;
  }
  
  .tv-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
  }
  
  .tv-card ul li {
    font-size: 0.95em;
    margin-bottom: 5px;
  }
  
  .tv-card .price {
    font-weight: bold;
    font-size: 1.1em;
    margin: 10px 0;
  }
  
  .tv-card .btn {
    display: inline-block;
    padding: 8px 16px;
    background: #6c3;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
  }
  
  .tv-label {
    background: #27aae2;
    width: 47%;
    padding: 7px;
    font-size: 9px;
    color: #fff;
    font-weight: 700;
    position: absolute;
  }
  
  /* Larger screens: 6 columns */
  @media (min-width: 768px) {
    .tv-card {
      flex: 0 1 calc((100% - 50px) / 6); /* 6 items with 10px gaps */
    }
  }
  
  /* Optional: Make sure carousel containers don’t clip slides */
  .slick-list {
    margin: 0 -5px; /* negative half the padding to counteract outer spacing */
  }
  
  .slick-prev,
  .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background: none;
    border: none;
    font-size: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  
  .slick-prev::before,
  .slick-next::before {
    font-family: "slick"; /* slick carousel default font, or use icon */
    font-size: 30px;
    line-height: 1;
    color: #333;
  }
  
  .slick-prev::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url("images/arrow-left.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .slick-next::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url("images/arrow-left.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  