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

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

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

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

/* menu button */
.navbar-toggler {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  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;
  color: #8D1B1B;
}

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

/* hero slider */
.slide-container {
  width: 100%;
  height: 500px;
  background-color: #FFF0D1;
}

.slide-img {
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.carousel-indicators [data-bs-target] {
  background-color: #8D1B1B;
}

.line2 {
  height: 4px;
  width: 100%;
  background-color: #8D1B1B;
  margin-top: 10px;
}

.product-section {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 30px;
}

.product-title {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-weight: bold;
  font-size: 40px;
  color: #8D1B1B;
  border-bottom: 2px solid #8D1B1B;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.product-subtitle {
  font-family: 'Courier New', Courier, monospace;
  font-size: 30px;
  color: #8D1B1B;
}

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

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

.card img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  background-color: #8D1B1B;
}

.card-body {
  padding-top: 20px;
}

.card-title {
  color: #f5e8c7;
  font-size: 32px;
  margin-bottom: 0;
}

.btn {
  background-color: #FFF0D1;
  font-weight: bold;
  color: #8D1B1B;
  border: none;
}

.btn:hover {
  background-color: #f5e8c7;
  color: #8D1B1B;
}

/* delight section */
.box1 {
  width: 100%;
  min-height: 250px;
  background-color: #8D1B1B;
  margin-top: 20px;
  padding: 30px 15px;
}

.container-heading {
  font-family: 'Lucida Sans Unicode';
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 70px;
  color: #FFF0D1;
  text-align: center;
}

.container-heading2 {
  font-family: 'Times New Roman', Times, serif;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 60px;
  color: #FFF0D1;
  padding-top: 10px;
  text-align: center;
}

.qoutes,
.qoutes2 {
  font-size: xx-large;
  color: #8D1B1B;
  font-weight: bold;
  font-family: cursive;
  text-align: center;
  margin: 0;
  padding: 10px;
}

.floating-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 50px 20px;
}

.box {
  width: 180px;
  height: 180px;
  border-radius: 20%;
  background: #8D1B1B;
  animation: move 3s linear infinite;
}

.box:nth-child(2) {
  animation-delay: 0.2s;
}

.box:nth-child(3) {
  animation-delay: 0.4s;
}

.box:nth-child(4) {
  animation-delay: 0.6s;
}

.box:nth-child(5) {
  animation-delay: 0.8s;
}

.box:nth-child(6) {
  animation-delay: 1s;
}

@keyframes move {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-30px);
  }
  100% {
    transform: translateX(0);
  }
}

.available {
  font-size: 40px;
  color: #8D1B1B;
  font-weight: bold;
  text-align: center;
  font-family: serif;
  padding-top: 30px;
}

.trusted {
  font-size: 25px;
  color: #8D1B1B;
  font-weight: bolder;
  text-align: center;
  padding: 10px 20px;
  font-family: serif;
}

.brand-section {
  padding-top: 10px;
  background-color: #FFF0D1;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 20px;
}

.amazon {
  padding-top: 15px;
  height: 60px;
}

.flipkart {
  height: 180px;
}

.instagram {
  height: 60px;
}

.container3 {
  min-height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.experiance {
  min-height: 50px;
  width: 600px;
  background-color: #8D1B1B;
  font-size: 30px;
  color: #FFF0D1;
  display: flex;
  justify-content: center;
  align-items: center;
  word-spacing: 10px;
  text-align: center;
  padding: 10px;
  font-family: 'Times New Roman', Times, serif;
  border-radius: 10px;
}

footer {
  margin-top: 35px;
}

.foot-pannel {
  background-color: #8D1B1B;
  color: white;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
}

.foot-pannel2 {
  background-color: gray;
  color: white;
  min-height: 300px;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

ul {
  margin-top: 20px;
}

ul p {
  font-weight: bold;
}

ul a {
  display: block;
  font-size: 0.85rem;
  margin-top: 10px;
  color: #dddddd;
}

.foot-pannel3 {
  background-color: #e7c162;
  color: white;
  border-top: 0.5px solid white;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.foot-pannel4 {
  background-color: #8D1B1B;
  color: white;
  min-height: 100px;
  font-size: 0.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.page {
  font-size: 0.7rem;
  padding: 25px;
}

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

  .slide-container,
  .slide-img {
    height: 380px;
  }

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

  .product-subtitle {
    font-size: 22px;
  }

  .container-heading {
    font-size: 50px;
  }

  .container-heading2 {
    font-size: 35px;
  }

  .box {
    width: 140px;
    height: 140px;
  }

  .flipkart {
    height: 120px;
  }

  .experiance {
    width: 90%;
    font-size: 22px;
  }
}

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

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

  .slide-container,
  .slide-img {
    height: 300px;
  }

  .slide-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .product-title {
    font-size: 26px;
  }

  .product-subtitle {
    font-size: 16px;
    padding: 0 10px;
  }

  .card {
    max-width: 320px;
    margin: auto;
  }

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

  .card-title {
    font-size: 22px;
  }

  .container-heading {
    font-size: 32px;
    padding: 10px;
  }

  .container-heading2 {
    font-size: 22px;
    padding: 10px;
  }

  .qoutes,
  .qoutes2 {
    font-size: 18px;
    padding: 0 15px;
  }

  .box {
    width: 100px;
    height: 100px;
  }

  .available {
    font-size: 24px;
    padding-top: 30px;
  }

  .trusted {
    font-size: 16px;
    line-height: 1.6;
  }

  .brand-section {
    flex-direction: column;
  }

  .amazon,
  .instagram {
    height: 40px;
  }

  .flipkart {
    height: 90px;
  }

  .experiance {
    width: 90%;
    font-size: 16px;
    word-spacing: normal;
  }

  .foot-pannel2 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}