body {
  background-color: #FFF0D1;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* top line */
.line {
  height: 4px;
  width: 100%;
  background-color: #8D1B1B;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* header */
.header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  min-height: 100px;
}

/* logo */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100px;
  width: 100px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  z-index: 10;
}

/* menu button */
.navbar-toggler {
  height: 40px;
  width: 40px;
  border: none;
  box-shadow: none;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%238D1B1B' stroke-linecap='round' stroke-miterlimit='10' stroke-width='4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.offcanvas {
  background-color: #FFF0D1;
}

.offcanvas-body {
  font-weight: bold;
  font-size: larger;
}

.offcanvas-body .nav-link {
  color: #8D1B1B;
}

/* heading */
.product-heading {
  color: #8D1B1B;
  padding-top: 40px;
  font-size: 70px;
  font-weight: bold;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  text-align: center;
}

/* row spacing */
.container .row {
  justify-content: center;
  gap: 20px;
}

/* card */
.product-card {
  background-color: #8D1B1B;
  border: none;
  width: 100%;
  max-width: 320px;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease;
  padding: 15px;
}

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

/* image box */
.img-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
}

/* image */
.img-box img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

/* card body */
.card-body {
  padding-top: 25px;
  padding-bottom: 20px;
}

/* title */
.card-body h5 {
  color: #FFF0D1;
  font-size: 32px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  margin-bottom: 20px;
}

/* price */
.price {
  font-size: 28px;
  font-weight: bold;
  color: #FFF0D1;
  margin-bottom: 0;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* tablet */
@media (max-width: 992px) {
  .logo {
    height: 80px;
    width: 80px;
  }

  .product-heading {
    font-size: 50px;
    padding-top: 30px;
  }

  .product-card {
    max-width: 300px;
  }

  .img-box img {
    max-height: 350px;
  }

  .card-body h5 {
    font-size: 26px;
  }

  .price {
    font-size: 24px;
  }
}

/* mobile */
@media (max-width: 768px) {
  .header {
    padding: 15px;
    min-height: 80px;
  }

  .logo {
    height: 70px;
    width: 70px;
  }

  .product-heading {
    font-size: 40px;
    padding-top: 20px;
  }

  .product-card {
    max-width: 90%;
    padding: 12px;
  }

  .img-box img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
  }

  .card-body h5 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .price {
    font-size: 20px;
  }
}

/* extra small mobile */
@media (max-width: 480px) {
  .logo {
    height: 60px;
    width: 60px;
  }

  .product-heading {
    font-size: 32px;
  }

  .product-card {
    max-width: 92%;
  }

  .img-box img {
    max-height: 320px;
  }

  .card-body h5 {
    font-size: 20px;
  }

  .price {
    font-size: 18px;
  }
}