
      .productsSection {
            display: flex;
            justify-content: center;
      }

      .productsSection>.container {
            width: 80%;
      }


    #product-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      grid-gap: 20px;
    }

    .product-card {
      background-color: #fff;
      border-radius: 5px;
      padding: 20px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease-in-out;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .product-card:hover {
      transform: translateY(-5px);
    }

    .product-card img {
      max-width: 250px;
      height: 250px;
      object-fit: cover;
      border-radius: 5px;
      margin-bottom: 10px;
    }

    .product-card h2 {
      font-size: 18px;
      margin-bottom: 5px;
    }

    .product-card p {
      margin: 5px 0;
    }

    .product-card .buttons {
      display: flex;
      justify-content: space-evenly;
      width: 100%;
    }

    .product-card button {
      display: block;
      width: 40%;
      padding: 10px;
      font-size: 14px;
      background-color: #FF5C00;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.2s ease-in-out;
    }

    .product-card button:hover {
      background-color: #b64402;
    }

    #pagination {
      margin-top: 20px;
      margin-bottom: 20px;
      text-align: center;
    }

    #pagination a {
      display: inline-block;
      margin: 0 5px;
      padding: 5px 10px 10px 10px;
      font-size: 16px;
      color: #FF5C00;
      text-decoration: none;
      border-radius: 5px;
      transition: background-color 0.2s ease-in-out;
    }

    #pagination a:hover {
      background-color: #f2f2f2;
    }
    
    #pagination .active {
      background-color: #FF5C00;
      color: #fff;
      font-weight: bold;
    }

    .hero-text {
      background-color: #ECF6FF;
      padding-top: 80px;
      height: 35vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .hero-text>.container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }

  .hero-text>.container>h1 {
    font-size: 64px;
    width: 100%;
    text-align: center;
}

.hero-text>.container>h3 {
    font-weight: 400;
    width: 100%;
    text-align: center;
}

  .cart {
    background-color: #FF5C00;
    position: fixed;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 100px;
    border-radius: 90px;
    right: 10px;
    bottom: 20px;
  }

  .qty {
    position: absolute;
    background-color: #ECF6FF;
    border-radius: 90px;
    height: 20px;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    border: 1px solid #FF5C00;
    top: 25px;
    right: 25px;
  }

  .activePagination {
    font-weight: 700;
    font-size: 20px;
  }


    @media screen and (max-width: 800px) {
      #product-list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      }
    }

    @media screen and (max-width: 600px) {
      .productsSection {
        min-height: 5560px;
  }

      .container {
        height: -moz-calc(100vh - 200px);
        height: -webkit-calc(100vh -  200px);
        height: calc(100vh - 200px);
        display: block;
  }

      #product-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
}