/*================== Tablet Queries ==================*/
@media (min-width: 768px) {
  form {
    width: 400px;
    margin: 0 auto;
  }

  /*================== Header ==================*/
  header {
    padding: 1rem 7rem;
  }

  .logo h1 {
    font-size: 1.6rem;
  }

  /*================== Common Styles ==================*/
  /* logo */
  .shop-logo {
    margin: .5rem 0;
  }

  /*================== Main ==================*/
  /* --- Hero Section --- */
  #hero {
    padding: 3rem 5rem;
  }

  #hero h2 {
    font-size: 2.5rem;
  }

  #hero p {
    font-size: 1.2rem;
  }

  #hero img {
    width: 30%;
  }

  /* --- Product Section --- */
  #products-container h2 {
    font-size: 2rem;
  }

  /* Product Container */
  .product-container {
    gap: .8rem;
  }

  .product-container h3 {
    font-size: 1.6rem;
  }

  .carousel-container {
    padding: 2rem;
  }

  /* Product List */
  .product-list {
    gap: 1.6rem;
  }

  .product-list .card {
    width: 30%;
  }

  /* Card */
  .card {
    padding: 1.2rem;
  }

  .description {
    margin: 1rem 0 3rem 0;
  }

  .description h4 {
    font-size: 1.2rem;
  }

  .description .name {
    font-size: 1.4rem;
    font-weight: 700;
  }

  /*=================== Product ==================*/
  #productItems {
    justify-content: start;;
    padding: 4rem;
  }

  #productBrand {
    font-size: 1rem;
  }

  #productName {
    font-size: 2.25rem;
    font-weight: 700;
  }

  #productDescription {
    font-size: 1.8rem;
  }

  #affiliateBtn button {
    width: 20rem;
  }
}

/*================== Desktop Queries ==================*/
@media (min-width: 1200px) {
  .product-list .card {
    width: 20%;
  }
}