/* base.html  */
/* nav-bar code  */
* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
}

nav {
  background: #923e46;
  height: 80px;
  width: 100%;

}

.logo a {
  color: white;
  font-size: 35px;
  line-height: 80px;
  padding: 0 100px;
  font-weight: bold;
  text-decoration: none;
}

nav ul {
  float: right;
  margin-right: 20px;
  z-index: 999;
  margin-bottom: 0;
}

nav ul li {
  display: inline-block;
  line-height: 70px;
  margin: 0 5px;
}

nav ul li a {
  color: white;
  font-size: 17px;
  padding: 5px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  text-decoration: none;
}

nav ul li a:hover {
  text-decoration: underline;
}

.checkbtn {
  font-size: 30px;
  color: white;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}

#check {
  display: none;
}

@media (max-width: 952px) {
  .logo a {
    font-size: 30px;
    padding-left: 50px;
    color: white;
  }

  nav ul li a {
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  .checkbtn {
    display: block;
  }

  nav ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #6c757d;
    top: 80px;
    right: -100%;
    text-align: center;
    transition: all .5s;
  }

  nav ul li {
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }

  nav ul li a {
    font-size: 20px;
  }

  a:hover,
  a.active {
    background: none;
    color: #0082e6;
  }

  #check:checked~ul {
    right: 0;
  }
}

.search-input {
  height: 30px;
  border-radius: 0.5rem;
  padding: 5px 10px;
  border: 1px solid white;
}

.search-button {
  border: none;
  cursor: pointer;
  background: none;
}

.search-button i {
  color: white;
  padding: 6px;
  border: 1px solid #923e46;
}

.search-button i:hover {
  border: 1px solid white;
  border-radius: 7px;
}

.cart-icon {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}

.item-count2 {
  /* background-color: #187122; */
  color: white;
  border-radius: 50%;
  padding: 0 5px;
  position: absolute;
  top: -12px;
  /* left: 18px; */
  font-size: 12px;
  /* border: 1px solid green; */
}

.item-count1 {
  /* background-color: #187122; */
  color: white;
  border-radius: 50%;
  padding: 0 5px;
  position: absolute;
  top: -12px;
  /* left: 22px; */
  font-size: 12px;
  /* border: 1px solid green; */
}

#alertContainer {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 555;
  width: 90%;
}

.footer-11 {
  background-color: #adb5bd;
  padding: 1rem;
  color: white;
  text-align: center;
  width: 100%;
  margin-top: 2rem;
}
.footer-11 p{
  margin-bottom: 0;
}

/* base.html  */

/* Product_details_page carousel code  */

.swiper {
  width: 50vw;
  margin-left: 2rem;
  margin-right: 5rem;
}

.swiper-slide {
  background-color: #fff;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: contain;
}

.swiper-button {
  width: 50px;
  height: 50px;
  color: #fff;
  background: transparent;
  border: none;
  outline: none;
  transition: opacity 0.25s;
}

.swiper button:hover {
  opacity: 0.8;
}

.swiper button::before,
.swiper button::after {
  font-size: 22px;

}

.swiper-button-prev {
  left: 0;
  border: none;
  background-color: transparent;
  color: #dee2e6;
}

.swiper-button-next {
  right: 0;
  border: none;
  background-color: transparent;
  color: #dee2e6;
}

.swiper-button-prev:hover {
  background-color: transparent;
  color: #adb5bd;
  font-size: 25px;
}

.swiper-button-next:hover {
  background-color: transparent;
  color: #adb5bd;
  font-size: 25px;
}

.swiper-pagination-bullet {
  background-color: #adb5bd;
}

/* Product_details_page carousel code  */

.swiper-container {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  text-align: center;
  width: 14rem;
  max-height: 22rem;
}

.card img {
  max-width: 100%;
  border-radius: 10px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #0d0101;
  /* Change color of navigation buttons */
}