* {
  font-family: 'Poppins' , sans-serif;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
  text-decoration: none;
  text-transform: capitalize;
  transition: all .2s linear;
}

section {
  padding: 3rem 9%;
}

h3 {
  font-weight: bold;
}

html {
  overflow-x: hidden;
  font-size: 62.5%;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background-color: #eee;
}

html::-webkit-scrollbar-thumb {
  background-color: #0984e3;
  border-radius: 5rem;
}

@keyframes fadeIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
}

.my-btn {
  margin: 1rem;
  display: inline-block;
  padding: 1rem 3rem;
  border-radius: .5rem;
  font-size: 1.7rem;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  background-color: #0984e3;
}

.my-btn:hover {
  color: #fff;
  background-color: #333;
}

.heading {
  font-size: 3.5rem;
  margin-bottom: 3rem;
  color: #333;
  text-align: center;
}

.heading span {
  color: #0984e3;
}

body {
  background-color: #eee;
}

.head {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: #0984e3;
  padding: 1rem 9%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.head .logo {
  font-size: 2.5rem;
  color: #fff;
  font-weight: bolder;
  text-decoration: none;
}

.head .logo i {
  color: gold;
}

.head .search-form {
  border-radius: 5rem;
  height: 5rem;
  width: 50rem;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  background-color: #fff;
}

.head .search-form input {
  width: 100%;
  padding-right: 1rem;
  font-size: 1.7rem;
  text-transform: none;
  color: #666;
}

.head .search-form label {
  font-size: 2rem;
  color: #666;
  cursor: pointer;
}

.head .search-form label:hover {
  color: #0984e3;
}

.head .icons a, .head .icons div {
  font-size: 2.5rem;
  color: #fff;
  margin-left: 2rem;
  cursor: pointer;
  text-decoration: none;
}

.head .icons a:hover, .head .icons div:hover {
  color: gold;
}

#search-btn {
  display: none;
}

.side-bar {
  transition: all .5s linear;
  position: fixed;
  top: 0;
  left: -110%;
  width: 30rem;
  height: 100%;
  background-color: #fff;
  z-index: 10000;
}

.side-bar.active {
  left: 0;
  box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
}

.side-bar #cloth-side-bar {
  position: absolute;
  top: 1rem;
  right: 2rem;
  color: #666;
  font-size: 4rem;
  cursor: pointer;
}

.side-bar #cloth-side-bar:hover {
  transform: rotate(90deg);
  color: #333;
}

.side-bar .user {
  padding: 2rem;
  background-color: #eee;
  text-align: center;
}

.side-bar .user img {
  width: 17rem;
  height: 17rem;
  border-radius: 50%;
  border: 1rem solid white;
  box-shadow: 0.5rem 1rem rgba(0, 0, 0, 0.1);
  margin-bottom: .5rem;
}

.side-bar .user h3 {
  padding: 0 .5rem;
  font-size: 1.7rem;
  color: #666;
}

.side-bar .user a {
  font-size: 1.5rem;
  color: #0984e3;
  text-decoration: none;
}

.side-bar .user a:hover {
  color: #333;
}

.side-bar .navbar {
  padding-top: 1rem;
}

.side-bar .navbar a {
  display: block !important;
  width: 100%;
  height: 100%;
  padding: 1rem 2rem;
  font-size: 1.7rem;
  color: #666;
  text-decoration: none;
}

.side-bar .navbar a:hover {
  color: #0984e3;
}

.side-bar .navbar a:hover i {
  padding-right: 2rem;
}

.side-bar .navbar a i {
  padding-right: .5rem;
}

.home {
  background-color: #fff;
}

.home .home-slider .slide {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  min-height: 40rem;
  padding: 2rem 0;
}

.home .home-slider .slide .image {
  flex: 1 1 42rem;
  text-align: center;
}

.home .home-slider .slide .image img {
  height: 30rem;
}

.home .home-slider .slide .content {
  flex: 1 1 42rem;
}

.home .home-slider .slide .content span {
  font-size: 2rem;
  color: #0984e3;
}

.home .home-slider .slide .content h3 {
  padding: .5rem;
  color: #333;
  font-size: 3rem;
}

.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 3rem !important;
  color: #333;
}

.banner .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
  gap: 2rem;
}

.banner .box-container .box {
  position: relative;
  height: 25rem !important;
  border: 0.2rem solid #333;
  border-radius: .5rem;
  overflow: hidden;
  box-shadow: 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.banner .box-container .box:hover img {
  transform: scale(1.1);
}

.banner .box-container .box img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
}

.banner .box-container .box .content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%) rotate(-45deg);
}

.banner .box-container .box .content span {
  font-size: 1.7rem;
  color: #0984e3;
}

.banner .box-container .box .content h3 {
  font-size: 2rem;
  color: #333;
  padding: .5rem 0;
}

.arrivel .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
  gap: 2rem;
}

.arrivel .box-container .box {
  background-color: #fff;
  display: flex;
  gap: 1rem;
  align-items: center;
  border: 0.2rem solid #333;
  border-radius: .5rem;
  overflow: hidden;
  box-shadow: 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.arrivel .box-container .box:hover .main-img {
  display: none;
}

.arrivel .box-container .box:hover .hover-img {
  display: inline-block !important;
}

.arrivel .box-container .box .image img {
  height: 15rem;
  animation: fadeIn .2s linear;
}

.arrivel .box-container .box .image .hover-img {
  display: none;
}

.arrivel .box-container .box .content h3 {
  font-size: 2rem;
  color: #333;
}

.arrivel .box-container .box .content .price {
  padding-top: .5rem;
  font-size: 2rem;
  padding: .7rem 0;
  color: #0984e3;
  padding-bottom: .7rem;
}

.arrivel .box-container .box .content .price span {
  color: #666;
  font-size: 1.5rem;
  text-decoration: line-through;
}

.arrivel .box-container .box .content .stars i {
  font-size: 1.5rem;
  color: gold;
}

.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.about .image {
  flex: 1 1 42rem;
}

.about .image img {
  width: 100%;
  height: 100%;
}

.about .content {
  flex: 1 1 42rem;
  padding: 3rem;
  background-color: #fff;
}

.about .content h3 {
  font-size: 3rem;
  text-transform: uppercase;
  color: #333;
}

.about .content p {
  font-size: 1.5rem;
  padding: 1rem 0;
  line-height: 2;
  color: #666;
}

.faq .accordion-container {
  max-width: 70rem;
  margin: 0 auto;
}

.faq .accordion-container .accordion {
  background-color: #fff;
  margin: 1.5rem;
  box-shadow: 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.faq .accordion-container .accordion:last-child {
  margin: 2rem;
}

.faq .accordion-container .accordion.active .accordion-heading {
  background-color: #0984e3;
}

.faq .accordion-container .accordion.active .accordion-heading i {
  transform: rotate(180deg);
}

.faq .accordion-container .accordion.active .accordion-content {
  display: block;
}

.faq .accordion-container .accordion .accordion-heading {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background-color: #333;
  cursor: pointer;
}

.faq .accordion-container .accordion .accordion-heading h3 {
  color: #fff;
  font-size: 3rem;
}

.faq .accordion-container .accordion .accordion-heading i {
  font-size: 2rem;
  color: #fff;
}

.faq .accordion-container .accordion .accordion-content {
  padding: 2rem;
  line-height: 2;
  font-size: 1.5rem;
  color: #666;
  display: none;
  animation: fadeIn .02s linear;
}

.reviw .slide {
  width: 30rem;
  text-align: center;
  padding: 3rem;
  border: 0.2rem solid #333;
  box-shadow: 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.reviw .slide img {
  height: 10rem;
  width: 10rem;
  border-radius: 50%;
  margin-bottom: .5rem;
}

.reviw .slide h3 {
  font-size: 2rem;
  color: #333;
}

.reviw .slide span {
  color: #0984e3;
  font-size: 1.7rem;
}

.reviw .slide p {
  font-size: 1.5rem;
  color: #666;
  line-height: 2;
  padding-top: 1rem;
}

.catagory .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 2rem;
}

.catagory .box-container .box {
  background-color: #fff;
  text-align: center;
  border: 0.2rem solid #333;
  border-radius: .5rem;
  text-decoration: none;
  box-shadow: 0.5rem 1rem rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.catagory .box-container .box:hover {
  background-color: #333;
}

.catagory .box-container .box:hover h3 {
  color: #fff;
}

.catagory .box-container .box img {
  height: 8rem;
  margin-bottom: .5rem;
}

.catagory .box-container .box h3 {
  font-size: 1.7rem;
  color: #333;
}

.product .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
  gap: 2rem;
}

.product .box-container .box {
  background-color: #fff;
  text-align: center;
  border: 0.2rem solid #333;
  border-radius: .5rem;
  text-decoration: none;
  box-shadow: 0.5rem 1rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.product .box-container .box .image:hover .main-img {
  display: none;
}

.product .box-container .box .image:hover .hover-img {
  display: inline-block !important;
}

.product .box-container .box .image:hover .icons {
  left: 1rem;
}

.product .box-container .box .image {
  position: relative;
}

.product .box-container .box .image img {
  height: 30rem;
  margin-bottom: .5rem;
  animation: fadeIn .2s linear;
}

.product .box-container .box .image .hover-img {
  display: none;
}

.product .box-container .box .image .icons {
  position: absolute;
  top: 0rem;
  left: -7rem;
}

.product .box-container .box .image .icons a {
  display: block;
  margin-top: 1rem;
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  font-size: 1.7rem;
  border-radius: 50%;
  color: #fff;
  background-color: #333;
  text-decoration: none;
}

.product .box-container .box .image .icons a:hover {
  background-color: #0984e3;
}

.product .box-container .box .content {
  padding: 2rem;
  background-color: #eee;
}

.product .box-container .box .content h3 {
  font-size: 2rem;
  color: #333;
}

.product .box-container .box .content .price {
  padding-top: .5rem;
  font-size: 2.2rem;
  padding: .7rem 0;
  color: #0984e3;
  padding-bottom: .7rem;
}

.product .box-container .box .content .price span {
  color: #666;
  font-size: 1.5rem;
  text-decoration: line-through;
}

.product .box-container .box .content .stars i {
  font-size: 1.5rem;
  color: gold;
}

.product-banner .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.product-banner .box-container .box {
  flex: 1 1 42rem;
  position: relative;
  text-align: center;
  border: 0.2rem solid #333;
  border-radius: .5rem;
  text-decoration: none;
  box-shadow: 0.5rem 1rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 25rem;
}

.product-banner .box-container .box:hover img {
  transform: scale(1.1);
}

.product-banner .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.product-banner .box-container .box .content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}

.product-banner .box-container .box .content span {
  color: #0984e3;
  font-size: 1.7rem;
}

.product-banner .box-container .box .content h3 {
  color: #333;
  font-size: 2rem;
  padding-top: .5rem;
}

.conact-info .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
  gap: 2rem;
}

.conact-info .box-container .box {
  background-color: #fff;
  text-align: center;
  border: 0.2rem solid #333;
  border-radius: .5rem;
  text-decoration: none;
  box-shadow: 0.5rem 1rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 2rem;
}

.conact-info .box-container .box i {
  margin-top: .5rem;
  height: 7.5rem;
  width: 7.5rem;
  line-height: 7.5rem;
  font-size: 2.5rem;
  border-radius: 50%;
  background-color: #0984e3;
  color: #fff;
}

.conact-info .box-container .box h3 {
  color: #333;
  padding: .5rem;
  font-size: 2rem;
}

.conact-info .box-container .box p {
  color: #666;
  font-size: 1.5rem;
}

.conact {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.conact form {
  flex: 1 1 42rem;
}

.conact form h3 {
  font-size: 3rem;
  color: #333;
  text-transform: uppercase;
  padding-bottom: 1rem;
}

.conact form p {
  font-size: 1.5rem;
  color: #666;
  padding: 1rem 0;
  line-height: 2;
}

.conact form .inputBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.conact form .inputBox input {
  width: 49%;
}

.conact form .inputBox input, .conact form textarea {
  padding: 1.2rem 1.4rem;
  border: 0.2rem solid #333;
  border-radius: .5rem;
  text-transform: none;
  box-shadow: 0.5rem 1rem rgba(0, 0, 0, 0.1);
  background-color: #fff;
  color: #666;
  font-size: 1.5rem;
  margin: .7rem 0;
}

.conact form textarea {
  height: 15rem;
  resize: none;
  width: 100%;
}

.conact .map {
  flex: 1 1 42rem;
  width: 100%;
}

.conact-newslatter {
  background-color: #0984e3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.conact-newslatter .content {
  flex: 1 1 42rem;
}

.conact-newslatter .content h3 {
  font-size: 6rem;
  color: #fff;
  text-transform: uppercase;
}

.conact-newslatter .content p {
  font-size: 2.5rem;
  color: #fff;
}

.conact-newslatter form {
  flex: 1 1 42rem;
  display: flex;
  border-radius: .5rem;
  padding: .5rem;
  background-color: #fff;
  text-align: center;
  height: 6rem;
}

.conact-newslatter form .email {
  width: 100%;
  padding: 0 1.4rem;
  text-transform: none;
  color: #666;
  font-size: 1.6rem;
}

.conact-newslatter form .my-btn {
  margin: 0;
}

.register form,
.login form {
  background-color: #fff;
  border: 0.2rem solid #333;
  border-radius: .5rem;
  text-decoration: none;
  box-shadow: 0.5rem 1rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 2rem;
  max-width: 45rem;
  margin: 1rem auto;
}

.register form h3,
.login form h3 {
  font-size: 2.5rem;
  padding-bottom: 1rem;
  color: #333;
  text-transform: uppercase;
}

.register form p,
.login form p {
  font-size: 1.5rem;
  padding-top: 2rem;
  color: #666;
  text-align: center;
}

.register form .box,
.login form .box {
  border: 0.2rem solid #333;
  width: 100%;
  border-radius: .5rem;
  padding: 1.2rem 1.4rem;
  font-size: 1.6rem;
  text-transform: none;
  color: #666;
  margin: .5rem 0;
}

.register form .remmber,
.login form .remmber {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.register form .remmber label,
.login form .remmber label {
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
}

.register form .my-btn,
.login form .my-btn {
  width: 100% !important;
  text-align: center;
  margin: auto;
}

.register form .my-btn.link,
.login form .my-btn.link {
  background-color: #333;
}

.register form .my-btn.link:hover,
.login form .my-btn.link:hover {
  background-color: #0984e3;
}

.shopping-cart .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
  gap: 2rem;
}

.shopping-cart .box-container .box {
  position: relative;
  background-color: #fff;
  display: flex;
  border: 0.2rem solid #333;
  border-radius: .5rem;
  text-decoration: none;
  box-shadow: 0.5rem 1rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  gap: .5rem;
  align-items: center;
}

.shopping-cart .box-container .box i {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: #666;
  cursor: pointer;
}

.shopping-cart .box-container .box i:hover {
  color: #333;
}

.shopping-cart .box-container .box img {
  height: 12rem;
}

.shopping-cart .box-container .box .content h3 {
  font-size: 1.7rem;
  color: #333;
}

.shopping-cart .box-container .box .content form {
  padding: 1rem 0;
  display: flex;
  gap: .5rem;
  align-items: center;
}

.shopping-cart .box-container .box .content form span {
  font-size: 1.5rem;
  color: #666;
}

.shopping-cart .box-container .box .content form input {
  width: 7rem;
  padding: .5rem 1.5rem;
  border-radius: .5rem;
  background-color: #eee;
  font-size: 1.5rem;
  color: #666;
}

.shopping-cart .box-container .box .content .price {
  font-size: 2rem;
  color: #0984e3;
}

.shopping-cart .box-container .box .content .price span {
  color: #666;
  font-size: 1.5rem;
  text-decoration: line-through;
}

.shopping-cart .card-total {
  margin-top: 2rem;
  padding: 2rem;
  padding-top: 1rem;
  background-color: #fff;
  border: 0.2rem solid #333;
  border-radius: .5rem;
  box-shadow: 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.shopping-cart .card-total h3 {
  padding-top: 1rem;
  font-size: 2rem;
  color: #333;
}

.shopping-cart .card-total h3 span {
  color: #0984e3;
}

.quick-liks {
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: #333;
  justify-content: space-between;
}

.quick-liks .logo {
  font-size: 2.5rem;
  color: #fff;
  font-weight: bolder;
  text-decoration: none;
}

.quick-liks .logo i {
  color: gold;
}

.quick-liks .links a {
  margin: 0 1rem;
  font-size: 1.7rem;
  text-decoration: none;
  color: #fff;
}

.quick-liks .links a:hover {
  color: gold;
}

.quick-liks .share a {
  margin-left: 2rem;
  font-size: 2.5rem;
  text-decoration: none;
  color: #fff;
}

.quick-liks .share a:hover {
  color: gold;
}

.cridet {
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: #fff;
  justify-content: space-between;
}

.cridet p {
  font-size: 2rem;
  color: #666;
}

.cridet p span {
  color: #0984e3;
}

.cridet img {
  height: 4rem;
  filter: drop-shadow(0 0 0.1rem #333);
}

@media (max-width: 1200px) {
  html {
    font-size: 55%;
  }
  section {
    padding: 3rem 2rem;
  }
}

@media (max-width: 764px) {
  .quick-liks {
    flex-flow: column;
    text-align: center;
  }
  .quick-liks .links {
    padding: 0 1rem;
  }
  .quick-liks .links a {
    display: block;
    font-size: 2rem;
    text-align: center;
    padding: 1rem 0;
  }
  .quick-liks .share {
    margin: 0 1rem;
  }
  .cridet {
    flex-flow: column;
    text-align: center;
  }
  .conact-newslatter {
    text-align: center;
  }
  .conact-newslatter .content h3 {
    font-size: 4rem;
  }
  .conact-newslatter .content p {
    font-size: 1.7rem;
  }
}

@media (max-width: 849px) {
  #search-btn {
    display: inline-block;
  }
  .head .search-form {
    position: absolute;
    top: 99%;
    left: 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
    right: 0;
    box-shadow: 0.5rem 1rem rgba(0, 0, 0, 0.1);
    height: 6rem;
    clip-path: polygon(0% 0%, 100% 0, 100% 0%, 0% 0%);
  }
  .head .search-form.active {
    clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0% 100%);
  }
  .swiper-button-next, .swiper-button-prev {
    display: none !important;
  }
  .home .slide {
    text-align: center;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .head {
    justify-content: center;
  }
  .head .logo {
    display: none;
  }
  .head .icons a, .head .icons div {
    margin: 0 1rem;
  }
  .home .slide .image {
    height: auto;
    width: 100%;
  }
  .arrivel .box-container .box {
    flex-flow: column;
    gap: 2;
    text-align: center;
  }
  .content form .inputBox input {
    width: 100%;
  }
  .shopping-cart .card-total {
    text-align: center;
  }
  .shopping-cart .card-total .my-btn {
    width: 100%;
  }
}
