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

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

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

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

.navbar-toggler {
  border: none;
  box-shadow: none;
  background: transparent;
}

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

.navbar-toggler-icon {
  width: 30px;
  height: 30px;
  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");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.offcanvas {
  background-color: #FFF0D1;
}

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

.offcanvas-body .nav-link {
  color: #8D1B1B;
  margin-bottom: 10px;
}

/* Product Gallery */
.product-gallery {
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
}

#carouselExampleInterval {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}

#carouselExampleInterval img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  display: block;
  background-color: #FFF0D1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(100%);
}

/* Thumbnail slider */
.thumbnail-slider {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 15px 5px;
  margin-top: 10px;
  scrollbar-width: none;
}

.thumbnail-slider::-webkit-scrollbar {
  display: none;
}

.thumbnail-slider img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.3s;
}

.thumbnail-slider img:hover {
  border: 2px solid #8D1B1B;
}

.active-thumb {
  border: 2px solid #8D1B1B !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header {
    min-height: 100px;
  }

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

  #carouselExampleInterval img {
    height: 320px;
  }

  .thumbnail-slider img {
    width: 70px;
    height: 70px;
  }
}
.product-details-section {
  width: 100%;
  max-width: 700px;
  margin: 40px auto;
  padding: 20px;
  color: #8D1B1B;
}

.brand-name {
  font-size: 14px;
  letter-spacing: 2px;
  color: #8D1B1B;
  margin-bottom: 10px;
}

.product-title {
  font-size: 55px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 25px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.old-price {
  font-size: 22px;
  text-decoration: line-through;
  color: #8b6a75;
}

.new-price {
  font-size: 30px;
  font-weight: bold;
}


.product-description h3 {
  font-size: 34px;
  margin-bottom: 20px;
  
}

.product-description p {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 25px;
  font-style:italic;
}

.product-features {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-top: 50px;
  gap: 20px;
}

.feature-box {
  flex: 1;
}

.feature-box i {
  font-size: 42px;
  margin-bottom: 15px;
}

.feature-box p {
  font-size: 24px;
}

@media (max-width: 768px) {
  .product-title {
    font-size: 38px;
  }

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

  .shipping-text,
  .product-description p,
  .feature-box p,
  .share-box,
  .stock-alert {
    font-size: 18px;
  }

  .cart-btn,
  .buy-btn {
    font-size: 24px;
    padding: 18px;
  }

  .product-features {
    flex-direction: column;
  }
}
.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 a {
  display: block;
  font-size: 0.85rem;
  margin-top: 10px;
  color: #dddddd;
}



