@media (max-width: 500px) {
  body {
    padding: 0;
    font-size: 16px;
  }
  .topnav {
    height: 56px;
    min-height: 32px;
    max-height: 50px;
    padding: 0 4px;
  }
  .topnav a {
    font-size: 18px;
    padding: 8px 8px;
  }
  .topnav-logo {
    height: 40px;
    min-height: 20px;
    max-height: 40px;
    margin-left: 8px;
  }
  .order-container {
    max-width: 320px;
    margin: 56px 0 8px 0;
    border-radius: 16px;
    padding: 8px;
  }
  h1 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .product-list {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
  }
  .product-card,
  .product-card2,
  .product-card3 {
    max-width: 320px;
    min-width: 0;
    margin: 8px 0;
    padding: 12px 8px;
    border-radius: 16px;
  }
  .product-card img,
  .product-card2 img,
  .product-card3 img {
    width: 240px;
    height: 240px;
    max-width: 180px;
    max-height: 180px;
    border-radius: 12px;
    margin-bottom: 8px;
  }
  .product-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .product-desc {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .product-price {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .order-form {
    width: 320px;
    max-width: 320px;
    padding: 8px;
    gap: 8px;
  }
  .order-form label {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .order-form input,
  .order-form select {
    font-size: 14px;
    padding: 8px;
    border-radius: 8px;
  }
  .order-form button {
    font-size: 16px;
    padding: 8px;
    border-radius: 8px;
    margin-top: 8px;
  }
  footer {
    padding: 12px;
    font-size: 14px;
  }
}

/* Responsive Topnav Logo */

.topnav {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 9vw;
  min-height: 50px;
  max-height: 70px;
  z-index: 1000;
  font-family: Corben, sans-serif;
  background-color: #000000;
}

.topnav a {
  float: left;
  font-family: 'Corben';
  display: block;
  color: #ffde59;
  text-align: center;
  padding: 1vw 2vw;
  text-decoration: none;
  font-size: clamp(1.2rem, 4vw, 35px);
}

.topnav a:hover {
  background-color: #ffde59;
  color: #000000;
}

.topnav a.active {
  background-color: #2196F3;
  color: white;
}

@media screen and (width: 100%) {
  .topnav a {
    float: none;
    display: block;
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 14px;
  }
}

body {
        background: #fffbe6;
        font-family: 'Corben', sans-serif;
        margin: 0;
        padding: 0;
      }
      
      .order-container {
        max-width: 95vw;
        margin: 102px auto 32px auto; /* 70px (topnav height) + 32px spacing */
        background: #000000;
        border-radius: 4vw 4vw 2vw 2vw; /* Rounded top edges */
        box-shadow: 0 4px 24px rgba(0,0,0,0.08);
        padding: 3vw;
      }
      h1 {
        text-align: center;
        color: #ffde59;
        font-size: clamp(2rem, 6vw, 54px);
        margin-bottom: 2vw;
      }
      
      .product-list {
        display: flex;
        flex-wrap: wrap;
        gap: 2vw;
        justify-content: center;
        margin-bottom: 2vw;
      }
      .product-card,
      .product-card2,
      .product-card3 {
        flex: 1 1 260px;
        max-width: 320px;
        min-width: 220px;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        margin: 0.5vw;
      }
      .product-card {
        background: #fffbe6;
        border: 0.3vw solid #fe6e01;
        border-radius: 2vw;
        width: 100%;
        padding: 2vw 1vw 1vw 1vw;
        box-sizing: border-box;
        text-align: center;
        /* layout handled by shared selector above */
      }
            .product-card img {
              width: 30vw;
              max-width: 120px;
              height: 30vw;
              max-height: 120px;
              object-fit: cover;
              border-radius: 1vw;
              margin-bottom: 1vw;
              border: 0.2vw solid #fe6e01;
            }

      .buychcb-button {
        background: #a0262b;
        color: #ffffff;
        font-size: clamp(1rem, 3vw, 22px);
        font-family: 'Corben', sans-serif;
        border: none;
        border-radius: 1vw;
        padding: 1vw;
        cursor: pointer;
        margin-top: 1vw;
        transition: background 0.2s;
      }
      .buychcb-button:hover {
        background: #000000;
        color: #ffffff;
      }
      .buychcb-button a {
        text-decoration: none;
        color: #ffffff;
      }

      .product-card2 {
        background: #fffbe6;
        border: 0.3vw solid #ffde59;
        border-radius: 2vw;
        width: 100%;
        padding: 2vw 1vw 1vw 1vw;
        box-sizing: border-box;
        text-align: center;
        /* layout handled by shared selector above */
      }
            .product-card2 img {
              width: 30vw;
              max-width: 120px;
              height: 30vw;
              max-height: 120px;
              object-fit: cover;
              border-radius: 1vw;
              margin-bottom: 1vw;
              border: 0.2vw solid #ffde59;
            }
      .product-card3 {
        background: #fffbe6;
        border: 0.3vw solid #a0262b;
        border-radius: 2vw;
        width: 100%;
        padding: 2vw 1vw 1vw 1vw;
        box-sizing: border-box;
        text-align: center;
        /* layout handled by shared selector above */
      }
      .product-card3 img {
        width: 30vw;
        max-width: 120px;
        height: 30vw;
        max-height: 120px;
        object-fit: cover;
        border-radius: 1vw;
        margin-bottom: 1vw;
        border: 0.2vw solid #a0262b;
      }
      .product-title {
        font-size: clamp(1.1rem, 3vw, 24px);
        color: #a0262b;
        margin-bottom: 0.5vw;
        font-weight: bold;
      }
      .product-desc {
        font-size: clamp(0.9rem, 2.5vw, 16px);
        color: #333;
        margin-bottom: 1vw;
      }
      .product-price {
        font-size: clamp(1rem, 2.5vw, 20px);
        color: #fe6e01;
        margin-bottom: 1vw;
        font-weight: bold;
      }
      .order-form {
        display: flex;
        flex-direction: column;
        gap: 1vw;
        margin-top: 2vw;
        max-width: 95vw;
        width: 400px;
        margin-left: auto;
        margin-right: auto;
      }
      .order-form label {
        font-size: clamp(1rem, 2.5vw, 18px);
        color: #a0262b;
        margin-bottom: 0.5vw;
      }
      .order-form input,
      .order-form select {
        padding: 0.7vw;
        border-radius: 1vw;
        border: 0.15vw solid #fe6e01;
        font-size: clamp(1rem, 2.5vw, 16px);
        font-family: 'Corben', sans-serif;
        background: #fffbe6;
      }
      .order-form button {
        background: #000000;
        color: #ffde59;
        font-size: clamp(1.1rem, 3vw, 22px);
        font-family: 'Corben', sans-serif;
        border: none;
        border-radius: 1vw;
        padding: 1vw;
        cursor: pointer;
        margin-top: 1vw;
        transition: background 0.2s;
      }
      .order-form button:hover {
        background: #a0262b;
        color: #ffffff;
      }

      @media (max-width: 900px) {
        .product-list {
          flex-direction: column;
          align-items: center;
        }
        .order-container {
          padding: 2vw;
        }
        .product-card,
        .product-card2,
        .product-card3 {
          max-width: 95vw;
          min-width: 0;
        }
      }

      @media (max-width: 600px) {
        .order-container {
          padding: 1vw;
        }
        h1 {
          font-size: clamp(1.2rem, 8vw, 32px);
        }
        .order-form {
          width: 95vw;
        }
        .product-card,
        .product-card2,
        .product-card3 {
          max-width: 100vw;
          min-width: 0;
          padding: 2vw 2vw 2vw 2vw;
        }
        .product-card img,
        .product-card2 img,
        .product-card3 img {
          width: 60vw;
          height: 60vw;
          max-width: 180px;
          max-height: 180px;
        }
      }

      /* Scrollbar Styles */

html, body {
  overflow-y: auto;
  overflow-x: hidden; /* stop sideways scroll */
  scrollbar-width: none; /* Firefox */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

footer {
  margin-top: auto;
}

.topnav {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  font-family: Corben, sans-serif;
  background-color: #000000;
  height: 70px;
}

.topnav a {
  float: left;
  font-family: 'Corben';
  display: block;
  color: #ffde59;
  text-align: center;
  padding: 1vw 2vw;
  text-decoration: none;
  font-size: clamp(1.2rem, 4vw, 35px);
}

.topnav a:hover {
  background-color: #ffde59;
  color: #000000;
}

.topnav a.active {
  background-color: #2196F3;
  color: white;
}

@media screen and (width: 100%) {
  .topnav a {
    float: none;
    display: block;
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 14px;
  }
}