@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/* General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --primary: #ff0051;
  --second: #3a3a3a;
  --third: #f2f2f2;
}

body {
  background: #000000;
  font-family: "Roboto", sans-serif;
}

/* Header section */
header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 100px;
  background: transparent;
  transition: 0.5s;
  z-index: 1100;
}
header.header-scrolled {
  padding: 18px 100px;
  background: rgba(0, 0, 0, 0.8);
  /* backdrop-filter: blur(20px); */
}
.logo {
  position: relative;
  font-size: 30px;
  color: #ffffff;
  letter-spacing: 2px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
}
.nav li {
  position: relative;
  list-style: none;
  margin: 0 20px;
}
.nav li a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.5s;
  font-weight: 300;
  font-size: 1em;
  letter-spacing: 1px;
  padding: 10px;
}
.nav li a:hover {
  color: var(--primary);
}
.util {
  display: flex;
  align-items: center;
}
.util li {
  position: relative;
  list-style: none;
  margin: 0 10px;
}
.util li a {
  text-decoration: none;
  color: #ffffff;
  transition: 0.5s;
}
.util li a ion-icon {
  font-size: 1.6em;
}
.util li a:hover {
  color: var(--primary);
}
.util li .number {
  position: absolute;
  right: -1px;
  bottom: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6em;
  font-size: 400;
}
/* mobile nav */
.menu {
  display: none;
  transition: 0.5s;
}
.menu ion-icon {
  color: #fff;
  font-size: 1.6em;
}
.menu.active {
  z-index: 9999;
  transform: rotateZ(45deg);
}
.nav-mobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: 990;
  gap: 20px;
}
.nav-mobile.active {
  opacity: 1;
  visibility: visible;
}
.nav-mobile li {
  position: relative;
  list-style: none;
}
.nav-mobile li a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.5s;
  font-weight: 300;
  padding: 10px;
}

/* Banner Section */
#banner {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 0 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.women::before,
.men::before,
.special::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: 0.5s;
}
.women:hover:before,
.men:hover:before,
.special:hover:before {
  background: transparent;
}
.women {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
  background: var(--primary);
  transition: 1s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.men {
  position: absolute;
  top: 0;
  left: 30%;
  height: 100%;
  width: 40%;
  clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 0 100%, 25% 50%, 0 0);
  background: var(--second);
  transition: 1s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.special {
  position: absolute;
  top: 0;
  left: 60%;
  height: 100%;
  width: 40%;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
  background: var(--primary);
  transition: 1s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#banner.left .women,
#banner.middle .men,
#banner.right .special {
  width: 100%;
  clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 0 50%, 0% 0%);
  transition: 1s;
}
#banner.right .special {
  left: 0;
}
#banner.middle .men {
  left: 0;
}
#banner.left .men,
#banner.left .special {
  left: 120%;
}
#banner.right .men,
#banner.right .women {
  left: -120%;
}
#banner.middle .women {
  left: -120%;
}
#banner.middle .special {
  left: 120%;
}
.women img,
.men img,
.special img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.5s;
}
#banner.left .women img {
  width: 50%;
}
#banner.middle .men img,
#banner.right .special img {
  left: 50%;
  width: 50%;
}
.switch-btn {
  position: relative;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 5em;
  font-weight: 300;
  margin-top: 40%;
  z-index: 1000;
  transition: 0.5s;
  transform: scale(1);
}
.switch-btn:hover {
  transform: scale(1.2);
}
.reset {
  position: absolute;
  left: 100px;
  bottom: 100px;
  z-index: 1000;
  transition: 0.5s;
}
.reset.active {
  transform: rotateZ(180deg);
}
.reset ion-icon {
  color: #fff;
  font-size: 3em;
  transition: 0.3s;
}
.reset ion-icon:hover {
  color: var(--primary);
}

/* Banner content */
#banner .content {
  position: absolute;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: 900;
}
#banner .content h1 {
  color: #fff;
  font-size: 3em;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#banner .content p {
  color: #fff;
  font-weight: 200;
  font-size: 1em;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
#banner .content a {
  position: relative;
  width: 200px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  padding: 12px 20px;
  border: 1px solid #fff;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
#banner .content a ion-icon {
  font-size: 1.2em;
}
#banner .content a:hover {
  background: #fff;
  color: var(--primary);
}
#banner.left .women .content,
#banner.middle .men .content,
#banner.right .special .content {
  opacity: 1;
  visibility: visible;
}
.women .content {
  left: 55%;
}
.men .content,
.special .content {
  left: 100px;
}

/* main section */
main {
  width: 100%;
  padding: 100px 0;
  background: #fff;
}

/* call up section */
section.call-up {
  width: 100%;
  padding: 0 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.call-up-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  background: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.12);
}
.call-up-box ion-icon {
  font-size: 5em;
  color: var(--primary);
}
.call-up-box h4 {
  font-size: 1.3em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 10px;
}
.call-up-box p {
  font-weight: 300;
}

/* about section */
.about {
  width: 100%;
  padding: 100px 10px 0;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.about .left,
.about .right {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.promotion,
.discovery {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  justify-content: start;
  align-items: end;
  padding: 50px;
}
.style,
.collection {
  position: relative;
  width: 100%;
  height: 50vh;
  display: flex;
  justify-content: start;
  align-items: end;
  padding: 50px;
}
.about-box {
  overflow: hidden;
}
.about-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1);
  object-fit: cover;
  object-position: center;
  transition: 1s;
}
.about-box:hover img {
  transform: scale(1.1);
}
.about-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}
.about-box:hover::after {
  background: rgba(0, 0, 0, 0.2);
}
.about .description {
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
}
.about .description h4 {
  position: relative;
  color: #fff;
  font-size: 2.5em;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.about .description h4::after {
  position: absolute;
  content: "";
  background: var(--primary);
  bottom: -10px;
  left: 0;
  width: 70%;
  height: 3px;
}
.about .description p {
  color: #fff;
  letter-spacing: 1px;
  font-weight: 300;
}
.about a {
  position: relative;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: 0.5s;
}
.about a:hover {
  gap: 10px;
  /* color: var(--primary); */
}

/* Products section */
#products {
  width: 100%;
  position: relative;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
#product-filters {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
}
#product-filters li {
  position: relative;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 1px;
}
#product-filters li::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: var(--primary);
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}
#product-filters li:hover::before,
#product-filters li.filter-active::before {
  visibility: visible;
  opacity: 1;
}
.product-container {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-item {
  position: relative;
  width: 24%;
  height: 450px;
  background: #fff;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.12);
}
.product-item img {
  position: relative;
  transform: scale(1);
  width: 100%;
  height: 330px;
  object-fit: cover;
  transition: 1s;
  transform-origin: bottom;
}
.product-item img:hover {
  transform: scale(1.1);
}
.product-info {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 15px;
}
.product-info h4 {
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 400;
}
.product-info p {
  font-weight: 200;
  color: #000;
}
.product-info .cross {
  text-decoration: line-through;
}
.product-info .price {
  font-size: 1.2em;
  font-weight: 500;
  color: var(--primary);
}
.product-rating {
  display: flex;
  gap: 5px;
}
.product-rating li {
  list-style: none;
}
.product-rating li ion-icon {
  font-size: 1.2em;
  color: var(--primary);
}
.product-item .hot {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 900;
  width: 50px;
  height: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
}
.add-to-bag {
  width: 45px;
  height: 45px;
  position: absolute;
  bottom: 8%;
  right: 5%;
  padding: 10px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  transition: 0.3s;
}
.add-to-bag ion-icon {
  font-size: 1.6em;
}
.add-to-bag:hover {
  color: var(--primary);
  background: var(--third);
}
.loading-more a {
  text-decoration: none;
  font-size: 1em;
  text-transform: uppercase;
  background: var(--primary);
  border: 1px solid var(--primary);
  padding: 10px 25px;
  color: #fff;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: 0.3s;
}
.loading-more a:hover {
  background: #fff;
  color: var(--primary);
}

/* newsletter section */
#newsletter {
  position: relative;
  padding: 0 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  width: 100%;
  height: 120px;
  background: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.12);
}
.newsletter-box {
  width: 30%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.newsletter-box ion-icon {
  font-size: 3em;
  color: var(--primary);
}
.newsletter-box h4 {
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: 500;
  letter-spacing: 1px;
}
#newsletter p {
  width: 30%;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
#newsletter .discount {
  color: var(--primary);
  font-size: 4em;
  font-weight: 500;
  margin-left: 10px;
}
#newsletter form {
  width: 40%;
  display: inline-flex;
  justify-content: flex-end;
}
#newsletter form input[type="text"] {
  outline: none;
  border: 1px solid var(--third);
  width: 400px;
  padding: 10px 20px;
}
#newsletter form input[type="submit"] {
  outline: none;
  border: 1px solid var(--primary);
  padding: 10px 30px;
  background: var(--primary);
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}
#newsletter form input[type="submit"]:hover {
  color: var(--primary);
  background: #fff;
}

/* contact section */
#contact {
  width: 100%;
  position: relative;
  padding: 100px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#contact .map {
  width: 100%;
}
.contact .info-wrap {
  margin-top: 80px;
  width: 80%;
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.12);
}
.contact .info {
  background: #fff;
}
.contact .info ion-icon {
  color: #fff;
  float: left;
  width: 40px;
  height: 40px;
  padding: 10px;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.3s;
}
.contact .info h4 {
  padding: 0 0 0 80px;
  font-size: 1.2em;
  font-weight: 500;
  margin-bottom: 5px;
}
.contact .info p {
  padding: 0 0 0 80px;
  font-size: 1em;
  font-weight: 300;
  margin-bottom: 0;
}
.contact .contact-form {
  width: 80%;
  background: #fff;
  padding: 30px 50px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.12);
}
.contact .contact-form .form-group {
  padding-bottom: 10px;
  width: 100%;
  display: flex;
  gap: 10px;
}
.contact .contact-form input,
.contact .contact-form textarea {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  font-size: 1em;
  border: 1px solid var(--third);
  outline: none;
}
.contact .contact-form input::placeholder,
.contact .contact-form textarea::placeholder {
  font-size: 1em;
  font-family: "Roboto", sans-serif;
}
.contact .contact-form input {
  padding: 10px 12px;
  height: 45px;
}
.contact .contact-form textarea {
  padding: 10px 12px;
}
.contact .contact-form .text-center {
  display: flex;
  justify-content: center;
}
.contact .contact-form button[type="submit"] {
  background: var(--primary);
  border: 1px solid var(--primary);
  padding: 10px 25px;
  color: #fff;
  font-size: 1em;
  text-transform: uppercase;
  transition: 0.3s;
  cursor: pointer;
}
.contact .contact-form button[type="submit"]:hover {
  color: var(--primary);
  background: #fff;
}

/* footer section */
footer {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 100px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  transition: 0.5s;
  z-index: 1100;
}
.sci {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.sci li {
  list-style: none;
}
.sci li a {
  color: #fff;
  font-size: 1.3em;
  text-decoration: none;
  transition: 0.3s;
}
.sci li .share {
  padding: 10px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sci li .share:hover {
  background: #fff;
}
.sci li a:hover {
  color: var(--primary);
}
.footer-nav {
  display: flex;
  gap: 20px;
}
.footer-nav li {
  list-style: none;
}
.footer-nav li a {
  text-decoration: none;
  color: #fff;
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
  transition: 0.3s;
}
.footer-nav li a:hover {
  color: var(--primary);
}
.ask-us {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.ask-us p {
  color: #fff;
  font-weight: 300;
  font-size: 0.8em;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.chat {
  color: #fff;
  font-size: 2em;
  text-decoration: none;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  transition: 0.3s;
}
.chat:hover {
  color: var(--primary);
  background: #fff;
}

/* back to top */
.back-to-top {
  width: 40px;
  height: 40px;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  border-radius: 50%;
  right: 15px;
  bottom: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  z-index: 1100;
  transition: 0.3s;
}
.back-to-top ion-icon {
  font-size: 1.5em;
}
.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

/* responsive design */
@media (max-width: 600px) {
  body.noscroll-body{
    overflow: hidden;
  }
  header {
    padding: 30px 20px;
  }
  header.header-scrolled {
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.8);
    /* backdrop-filter: blur(20px); */
  }
  .nav {
    display: none;
  }
  .util {
    display: none;
  }
  .menu {
    display: block;
  }
  /* banner section */
  #banner {
    padding: 0 20px;
  }
  .women {
    height: 40%;
    width: 100%;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 50% 100%, 0% 75%);
  }
  .men {
    top: 30%;
    left: 0;
    height: 40%;
    width: 100%;
    clip-path: polygon(100% 0%, 100% 100%, 50% 75%, 0 100%, 0 0, 50% 25%);
  }
  .special {
    top: 60%;
    left: 0;
    height: 40%;
    width: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 100%, 0 100%, 0% 25%);
  }
  #banner.left .women,
  #banner.middle .men,
  #banner.right .special {
    height: 100%;
  }
  #banner.right .special {
    top: 0;
  }
  #banner.middle .men {
    top: 0;
  }
  #banner.left .men,
  #banner.left .special {
    top: 120%;
  }
  #banner.right .men,
  #banner.right .women {
    top: -120%;
  }
  #banner.middle .women {
    top: -120%;
  }
  #banner.middle .special {
    top: 120%;
  }
  .switch-btn {
    font-size: 4em;
    margin-top: 0;
  }
  #banner.left .women img {
    height: 50%;
    width: 100% !important;
  }
  #banner.middle .men img,
  #banner.right .special img {
    left: 0;
    top: 50%;
    height: 50%;
    width: 100% !important;
  }
  #banner .content h1 {
    font-size: 2.5em;
    font-weight: 400;
  }
  .women .content {
    left: 20px;
    top: 60%;
  }
  .men .content,
  .special .content {
    left: 20px;
    top: 15%;
  }
  .reset {
    left: 20px;
    bottom: 20px;
  }
  .reset ion-icon {
    font-size: 2em;
  }
  /* call up section */
  section.call-up {
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  /* about section */
  .about {
    padding: 100px 10px 0;
    flex-wrap: wrap;
  }
  .about .left,
  .about .right,
  .promotion,
  .discovery {
    width: 100%;
  }
  /* product section */
  #products {
    padding: 100px 10px 50px;
    gap: 50px;
  }
  #product-filters {
    gap: 25px;
  }
  .product-container {
    flex-wrap: wrap;
  }
  .product-item {
    width: 100%;
  }
  /* newsletter section */
  #newsletter {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: auto;
    padding: 20px;
    gap: 20px;
  }
  .newsletter-box {
    width: 100%;
  }
  #newsletter p {
    width: 100%;
  }
  #newsletter form {
    width: 100%;
  }
  #newsletter form input[type="text"] {
    width: 100%;
  }
  /* contact section */
  #content {
    padding: 50px 0 0;
  }
  .contact .info-wrap {
    flex-wrap: wrap;
    width: 90%;
    gap: 30px;
  }
  .contact .contact-form {
    width: 90%;
  }
  /* footer section */
  footer {
    padding: 20px;
  }
  .footer-nav {
    display: none;
  }
}
