.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
  }
  
  .carousel-detail-item {
    flex: 0 0 25%; /* Hiển thị 4 item mỗi lần */
    padding: 10px;
    box-sizing: border-box;
  }
  
  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1;
  }
  
  .prev {
    left: 0;
  }
  .next {
    right: 0;
  }
  .tab-wrapper {
    background: #f7f7fb;
    padding: 20px;
    border-radius: 12px;
  }
  
  .tab-menu {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow-x: auto;
  }
  
  .tab-item {
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
  }
  
  .tab-item img {
    width: 32px;
    height: 32px;
    margin-bottom: 4px;
    transition: 0.3s;
  }
  
  .tab-item span {
    font-size: 14px;
    color: #333;
    transition: 0.3s;
  }
  
  /* ACTIVE tab */
  .tab-item.active {
    background: #e8f0ff;
    border-bottom: 3px solid #1a73e8;
    border-radius: 12px 12px 0 0;
  }
  
  .tab-item.active span {
    color: #1a73e8;
    font-weight: 600;
  }
  
  .tab-item.active img {
    filter: drop-shadow(0 0 0.5px #1a73e8);
  }
  .price-box-ai {
    height: 60px;
  }