    /* Spinner removal for number inputs */
    input[type="number"]::-webkit-outer-spin-button,
    input[type="number"]::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }

    input[type="number"] {
      -moz-appearance: textfield;
    }
body {
  font-family: "Noto Serif Tibetan", serif;
  background-color: #fef8f0;
}

.navbar {
  background-color: #b71c1c;
}

.navbar-brand,
.nav-link {
  color: #fff !important;
  font-weight: bold;
}
.carousel-item {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.carousel-item.active {
  opacity: 1;
  position: relative;
  z-index: 2;
}

.carousel-inner {
  position: relative;
  height: auto;
  overflow: hidden;
}
.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.carousel-caption {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  border-radius: 10px;
}

.product-card {
  border: 1px solid #eee;
  border-radius: 0;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transition: transform 0.3s;
text-align: center;
}

.product-card:hover {
  transform: scale(1.02);
}
.shop-header {
  background-color: #b71c1c;
  color: white;
  padding: 3rem 0;
  text-align: center;
}

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

.product-card img {
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 6px;
}
.product-title {
  color: #6a1b1a;
  font-size: 2rem;
  font-weight: bold;
}

.product-price {
  font-size: 1.5rem;
  color: #a31515;
  margin-bottom: 1rem;
}

.product-description {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

.thumb-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.thumb-img:hover {
  border-color: #a31515;
}

.main-image img {
  max-height: 450px;
  object-fit: contain;
  width: 100%;
}
.zoom-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.zoom-image {
  width: 100%;
  max-height: 450px;
  object-fit: contain;
  transition: transform 0.2s ease-out;
}

.zoom-container:hover .zoom-image {
  transform: scale(2);
  cursor: zoom-in;
}

.zoom-container .zoom-image {
  transform-origin: center center;
}
#sizeSelect {
  font-size: 1rem;
  padding: 0.4rem 0.8rem;
}

.btn-outline-danger {
  border-color: #a31515;
  color: #a31515;
}

.btn-outline-danger:hover {
  background-color: #a31515;
  color: white;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin: 2rem 0 1rem;
  color: #6a1b1a;
}
.contact-header {
  background-color: #b71c1c;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.form-control,
.btn {
  border-radius: 10px;
}

.btn-danger {
  background-color: #a31515;
  border: none;
}

.btn-danger:hover {
  background-color: #881212;
}

.contact-info {
  background-color: #fff8f2;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.about-header {
  background-color: #b71c1c;
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.about-text {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  line-height: 1.7;
}

.value-box {
  border: 1px solid #eee;
  padding: 1.5rem;
  border-radius: 10px;
  background-color: #fffaf6;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.value-box h5 {
  color: #a31515;
}

      .cart-item img {
        max-width: 80px;
        border-radius: 4px;
      }

      .cart-item {
        background: #fff;
        border-radius: 6px;
        padding: 15px;
        margin-bottom: 15px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
      }


      .order-summary {
        background-color: #fff;
        border-radius: 6px;
        padding: 20px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
      }

footer {
  background-color: #b71c1c;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 3rem;
}
