html {
  line-height: 1.3;
  font-size: 100%;
}

* {
  box-sizing: border-box;
}

*::before,
*::before {
  box-sizing: border-box;
}

body {
  font-family: "Kumbh Sans", sans-serif;
  min-height: 100vh;
  padding: 0;
  overflow-x: hidden;
  margin: 0;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 767px) {
  .container {
    width: 375px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    width: 790px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
@media (min-width: 922px) {
  .container {
    width: 910px;
  }
}
@media (max-width: 799px) and (min-width: 768px) {
  .container {
    width: 700px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

a {
  text-decoration: none;
  transition: 500ms;
}

button, input {
  border: 0;
  background: 0;
  border-radius: 0;
}
button:focus, input:focus {
  outline: none;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  user-select: none;
}

.header {
  position: relative;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  z-index: 1;
}
@media (max-width: 991px) {
  .header {
    z-index: 2;
  }
}
.header .nav {
  border-bottom: 1px solid #b6bcc8;
}
.header .nav .nav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.header .nav .nav__list .open-menu {
  display: none;
}
@media (max-width: 991px) {
  .header .nav .nav__list .open-menu {
    display: block;
  }
}
.header .nav .nav__list .link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
.header .nav .nav__list .link .link__list {
  display: flex;
  position: relative;
  margin-left: 15px;
}
@media (max-width: 991px) {
  .header .nav .nav__list .link .link__list {
    flex-direction: column;
    position: absolute;
    z-index: 9999;
    top: 0;
    left: -221px;
    width: 50%;
    z-index: 3;
    background-color: white;
    height: 100vh;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: 300ms;
  }
  .header .nav .nav__list .link .link__list.open {
    left: -14px;
  }
  .header .nav .nav__list .link .link__list.open .close {
    display: block;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .header .nav .nav__list .link .link__list {
    left: -500px;
  }
}
@media (max-width: 799px) and (min-width: 768px) {
  .header .nav .nav__list .link .link__list {
    left: -411px;
  }
}
@media (max-width: 767px) and (min-width: 376px) {
  .header .nav .nav__list .link .link__list {
    left: -389px;
  }
}
.header .nav .nav__list .link .link__list .close {
  display: none;
  width: 25px;
  height: 25px;
  margin: 30px 20px 0px;
}
.header .nav .nav__list .link .link__list li {
  position: relative;
  height: 80px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  cursor: pointer;
}
.header .nav .nav__list .link .link__list li::after {
  content: "";
  position: absolute;
  left: -100%;
  bottom: -1px;
  width: 100%;
  opacity: 0;
  height: 3px;
  background-color: #ff7d1a;
  transition: 300ms;
}
.header .nav .nav__list .link .link__list li:hover a {
  color: #ff7d1a;
}
.header .nav .nav__list .link .link__list li:hover::after {
  left: 0%;
  opacity: 1;
}
.header .nav .nav__list .link .link__list li a {
  display: block;
  padding: 0 18px;
  color: #68707d;
  transition: 300ms;
}
@media (max-width: 991px) {
  .header .nav .nav__list .link .link__list li a {
    color: #1d2025;
    font-weight: bold;
    font-size: 20px;
  }
}
.header .nav .nav__list .link__user {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100px;
}
.header .nav .nav__list .link__user .cart {
  cursor: pointer;
  position: relative;
  z-index: 3;
}
.header .nav .nav__list .link__user .cart span.product-span {
  display: none;
  position: absolute;
  right: -5px;
  top: -5px;
  background-color: #ff7d1a;
  color: white;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  text-align: center;
  font-size: 10px;
}
.header .nav .nav__list .link__user .cart__box {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 300%;
  right: -750%;
  display: flex;
  justify-content: center;
  align-items: space-between;
  flex-direction: column;
  width: 350px;
  height: 237.69px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 7px;
  background-color: white;
  transition: 300ms;
}
.header .nav .nav__list .link__user .cart__box.show {
  opacity: 1;
  visibility: visible;
  top: 250%;
}
@media (max-width: 991px) {
  .header .nav .nav__list .link__user .cart__box {
    left: -1192%;
    width: 380px;
  }
}
.header .nav .nav__list .link__user .cart__box .empty {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #1d2025;
}
.header .nav .nav__list .link__user .cart__box .head {
  border-bottom: 1px solid #b6bcc8;
  margin-bottom: 15px;
}
.header .nav .nav__list .link__user .cart__box .head h3 {
  padding: 20px 0 20px 15px;
}
.header .nav .nav__list .link__user .cart__box .product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 15px 15px 0 15px;
  margin-bottom: 15px;
}
.header .nav .nav__list .link__user .cart__box .product .img {
  margin-right: 5px;
}
.header .nav .nav__list .link__user .cart__box .product .img img {
  width: 100px;
  border-radius: 7px;
}
.header .nav .nav__list .link__user .cart__box .product .the-prod {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.header .nav .nav__list .link__user .cart__box .product .the-prod .details span {
  display: inline-block;
}
.header .nav .nav__list .link__user .cart__box .product .the-prod .details span.title {
  margin-bottom: 10px;
  color: #b6bcc8;
  font-size: 15px;
  font-weight: 300;
}
.header .nav .nav__list .link__user .cart__box .product .the-prod .details span.for-one {
  color: #68707d;
  font-size: 15px;
  font-weight: 300;
}
.header .nav .nav__list .link__user .cart__box .product .the-prod .details span.total {
  color: #1d2025;
  font-size: 15px;
  font-weight: 600;
}
.header .nav .nav__list .link__user .cart__box .product .the-prod .delete img {
  width: 25px;
  height: 20px;
}
.header .nav .nav__list .link__user .cart__box .check {
  padding: 0 15px 15px 15px;
}
.header .nav .nav__list .link__user .cart__box .check button.check-bnt {
  width: 100%;
  padding: 7px 0;
  background-color: #ff7d1a;
  color: white;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 7px;
}
.header .nav .nav__list .link__user .avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border-radius: 50%;
}
.header .nav .nav__list .link__user .avatar.opened a.avatar-img, .header .nav .nav__list .link__user .avatar:hover a.avatar-img {
  border: 2px solid #ff7d1a;
}
.header .nav .nav__list .link__user .avatar a.avatar-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: block;
  transition: none;
}
.header .nav .nav__list .link__user .avatar a.avatar-img img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero {
  padding: 15px;
}
@media (min-width: 992px) {
  .hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    gap: 30px;
    width: 910px;
    margin: 50px auto;
    border-radius: 30px;
    background-color: white;
    z-index: 2;
  }
}

.slidercontainer {
  position: relative;
  z-index: 1;
}
.slidercontainer .show-slide {
  display: none;
}
.slidercontainer .show-slide img {
  width: 100%;
  transition: 300ms;
}
@media (min-width: 992px) {
  .slidercontainer .show-slide img {
    width: 100%;
    height: 325px;
    margin: 0 auto;
    border-radius: 15px;
    cursor: pointer;
  }
}
.slidercontainer a.left,
.slidercontainer a.right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
}
@media (min-width: 992px) {
  .slidercontainer a.left,
.slidercontainer a.right {
    display: none;
  }
}
.slidercontainer a.left img,
.slidercontainer a.right img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.slidercontainer a.left.left,
.slidercontainer a.right.left {
  left: 15px;
}
.slidercontainer a.left.right,
.slidercontainer a.right.right {
  right: 15px;
}
.slidercontainer .tabs {
  display: none;
}
@media (min-width: 992px) {
  .slidercontainer .tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
  .slidercontainer .tabs button.tab-img.active img {
    opacity: 0.7;
    border: 2px solid #ff7d1a;
  }
  .slidercontainer .tabs button.tab-img:hover img {
    opacity: 0.7;
  }
  .slidercontainer .tabs button.tab-img img {
    border-radius: 7px;
    width: 140px;
    height: 70px;
    opacity: 1;
    transition: opacity 300ms;
  }
}

.detials .info h3 {
  font-size: 25px;
  margin-top: 10px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #ff7d1a;
  line-height: 1.6;
}
.detials .info h1 {
  margin-bottom: 15px;
  color: #1d2025;
}
.detials .info p {
  font-size: 20px;
  line-height: 1.5;
  color: #68707d;
  font-weight: 500;
}
.detials .price {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
@media (min-width: 992px) {
  .detials .price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
}
.detials .price .real-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.detials .price .real-price h1 {
  margin-bottom: 15px;
  font-weight: bold;
  color: #1d2025;
}
.detials .price .real-price span {
  border-radius: 7px;
  background-color: #ffa866;
  color: white;
  text-align: center;
  line-height: 35px;
  padding: 5px 15px;
  display: block;
  margin: 0 0 9px 20px;
  font-size: 21px;
  font-weight: bold;
}
.detials .price .with-cobon h3 {
  font-size: 25px;
  margin-bottom: 9px;
  color: gray;
  text-decoration: line-through;
  opacity: 0.5;
}
.detials .number {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  background-color: #f7f8fd;
  padding: 15px 5px;
  width: 100%;
  border-radius: 7px;
}
@media (min-width: 992px) {
  .detials .number {
    width: 50%;
  }
}
.detials .number .minus,
.detials .number .plus {
  transition: 300ms;
}
.detials .number .minus:hover,
.detials .number .plus:hover {
  opacity: 0.7;
}
.detials .number .the-num h3 {
  font-size: 22px;
}
.detials .add-button {
  margin-top: 15px;
}
@media (min-width: 992px) {
  .detials .add-button {
    width: 50%;
  }
}
.detials .add-button button.add {
  width: 100%;
  padding: 15px 0;
  background-color: orange;
  border-radius: 7px;
  color: white;
  font-size: 20px;
  font-weight: bold;
  font-family: inherit;
  transition: 300ms;
}
.detials .add-button button.add:hover {
  opacity: 0.7;
}

@media (min-width: 992px) {
  .parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 5px;
  }
}
.lightbox {
  display: none;
}

@media (min-width: 992px) {
  .lightbox {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: 300ms;
  }
  .lightbox.show {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .lightbox .cross {
    position: relative;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .lightbox .cross {
    display: none;
  }
}
@media (min-width: 992px) {
  .lightbox .cross button.delete {
    padding: 15px;
  }
  .lightbox .cross button.delete:hover path {
    fill: #ff7d1a;
  }
  .lightbox .cross button.delete svg {
    position: absolute;
    right: 0;
  }
  .lightbox .cross button.delete svg path {
    fill: white;
    transition: 300ms;
    cursor: pointer;
  }
}
@media (min-width: 992px) {
  .lightbox .image {
    position: relative;
    z-index: 3;
  }
  .lightbox .image .lightbox-show-slide {
    display: none;
  }
  .lightbox .image .lightbox-show-slide img {
    width: 100%;
    transition: 300ms;
    height: 450px;
    border-radius: 15px;
    margin-top: 20px;
  }
  .lightbox .image a.left,
.lightbox .image a.right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    cursor: pointer;
  }
  .lightbox .image a.left svg,
.lightbox .image a.right svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .lightbox .image a.left.left,
.lightbox .image a.right.left {
    left: -25px;
  }
  .lightbox .image a.left.right,
.lightbox .image a.right.right {
    right: -25px;
  }
}
.overlayer {
  display: none;
}

@media (min-width: 992px) {
  .overlayer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2;
  }
  .overlayer.open-lightbox {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */
