/*====================================================== Home Page Styles =========================================================================================*/
.owl-nav .owl-prev, .owl-nav .owl-next {
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat !important;
  background-size: 4rem 2rem !important;
  background-position: -2rem 0 !important;
  position: absolute;
  top: 50%;
  left: 1rem;
  transition: all 0.3s ease-in-out;
  transform: translateY(-50%);
  z-index: 99 !important;
}
.owl-nav .owl-prev span, .owl-nav .owl-next span {
  display: none;
}
.owl-nav .owl-prev:hover, .owl-nav .owl-next:hover {
  background-position: 0rem 0 !important;
}
.owl-nav .owl-prev {
  background-image: url("../images/icons/arrow-left.svg") !important;
}
.owl-nav .owl-next {
  right: 1rem;
  left: auto;
  background-image: url("../images/icons/arrow-right.svg") !important;
}

.owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 0.2rem;
  justify-content: center;
  align-items: center;
  background-color: rgba(124, 124, 124, 0.3176470588) !important;
}
.owl-dots .owl-dot.active {
  background-color: var(--brand) !important;
  width: 18px;
  height: 10px;
  border-radius: 6px;
}

.arrows {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  background-image: url("../images/icons/doubble-arrow.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
}

/*======================= Header Wrapper Styles ========================*/
.header__wrapper {
  background-color: rgba(239, 250, 252, 0.561);
}
.header__wrapper .items {
  min-height: calc(100vh - 5rem);
  padding: 4rem 0;
}
.header__wrapper .h1 {
  font-size: 3rem;
  background-color: rgba(0, 0, 0, 0.3294117647);
  line-height: 1.3;
  font-family: "Oswald", Arial, sans-serif;
}
.header__wrapper .h1 .arrows.white {
  width: 2.5rem;
  height: 3rem;
  background-image: url("../images/icons/arrow-right-lg.svg") !important;
  background-position: center right;
  background-size: 5rem 4rem;
  position: relative;
  top: 0.35rem;
}
.header__wrapper .owl-prev, .header__wrapper .owl-next {
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
}
.header__wrapper .owl-next {
  left: auto;
  right: 2rem;
}
.header__wrapper .owl-dots {
  position: absolute;
  bottom: 3rem;
  left: 0%;
  justify-content: flex-end;
  padding-right: 10vw;
  width: 100%;
}
.header__wrapper .owl-dots .owl-dot {
  background-color: #fff !important;
  width: 1.5rem;
  height: 1.5rem;
}
.header__wrapper .owl-dots .owl-dot::after {
  display: inline-block;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  font-size: 0.875rem;
  position: relative;
  top: -3px;
}
.header__wrapper .owl-dots .owl-dot:nth-child(1)::after {
  content: "1";
}
.header__wrapper .owl-dots .owl-dot:nth-child(2)::after {
  content: "2";
}
.header__wrapper .owl-dots .owl-dot:nth-child(3)::after {
  content: "3";
}
.header__wrapper .owl-dots .owl-dot:nth-child(4)::after {
  content: "4";
}
.header__wrapper .owl-dots .owl-dot:nth-child(5)::after {
  content: "5";
}
.header__wrapper .owl-dots .owl-dot:nth-child(6)::after {
  content: "6";
}
.header__wrapper .owl-dots .owl-dot.active {
  border-radius: 50%;
  border: 1px solid var(--brand);
  background-color: var(--dark) !important;
}
.header__wrapper.half__carousel .items {
  min-height: calc(100vh - 26rem);
}

.product__card .thumbnail {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.product__card .caption {
  background: rgba(0, 0, 0, 0.75);
  transition: all 0.3s ease-in-out;
  transform: translateY(100%);
  opacity: 0;
  z-index: 100;
  visibility: hidden;
}
.product__card .caption .title a {
  color: var(--white);
}
.product__card .caption .title a:hover {
  color: var(--brand);
  text-decoration: underline;
}
.product__card .caption .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.product__card.hero .caption_one {
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  transform: none;
  opacity: 1;
  visibility: visible;
}
.product__card.hero .caption_one .title {
  background: rgba(0, 0, 0, 0.65);
}
.product__card.hero:hover .caption_one {
  opacity: 0;
  visibility: hidden;
}
.product__card:hover .caption {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}

.heroProductCarousel .product__card .thumbnail {
  height: 436px;
}

/*------------ Login Card Styles ---------------*/
.login__card {
  max-width: 480px;
  box-shadow: 0 0 3rem rgba(234, 85, 3, 0.5882352941);
  border-radius: 1rem;
}
.login__card .icon__box {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(30deg, #ea5503, #fac914);
}
.login__card .icon__box img {
  position: relative;
  top: -0.5rem;
}
.login__card .form-control {
  height: 3.5rem;
  border-color: var(--brand);
  border-radius: 3rem;
  padding: 0.75rem 2rem 0.75rem 4rem;
  font-size: 1.25rem;
  background-repeat: no-repeat;
  background-size: 1.65rem;
  background-position: center left 1rem;
}
.login__card .btn-primary {
  font-size: 1.25rem;
  border-radius: 3rem;
  padding: 0% 3rem;
  transition: background 0.4s ease-in-out;
  background: linear-gradient(30deg, #ea5503, #fac914);
  min-height: 3.25rem;
  border: 0;
}
.login__card .btn-primary:hover, .login__card .btn-primary:focus {
  background: linear-gradient(360deg, #ea5503, #fac914);
  min-height: 3.25rem;
}
.login__card .links .divider {
  top: -1px;
}

/*------------- Product Detail Wrapper Styles -----------------*/
.product-img--main {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 450px;
}

.product-img--main__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.5s ease-out;
}

.product__detail__wrapper .carousel-indicators {
  position: static;
  margin: 0.75rem 0 0 0;
  justify-content: flex-start;
  overflow-x: auto;
}
.product__detail__wrapper .carousel-indicators [data-bs-target] {
  flex: 0 1 auto;
  width: 5rem;
  height: 4rem;
  padding: 0;
  margin: 0 0.5rem 0.5rem 0;
  text-indent: inherit;
  border: 2px solid transparent;
  opacity: 1;
  min-width: 5rem;
}
.product__detail__wrapper .carousel-indicators [data-bs-target] img {
  width: 5rem;
  height: 4rem;
}
.product__detail__wrapper .carousel-indicators .active {
  border-color: var(--dark);
}
.product__detail__wrapper .owl-nav .owl-prev, .product__detail__wrapper .owl-nav .owl-next {
  border: 0;
  background-color: transparent;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat !important;
  background-size: 4rem 2rem !important;
  background-position: -2rem 0 !important;
  transform: translateY(calc(50% - 4rem));
}
.product__detail__wrapper .size__list li {
  margin: 0 0.5rem 0.5rem 0;
}
.product__detail__wrapper .size__list li .btn {
  position: relative;
}
.product__detail__wrapper .size__list li .btn-outline-dark {
  border-radius: 0.2rem;
  border-width: 2px;
  font-size: 1.125rem;
  padding: 0% 0.75rem;
  min-width: 3.24rem;
}
.product__detail__wrapper .size__list li .btn-outline-dark:hover, .product__detail__wrapper .size__list li .btn-outline-dark:focus, .product__detail__wrapper .size__list li .btn-outline-dark:active {
  background-color: var(--dark);
  color: var(--white);
}
.product__detail__wrapper #colorList .btn.active::after {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLWNoZWNrIj48cG9seWxpbmUgcG9pbnRzPSIyMCA2IDkgMTcgNCAxMiI+PC9wb2x5bGluZT48L3N2Zz4=") no-repeat center center/1.35rem;
}
.product__detail__wrapper .price__box .discount {
  color: #0b6b01;
}
.product__detail__wrapper .btn-dark img {
  max-height: 1.5rem;
}
.product__detail__wrapper .nav-pills {
  border-bottom: 3px solid #e8e8e9;
}
.product__detail__wrapper .nav-pills .nav-link {
  border: 1px solid #aaa;
  color: var(--dark);
  font-size: 1.125rem;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 0%;
  margin-right: 0.5rem;
  padding: 0.25rem 1rem;
}
.product__detail__wrapper .review__list {
  max-height: 32.5rem;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.product__detail__wrapper .review__list li {
  padding-bottom: 0.875rem;
}
.product__detail__wrapper .review__list li:not(:last-child) {
  border-bottom: 1px solid #eee;
  margin-bottom: 0.875rem;
}
.product__detail__wrapper .review__list li .thumbnail {
  width: 3.5rem;
  height: 3.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.product__detail__wrapper .review__list li .caption {
  width: calc(100% - 3.5rem);
  padding-left: 0.875rem;
}
.product__detail__wrapper .review__list li .caption .stars .star {
  margin-right: 0.2rem;
  font-size: 14px;
  color: var(--border-color);
}
.product__detail__wrapper .review__list li .caption .stars .star.active:nth-child(1) {
  color: #ffc200;
}
.product__detail__wrapper .review__list li .caption .stars .star.active:nth-child(2) {
  color: #ffbc06;
}
.product__detail__wrapper .review__list li .caption .stars .star.active:nth-child(3) {
  color: #ffae18;
}
.product__detail__wrapper .review__list li .caption .stars .star.active:nth-child(4) {
  color: #ff9736;
}
.product__detail__wrapper .review__list li .caption .stars .star.active:nth-child(5) {
  color: #ff953a;
}
.product__detail__wrapper .star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  padding: 0 0.2em;
  text-align: center;
  width: 6.5rem;
}
.product__detail__wrapper .star-rating input {
  display: none;
}
.product__detail__wrapper .star-rating label {
  color: #ccc;
  cursor: pointer;
  margin-right: 0.2rem;
}
.product__detail__wrapper .star-rating :checked ~ label {
  color: #f90;
}
.product__detail__wrapper .star-rating label:hover,
.product__detail__wrapper .star-rating label:hover ~ label {
  color: #fc0;
}

.counter__box {
  max-width: 9rem;
  border: 1px solid #e8e8e9;
}
.counter__box .btn {
  width: 2.5rem;
  min-height: 2.875rem;
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 0%;
}
.counter__box .btn:hover, .counter__box .btn:focus {
  background-color: #f0f0f0;
  color: var(--dark);
}
.counter__box .form-control {
  width: calc(100% - 5rem);
  height: 2.875rem;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.disc__list {
  padding-left: 1rem;
}
.disc__list li {
  list-style-type: disc;
}

.scroller * {
  scrollbar-width: thin;
  scrollbar-color: #ddd #eee;
}

.scroller *::-webkit-scrollbar {
  width: 12px;
}

.scroller *::-webkit-scrollbar-track {
  background: #eee;
}

.scroller *::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 20px;
  border: 3px solid #eee;
}

/*---------------------- Cart Page Styles ----------------------------*/
.product__cart__table {
  font-size: 0.937rem;
}
.product__cart__table .thumbnail__box .btn {
  width: 3rem;
  padding: 0%;
}
.product__cart__table .thumbnail__box .btn:hover, .product__cart__table .thumbnail__box .btn:focus, .product__cart__table .thumbnail__box .btn:active {
  background-color: #fff;
}
.product__cart__table .thumbnail__box .thumbail {
  width: calc(100% - 3rem);
  padding-left: 1rem;
  text-align: center;
}
.product__cart__table .thumbnail__box .thumbail img {
  max-height: 6rem;
}
.product__cart__table .form-control {
  max-width: 4rem;
  height: 2.25rem;
  padding-right: 0;
}
.product__cart__table .lh-1-3 {
  line-height: 1.3;
}
.product__cart__table .border-secondary {
  border-color: #d9d9d9 !important;
}
.product__cart__table .counter__box {
  width: 100%;
  display: flex;
  margin: 0 !important;
}
.product__cart__table .counter__box .btn:focus {
  background-color: var(--white);
}
.product__cart__table .coupon_code_form__wrapp {
  padding: 0.2rem;
  max-width: 34rem;
  border-radius: 3rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.product__cart__table .coupon_code_form__wrapp .form-control {
  width: calc(100% - 11rem);
  max-width: 100%;
  min-height: 3rem;
  border: 0;
  padding-left: 1.5rem;
  font-size: 1.25rem;
}

.btn-primary-linear {
  font-size: 1rem;
  border-radius: 3rem;
  padding: 0% 1rem;
  transition: background 0.4s ease-in-out;
  background: linear-gradient(30deg, #ea5503, #fac914);
  min-height: 3rem;
  border: 0;
  width: 100%;
  max-width: 11rem;
  color: var(--white);
}
.btn-primary-linear:hover, .btn-primary-linear:focus {
  background: linear-gradient(360deg, #ea5503, #fac914);
}

.checkout__btn__hover {
  max-width: 100%;
}

/*---------------- Start Page Styles -----------------------*/
.menu__btn svg {
  width: 2.25rem;
  height: 2.25rem;
}

.side__menu {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  min-height: 100vh;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s linear;
}
.side__menu .content {
  max-width: 300px;
  min-height: 100vh;
}
.side__menu .content .links__list {
  max-height: calc(100vh - 3.5rem);
  overflow-y: auto;
  overflow-x: hidden;
}
.side__menu .content .links__list a {
  padding: 0.25rem 1rem;
}
.side__menu.js--open {
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1399px) {
  .product__card .thumbnail {
    height: 255px;
  }
  .heroProductCarousel .product__card .thumbnail {
    height: 360px;
  }
  .header__wrapper.half__carousel .items {
    min-height: calc(100vh - 21.25rem);
  }
}
@media (max-width: 1200px) {
  .header__wrapper {
    min-height: 36rem;
  }
  .header__wrapper .items {
    min-height: 36rem;
  }
  .header__wrapper.half__carousel {
    min-height: calc(100vh - 23.1rem);
  }
  .header__wrapper.half__carousel .items {
    min-height: calc(100vh - 23.1rem);
  }
}
@media (max-width: 992px) {
  .header__wrapper.half__carousel {
    min-height: calc(100vh - 24.3rem);
  }
  .header__wrapper.half__carousel .items {
    min-height: calc(100vh - 24.3rem);
  }
}
@media (max-width: 768px) {
  .header__wrapper .h1 {
    font-size: 2.5rem;
  }
  .header__wrapper.half__carousel {
    min-height: calc(100vh - 27.2rem);
  }
  .header__wrapper.half__carousel .items {
    min-height: calc(100vh - 27.2rem);
  }
  .product__cart__table .thumbnail__box .thumbail {
    width: 100%;
    padding-left: 0;
  }
  .product__cart__table .thumbnail__box .thumbail img {
    max-height: 100%;
  }
}
@media (min-width: 768px) {
  .border-bottom-md-0 {
    border-bottom: 0 !important;
  }
}
@media (max-width: 576px) {
  .header__wrapper {
    min-height: 20rem;
  }
  .header__wrapper .items {
    min-height: 20rem;
  }
  .header__wrapper .h1 {
    font-size: 2rem;
  }
  .header__wrapper .h1 .arrows.white {
    width: 1.75rem;
    height: 1.5rem;
    background-size: 3.5rem 2rem;
    top: 0.2rem;
  }
  .header__wrapper .owl-prev, .header__wrapper .owl-next {
    display: none;
  }
  .header__wrapper .owl-dots {
    bottom: 1rem;
    padding-right: 1rem;
  }
  .header__wrapper.half__carousel, .header__wrapper.resposnive_half_height {
    min-height: calc(100vh - 22.25rem);
  }
  .header__wrapper.half__carousel .items, .header__wrapper.resposnive_half_height .items {
    min-height: calc(100vh - 22.25rem);
  }
  .product__card .thumbnail {
    height: auto;
  }
  .product__detail__wrapper .nav-pills .nav-link {
    font-size: 1rem;
    margin-right: 0.25rem;
    padding: 0.25rem 0.5rem;
  }
  .heroProductCarousel .product__card .thumbnail {
    height: 210px;
  }
}/*# sourceMappingURL=style.css.map */