.productCard.-type-2 {
    transition: all 0.3s ease;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid transparent;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .productCard.-type-2:hover {
    border-color: var(--color-blue-1);
    transform: translateY(-5px);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.08);
  }

  .productCard__image {
    position: relative;
    overflow: hidden;
  }

  .productCard__image img {
    transition: transform 0.6s ease;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .productCard.-type-2:hover .productCard__image img {
    transform: scale(1.05);
  }

  .productCard__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    z-index: 1;
  }

  .custom-transition {
    transition: all 0.3s ease;
  }

  .productCard.-type-2:hover .productCard__badge {
    transform: translateY(-3px);
  }

  .productCard__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px !important;
  }

  .product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .productCard__title {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    height: auto;
    min-height: 40px;
    word-wrap: break-word;
    transition: color 0.3s ease;
    margin-bottom: 0;
  }

  .text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .productCard:hover .productCard__title {
    color: var(--color-blue-1);
  }

  /* Nút liên hệ mới đẹp hơn với màu chủ đạo */
  .button-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background-color: var(--color-blue-1);
    border-radius: 6px;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
  }

  .button-contact:hover {
    background-color: #0056b3;
  }

  .button-contact:active {
    transform: translateY(0);
    box-shadow: 0 2px 3px rgba(29, 119, 255, 0.15);
  }

  .icon-phone-call:before {
    content: "\e91b"; /* Dùng mã biểu tượng có sẵn liên quan đến điện thoại */
  }

  @media (max-width: 767px) {
    .py-15 {
      padding-top: 12px;
      padding-bottom: 12px;
    }

    .px-20 {
      padding-left: 15px;
      padding-right: 15px;
    }

    .productCard__title {
      font-size: 16px !important;
    }

    .productCard__content {
      padding: 15px !important;
    }

    /* Mobile adjustments for featured product carousel */
    .featured-products-slider .swiper-slide {
      width: 80% !important; /* Hiển thị gần hết 1 slide */
      max-width: 300px; /* Giới hạn chiều rộng tối đa */
    }

    .featured-products-carousel {
      padding: 0 20px; /* Giảm padding cho nút */
    }

    .featured-products-nav {
      width: calc(100% - 40px); /* Điều chỉnh width cho phù hợp padding mới */
      left: 20px;
    }

    .featured-products-prev,
    .featured-products-next {
      width: 35px;
      height: 35px;
      top: 45%; /* Đẩy nút lên 1 chút */
    }

    .featured-products-prev i,
    .featured-products-next i {
      font-size: 16px;
    }

    .featured-product__main-card {
      height: 320px; /* Giảm chiều cao card chính */
    }

    .featured-product__overlay .px-20 {
      padding: 15px !important;
    }

    .featured-product__overlay h3 {
      font-size: 18px !important;
    }

    .featured-product__overlay p {
      font-size: 13px !important;
      margin-bottom: 8px !important;
    }

    .featured-product__overlay .button {
      padding: 6px 12px !important;
      font-size: 13px !important;
      margin-top: 5px !important;
    }
  }

  @media (max-width: 575px) {
    .mobile-filters .dropdown {
      width: 100%;
      margin-bottom: 8px;
    }

    .rounded-4 {
      border-radius: 4px;
    }
  }

  /* Improved section styling */
  .sectionTitle__title {
    position: relative;
    display: inline-block;
    font-size: 28px;
    font-weight: 600;
    color: var(--color-dark-1);
    margin-bottom: 20px;
  }

  .sectionTitle__title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-blue-1);
    border-radius: 10px;
  }

  /* Cải tiến cho Mobile */
  .w-100-sm {
    width: 100%;
  }

  .search-field-wrap {
    display: flex;
    align-items: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .search-field {
    outline: none;
    font-size: 15px;
    color: var(--color-dark-1);
  }

  .search-button {
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .search-button:hover {
    background-color: rgba(29, 119, 255, 0.1) !important;
  }

  .mobile-search-btn {
    min-width: 80px;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .mobile-search-btn:hover {
    background-color: var(--color-blue-2);
  }

  .mobile-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  /* Helpers */
  .rounded-4 {
    border-radius: 4px;
  }

  .hidden {
    display: none;
  }

  .whitespace-nowrap {
    white-space: nowrap;
  }

  .flex-grow-1 {
    flex-grow: 1;
  }

  .h-50 {
    height: 50px;
  }

  .size-50 {
    width: 50px;
    height: 50px;
  }

  .ml-10 {
    margin-left: 10px;
  }

  .mr-5 {
    margin-right: 5px;
  }

  .px-15 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  @media (min-width: 576px) {
    .d-sm-flex {
      display: flex !important;
    }

    .d-sm-none {
      display: none !important;
    }
  }

  @media (max-width: 575px) {
    .rounded-4 {
      border-radius: 4px;
    }

    .crop-card, .benefit-card {
      margin-bottom: 15px;
    }
  }

  /* Helpers và utilities */
  .flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .size-40 {
    width: 40px;
    height: 40px;
  }

  .size-50 {
    width: 50px;
    height: 50px;
  }

  .size-60 {
    width: 60px;
    height: 60px;
  }

  .size-80 {
    width: 80px;
    height: 80px;
  }

  .rounded-full {
    border-radius: 50%;
  }

  .bg-blue-1-05 {
    background-color: rgba(53, 84, 209, 0.05);
  }

  .bg-yellow-1-05 {
    background-color: rgba(255, 193, 7, 0.05);
  }

  .text-blue-1 {
    color: var(--color-blue-1);
  }

  .hover-shadow-3:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }

  /* Image overlay effect */
  .productCard__image:after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.03);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .productCard.-type-2:hover .productCard__image:after {
    opacity: 1;
  }

  /* Table styling */
  .table-spec {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
  }

  .table-spec td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
  }

  .table-spec tr:last-child td {
    border-bottom: none;
  }

  /* Alert box styling */
  .alert-box {
    background-color: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 15px 20px;
  }

  /* Modern Farmer Section Styling */
  .citiesCard.-type-1 {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
  }

  .citiesCard.-type-1:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }

  .citiesCard__image {
    position: relative;
    overflow: hidden;
  }

  .citiesCard__image img {
    transition: transform 0.7s ease;
  }

  .citiesCard.-type-1:hover .citiesCard__image img {
    transform: scale(1.08);
  }

  .citiesCard__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
    z-index: -1;
    opacity: 0.9;
    transition: all 0.3s ease;
  }

  .citiesCard.-type-1:hover .citiesCard__bg {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  }

  .citiesCard__content {
    position: relative;
    z-index: 1;
  }

  .citiesCard__bottom .button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .citiesCard__bottom .button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
  }

  .citiesCard__bottom .button:hover:before {
    left: 100%;
  }

  .sectionTitle__title {
    position: relative;
    margin-bottom: 30px;
  }

  .sectionTitle__title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-blue-1);
    border-radius: 10px;
  }
}
