  /* Base Reset */
  * {
      box-sizing: border-box;
  }

  .page-template-climate-search .site-content .ast-container {
      max-width: 100%;
      padding: 0;
  }

  .temperature-filter-wrapper {
      display: block;
      width: 100%;
      margin: 0 auto;
      position: relative;
  }

  .temperature-filter-wrapper h1 {
      max-width: 100%;
      background-size: cover;
      display: flex;
      justify-content: center;
      background-image: url("https://i0.wp.com/abseeds.com.au/wp-content/uploads/sites/3/2023/02/back.jpg?fit=1600%2C318&ssl=1");
      color: white;
      background-repeat: no-repeat;
      background-position: center;
      padding: 35px 0;
      height: 180px;
      align-items: center;
      -webkit-text-stroke: 1px rgb(0 0 0 / 48%);
      font-size: 50px;
      font-weight: 700;
      position: relative;
  }

  #temperature-filter-form {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      width: 100%;
      max-width: 1280px;
      margin: 0 auto 2rem;
  }

  #temperature-filter-form input,
  #temperature-filter-form button {
      padding: 0.75rem;
      font-size: 1rem;
  }

  #temperature-filter-form button {
      background-color: #06752e;
  }


  .container-wrapper {
      max-width: 1280px;
      width: 100%;
      margin: 0 auto;
  }

  /* Page Wrapper */
  .temperature-filter-page {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem 1.5rem 3rem;
  }

  #temperature-filter-results .added_to_cart.wc-forward {
      margin-left: 12px;
  }

  /* Title */
  .page-title {
      font-size: 2.2rem;
      font-weight: 600;
      color: #355f3b;
      margin-bottom: 2rem;
      text-align: center;
  }

  /* Filter Form */
  #temperature-filter-form {
      margin-top: 2.5rem;
      margin-bottom: 2.5rem;
  }

  #temperature-filter-form>label {
      display: block;
      margin-bottom: 0.75rem;
      width: 100%;
      font-size: 30px;
      color: black;
      font-weight: 600;
      position: relative;
  }

  #temperature-filter-form>label svg {
      width: 24px;
      height: 24px;
  }

  .info-tooltip {
      display: inline-block;
      position: relative;
  }

  .tooltip-text {
      visibility: hidden;
      opacity: 0;
      width: 240px;
      background-color: #2f2f2f;
      color: #ffffff;
      text-align: left;
      padding: 8px 10px;
      border-radius: 4px;
      position: absolute;
      bottom: 120%;
      left: 48%;
      transform: translateX(-50%);
      font-size: 0.85rem;
      line-height: 1.4;
      z-index: 10;
      transition: opacity 0.2s ease;
  }

  /* Arrow */
  .tooltip-text::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -6px;
      border-width: 6px;
      border-style: solid;
      border-color: #2f2f2f transparent transparent transparent;
  }

  /* Hover */
  .info-tooltip:hover .tooltip-text {
      visibility: visible;
      opacity: 1;
  }

  .temperature-input-wrapper {
      position: relative;
      flex: 1;
  }

  .temperature-input-wrapper input {
      width: 100%;
      padding: 0.75rem 2.5rem 0.75rem 0.9rem;
      font-size: 1rem;
      border: 1px solid #cfd6d2;
      border-radius: 3px;
      appearance: none;
      -moz-appearance: textfield;
  }

  /* °C suffix */
  .temperature-unit {
      position: absolute;
      right: 0.75rem;
      top: 50%;
      transform: translateY(-50%);
      color: #6b6b6b;
      font-size: 0.95rem;
      pointer-events: none;
      background-color: #95959585;
      color: white;
      padding: 12px 18px;
      margin-right: -11px;
      border-radius: 2px;
  }

  /* Chrome, Safari, Edge, Opera */
  input[type="number"]::-webkit-inner-spin-button,
  input[type="number"]::-webkit-outer-spin-button {
      -webkit-appearance: none;
      margin: 0;
  }

  /* Firefox */
  input[type="number"] {
      -moz-appearance: textfield;
  }

  .filter-row {
      display: flex;
      gap: 1rem;
      align-items: center;
  }

  .filter-row input {
      flex: 1;
      padding: 0.75rem 0.9rem;
      font-size: 1rem;
      border: 1px solid #cfd6d2;
      border-radius: 3px;
  }

  .filter-row button {
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      background-color: #3f6b45;
      color: #ffffff;
      border: none;
      border-radius: 3px;
      cursor: pointer;
      transition: background 0.2s ease;
  }

  .filter-row button:hover {
      background-color: #345a39;
  }

  /* Table Wrapper */
  .product-table-wrapper {
      background: #ffffff;
      border: 1px solid #e2e6e3;
  }

  /* Table */
  .product-table {
      width: 100%;
      border-collapse: collapse;
  }

  .product-table thead {
      background-color: #f1f4f2;
  }

  .product-table th,
  .product-table td {
      padding: 1rem;
      text-align: left;
      border-bottom: 1px solid #e5e5e5;
      font-size: 0.95rem;
  }

  .product-table th {
      font-weight: 600;
      color: #355f3b;
  }

  /* Product Name */
  .product-name a {
      color: #355f3b;
      text-decoration: none;
      font-weight: 500;
  }

  .product-name a:hover {
      text-decoration: underline;
  }

  /* Add to Cart Button */
  .add-to-cart {
      background-color: #3f6b45;
      color: #ffffff;
      padding: 0.5rem 1rem;
      border: none;
      border-radius: 3px;
      cursor: pointer;
      font-size: 0.9rem;
  }

  .add-to-cart:hover {
      background-color: #345a39;
  }

  /* Responsive (Tablet & Mobile) */
  @media (max-width: 475px) {

      .temperature-filter-wrapper h1 {
          font-size: 35px;
      }

  }

  @media (max-width: 768px) {

      .temperature-filter-wrapper h1 {
          font-size: 35px;
      }

      .filter-row {
          flex-direction: column;
          align-items: stretch;
      }

      .product-table thead {
          display: none;
      }

      .product-table tr {
          display: block;
          border-bottom: 1px solid #e5e5e5;
      }

      .product-table td {
          display: flex;
          justify-content: space-between;
          padding: 0.75rem 1rem;
      }

      .product-table td::before {
          content: attr(data-label);
          font-weight: 600;
          color: #355f3b;
      }
  }

  @media (max-width : 1380px) {
      .container-wrapper {
          padding: 2rem 1.5rem;
      }
  }

  /* ==============================
   Tablet View
   ============================== */
  @media (max-width: 1024px) {

      .container-wrapper {
          padding: 2rem 1.5rem;
      }

      #temperature-filter-form>label {
          font-size: 24px;
      }

      .page-title {
          font-size: 1.9rem;
      }

      .filter-row {
          gap: 0.75rem;
      }

      .product-table th,
      .product-table td {
          padding: 0.85rem 0.75rem;
          font-size: 0.9rem;
      }

      .add-to-cart {
          padding: 0.45rem 0.9rem;
          font-size: 0.85rem;
      }
  }

  /* ==============================
   Mobile View
   ============================== */
  @media (max-width: 768px) {

      /* Hide table header */
      .product-table thead {
          display: none;
      }

      .product-table,
      .product-table tbody,
      .product-table tr,
      .product-table td {
          display: block;
          width: 100%;
      }

      .product-table tr {
          background: #ffffff;
          border: 1px solid #e2e6e3;
          margin-bottom: 1rem;
          padding: 0.75rem 0.75rem 0.5rem;
      }

      .product-table td {
          padding: 0.6rem 0;
          border: none;
          font-size: 0.9rem;
      }

      /* Labels using data attributes */
      .product-table td::before {
          content: attr(data-label);
          font-weight: 600;
          color: #355f3b;
          padding-right: 1rem;
          flex-shrink: 0;
      }

      .add-to-cart {
          width: 100%;
          margin-top: 0.5rem;
      }
  }

  @media screen and (max-width: 767px) {
      #temperature-filter-form button {
          width: 100%;
      }
  }