<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
#product_section {
    margin-top: 40px;
  }

  #product_section h2{
      text-align: center;
  }

  .breadcrumbs {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .breadcrumbs a {
    font-size: 25px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
  }

  .breadcrumbs span {
    font-size: 25px;
    color: #000000;
    font-weight: 600;
  }


  .product-container{
      display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .sidebar {
    width: 20%;
    margin-right: 20px;
  }

  .sidebar h3 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
  }

  ul .category_list {
    list-style: none;
    padding: 0;
    background: #ffffff;
    border: 1px solid black;
    border-radius: 6px;
    border: none;
    box-shadow: 0 0 10px;
  }

  .category_list li {
    list-style-type: none;
    background: #e8e5e5;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    border-bottom: 1px solid black;
  }

  .category_list li a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
  }

  .category_list li.ProductActive {
    background: #1c5859;
    color: #fff;
  }

  .category_list li.ProductActive a {
    color: #fff; /* Ensure link color is white on active */
  }


  .products-section {
    width: 75%;
  }

  .products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .results-info {
    font-size: 16px;
  }

  .tab-container {
    display: flex;
    padding: 10px;
    background-color: #fff;
    margin: 20px auto;
  }

  .tab_imports_button {
    padding: 10px 20px;
    border: 1px solid #205375;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .tab_exports_button {
    margin-left: 15px;
    padding: 10px 20px;
    border: 1px solid #205375;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .tab_imports_button:hover {
    background-color: #205375; /* Slightly darker yellow on hover */
  }

  .tab_exports_button:hover {
      background: #205375;
      color: #fff !important;
  }

  /* Style for ProductActive state */
  .ProductActive {
    background: #205375; /* ProductActive tab color */
    color: #fff !important;
  }

  .products-header select {
    padding: 5px 90px 5px 5px;
    border-radius: 5px;
    border: 1px solid #205375;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }

  .product_card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
  }

  .product_card a {
    text-decoration: none;
    position: relative;
    display: block;
  }

  .image_wrapper {
    position: relative;
    width: 100%;
    height: 220px;
  }

  .product_card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
  }

  .product_card h4 {
    font-size: 18px;
    margin: 10px 0;
    color: black;
    font-weight: 700;
  }

  .product_card .price {
    color: #ff0000;
    font-size: 20px;
    margin: 10px 0;
  }

  .product_card button {
    background-color: #000;
    color: #fff;
    padding: 8px 30px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.6s;
    font-weight: 600;
  }

  .product_card button:hover {
    background: #1c5859;
  }

  .product_card:hover img {
    filter: blur(4px);
    transform: scale(1.1);
  }

  .product_card .icon_overlay i {
    border: 1px solid black;
    padding: 10px;
    border: none;
    border-radius: 6px;
  }

  .icon_overlay i {
    font-size: 20px;
    color: #ffffff;
    background: #1c5859;
  }

  .icon_overlay {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }

  .product_card:hover .icon_overlay {
    opacity: 1;
  }

  .pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .pagination button {
    padding: 10px 15px;
    margin: 0 5px;
    background-color: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: 0.6s;
  }

  .pagination button.ProductActive {
    background-color: #205375;
    color: #fff !important;
    border: none;
  }


  button.disabled {
    background-color: #f0f0f0;
    color: #888;
    cursor: not-allowed;
    border: 1px solid #ccc;
  }


      .home-banner-img img {
          width: 100% !important;
          height: 80vh !important;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center
      }
</pre></body></html>