@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
@media only screen and (min-width: 1024px) {
  body {
    padding-top: 122px;
  }
}
body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

.position__relative {
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: #000000;
  display: inline-block;
}

.dust {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(212, 175, 55, 0.85);
  transform: translate(-50%, -50%);
  opacity: 1;
}

h1, .h1 {
  font-size: 36px;
  font-weight: 300;
}
@media only screen and (min-width: 1024px) {
  h1, .h1 {
    font-size: 42px;
  }
}

h2, .h2 {
  font-size: 28px;
  font-weight: 400;
}
@media only screen and (min-width: 1024px) {
  h2, .h2 {
    font-size: 32px;
  }
}

h3, .h3 {
  font-size: 24px;
  font-weight: 400;
}
@media only screen and (min-width: 1024px) {
  h3, .h3 {
    font-size: 28px;
  }
}

h4, .h4 {
  font-size: 20px;
  font-weight: 300;
}
@media only screen and (min-width: 1024px) {
  h4, .h4 {
    font-size: 24px;
  }
}

h5, .h5 {
  font-size: 18px;
  font-weight: 300;
}
@media only screen and (min-width: 1024px) {
  h5, .h5 {
    font-size: 20px;
  }
}

h6, .h6 {
  font-size: 16px;
  font-weight: 300;
}
@media only screen and (min-width: 1024px) {
  h6, .h6 {
    font-size: 18px;
  }
}

p {
  font-size: 12px;
  font-weight: 300;
}
@media only screen and (min-width: 1024px) {
  p {
    font-size: 14px;
  }
}

input, textarea, select {
  width: 100%;
  outline: none;
  padding: 7.5px 16px;
  border-radius: 50px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 12px;
  border: 1px solid #d4d4d4;
  border-radius: 50px;
  width: 100%;
  transition: all 0.3s ease;
  font-weight: 300;
}
@media only screen and (min-width: 1024px) {
  input, textarea, select {
    padding: 10px 20px;
    font-size: 14px;
  }
}
input:focus, textarea:focus, select:focus {
  border-color: #ad2076;
  box-shadow: 0 0 0 5px rgba(173, 32, 118, 0.1);
}

select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  background-color: #FFFFFF;
}

textarea {
  border-radius: 20px;
  resize: none;
}

.section__title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .section__title {
    padding-bottom: 30px;
  }
}
.section__title__heading {
  color: #000000;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  position: relative;
}
.section__title__heading:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100px;
  background: linear-gradient(to right, transparent 0%, #ad2076 50%, transparent 100%);
  height: 2px;
  border-radius: 50px;
}

.header {
  background: #FFFFFF;
}
@media only screen and (min-width: 1024px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99;
  }
}
.header__row {
  display: flex;
  align-items: center;
  padding: 15px 0;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) {
  .header__row {
    justify-content: unset;
    flex-wrap: nowrap;
    gap: 60px;
  }
}
.header__logo {
  order: 1;
}
@media only screen and (min-width: 768px) {
  .header__logo {
    order: unset;
  }
}
.header__logo__brand {
  width: auto;
  height: 40px;
}
@media only screen and (min-width: 768px) {
  .header__logo__brand {
    height: 50px;
  }
}
.header__menu {
  background: linear-gradient(to right, #ad2076, #92005a);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  padding: 30px 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
  min-width: 200px;
}
@media only screen and (min-width: 768px) {
  .header__menu {
    position: unset;
    padding: 0;
    transform: translateX(0);
  }
}
.header__menu.active {
  transform: translateX(0);
}
.header__menu__list {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .header__menu__list {
    align-items: center;
    gap: 5px;
    flex-direction: row;
  }
}
@media only screen and (min-width: 1200px) {
  .header__menu__list {
    gap: 20px;
  }
}
.header__menu__list li {
  position: relative;
}
.header__menu__list li a {
  padding: 10px;
  color: #FFFFFF;
  font-size: 14px;
  display: block;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .header__menu__list li a {
    width: auto;
  }
}
.header__menu__list li .sub-menu {
  z-index: 1;
  left: 0;
  list-style: none;
  display: none;
  position: relative;
  top: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  width: 90%;
  min-width: auto;
  margin-left: auto;
}
@media only screen and (min-width: 768px) {
  .header__menu__list li .sub-menu {
    position: absolute;
    top: 38px;
    background: #ad2076;
    border-radius: 0 0 10px 10px;
    width: auto;
    min-width: 180px;
  }
}
.header__menu__list li.menu-item-has-children a {
  padding-right: 0;
}
@media only screen and (min-width: 768px) {
  .header__menu__list li.menu-item-has-children a {
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .header__menu__list li.menu-item-has-children .menu-item-has-children .menu-dropdown-icon {
    transform: rotate(-90deg);
  }
}
.header__menu__list li.menu-item-has-children:hover > .sub-menu {
  display: block;
}
@media only screen and (min-width: 768px) {
  .header__menu__list li.menu-item-has-children:hover > .sub-menu .sub-menu {
    border-radius: 10px;
    left: 100%;
    top: 0;
  }
}
.header__menu__list li .menu-dropdown-icon {
  height: 38px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  right: 0;
  top: 0;
}
@media only screen and (min-width: 768px) {
  .header__menu__list li .menu-dropdown-icon {
    justify-content: center;
    width: auto;
  }
}
.header__menu__li {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .header__menu__li {
    display: none;
  }
}
.header__menu__button {
  background: none;
  border: none;
  cursor: pointer;
  height: 32px;
  width: 32px;
  color: #ad2076;
  padding: 0;
}
.header__menu__button svg {
  height: 32px !important;
  width: 32px !important;
  stroke: #ad2076;
}
.header__search {
  flex: 0 0 100%;
  order: 3;
}
@media only screen and (min-width: 768px) {
  .header__search {
    flex: 0 0 300px;
    order: unset;
  }
}
@media only screen and (min-width: 1200px) {
  .header__search {
    flex: 0 0 400px;
  }
}
.header__search form {
  display: flex;
  align-items: center;
  position: relative;
}
.header__search form button {
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  border: none;
  cursor: pointer;
  height: 32px;
  width: 40px;
  color: #ad2076;
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  .header__search form button {
    height: 40px;
    width: 50px;
  }
}
.header__search form input {
  padding-right: 50px;
}
.header__right {
  flex: 0 0 auto;
  order: 2;
}
@media only screen and (min-width: 768px) {
  .header__right {
    order: unset;
    margin-left: auto;
  }
}
.header__right ul {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .header__right ul {
    gap: 20px;
  }
}
.header__right li a {
  color: #000000;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media only screen and (min-width: 768px) {
  .header__right li a {
    font-size: 14px;
  }
}
.header__right li svg {
  width: 20px;
  height: 20px;
}
@media only screen and (min-width: 768px) {
  .header__right li svg {
    width: 26px;
    height: 26px;
  }
}
.header__cart__count {
  position: relative;
}
.header__cart__count span {
  position: absolute;
  font-size: 10px;
  background: #ad2076;
  width: 18px;
  height: 18px;
  display: flex;
  top: -7px;
  right: -9px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .header__cart__count span {
    font-size: 12px;
    top: -4px;
    right: -6px;
  }
}

.footer {
  padding-bottom: 20px;
}
@media only screen and (min-width: 1024px) {
  .footer {
    padding: 0px 20px 20px;
  }
}
.footer__wrapper {
  background: linear-gradient(45deg, #92005a, #ad2076 60%, #FFFFFF 150%);
  padding: 40px 15px;
  border-radius: 10px;
}
@media only screen and (min-width: 1024px) {
  .footer__wrapper {
    border-radius: 20px;
    padding: 50px 0;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
  flex-direction: column;
  gap: 10px;
}
@media only screen and (min-width: 1024px) {
  .footer__logo {
    gap: 20px;
  }
}
.footer__logo img {
  width: auto;
  height: 50px;
  filter: brightness(0) invert(1);
}
.footer__logo p {
  color: #FFFFFF;
  padding: 10px 0;
  text-align: center;
}
.footer__copyright {
  text-align: center;
  color: #FFFFFF;
  font-size: 14px;
}
.footer__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0 0 20px;
  margin: 0;
}
@media only screen and (min-width: 1024px) {
  .footer__menu {
    gap: 20px;
    flex-direction: row;
  }
}
.footer__menu li a {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 300;
}
.footer__menu__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 5px 10px;
  list-style: none;
  padding: 0 0 20px;
  margin: 0;
}
@media only screen and (min-width: 1024px) {
  .footer__menu__links {
    gap: 20px;
  }
}
.footer__menu__links li a {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 300;
}

@media only screen and (min-width: 768px) {
  .hero {
    padding-top: 30px;
  }
}
.hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
@media only screen and (min-width: 768px) {
  .hero__image {
    border-radius: 20px;
  }
}

.imitation__wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 15px;
  overflow: hidden;
  background-color: #92005a;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .imitation__wrapper {
    border-radius: 20px;
  }
}
.imitation__content {
  padding: 30px;
  position: absolute;
  color: #FFFFFF;
  inset: 0;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(to right, #92005a, transparent);
}
.imitation__content h2, .imitation__content p {
  max-width: 500px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .imitation__content h2, .imitation__content p {
    text-align: left;
  }
}
.imitation__image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.categories {
  padding: 40px 0;
}
@media only screen and (min-width: 768px) {
  .categories {
    padding: 60px 0;
  }
}
.categories__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  list-style: none;
}
@media only screen and (min-width: 768px) {
  .categories__list {
    gap: 40px;
  }
}
.categories__list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.categories__list li a:hover .categories__list__image {
  background-position: 70%;
}
.categories__list__image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, #000000 10%, #ad2076 40%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  transition: all 0.3s ease;
  background-size: 200%;
  background-position: 40%;
}
@media only screen and (min-width: 768px) {
  .categories__list__image {
    padding: 20px;
    width: 100px;
    height: 100px;
  }
}
.categories__list__image img {
  width: 100%;
  height: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
@media only screen and (min-width: 1024px) {
  body {
    padding-top: 122px;
  }
}
body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

.position__relative {
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: #000000;
  display: inline-block;
}

.dust {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(212, 175, 55, 0.85);
  transform: translate(-50%, -50%);
  opacity: 1;
}

h1, .h1 {
  font-size: 36px;
  font-weight: 300;
}
@media only screen and (min-width: 1024px) {
  h1, .h1 {
    font-size: 42px;
  }
}

h2, .h2 {
  font-size: 28px;
  font-weight: 400;
}
@media only screen and (min-width: 1024px) {
  h2, .h2 {
    font-size: 32px;
  }
}

h3, .h3 {
  font-size: 24px;
  font-weight: 400;
}
@media only screen and (min-width: 1024px) {
  h3, .h3 {
    font-size: 28px;
  }
}

h4, .h4 {
  font-size: 20px;
  font-weight: 300;
}
@media only screen and (min-width: 1024px) {
  h4, .h4 {
    font-size: 24px;
  }
}

h5, .h5 {
  font-size: 18px;
  font-weight: 300;
}
@media only screen and (min-width: 1024px) {
  h5, .h5 {
    font-size: 20px;
  }
}

h6, .h6 {
  font-size: 16px;
  font-weight: 300;
}
@media only screen and (min-width: 1024px) {
  h6, .h6 {
    font-size: 18px;
  }
}

p {
  font-size: 12px;
  font-weight: 300;
}
@media only screen and (min-width: 1024px) {
  p {
    font-size: 14px;
  }
}

input, textarea, select {
  width: 100%;
  outline: none;
  padding: 7.5px 16px;
  border-radius: 50px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 12px;
  border: 1px solid #d4d4d4;
  border-radius: 50px;
  width: 100%;
  transition: all 0.3s ease;
  font-weight: 300;
}
@media only screen and (min-width: 1024px) {
  input, textarea, select {
    padding: 10px 20px;
    font-size: 14px;
  }
}
input:focus, textarea:focus, select:focus {
  border-color: #ad2076;
  box-shadow: 0 0 0 5px rgba(173, 32, 118, 0.1);
}

select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  background-color: #FFFFFF;
}

textarea {
  border-radius: 20px;
  resize: none;
}

.section__title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .section__title {
    padding-bottom: 30px;
  }
}
.section__title__heading {
  color: #000000;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  position: relative;
}
.section__title__heading:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100px;
  background: linear-gradient(to right, transparent 0%, #ad2076 50%, transparent 100%);
  height: 2px;
  border-radius: 50px;
}

.products {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .products {
    gap: 20px;
  }
}
.products__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media only screen and (min-width: 768px) {
  .products__link img {
    border-radius: 15px;
  }
}
.products li {
  flex: 0 0 calc(50% - 5px);
  padding: 8px;
  border: 1px solid #d4d4d4;
  border-radius: 15px;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .products li {
    flex: 0 0 calc(33.33% - 14px);
    padding: 15px;
    border-radius: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .products li {
    flex: 0 0 calc(25% - 15px);
  }
}
.products li:hover {
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}
.products li h4 {
  padding-top: 10px;
  padding-bottom: 5px;
  color: #000000;
  font-weight: 500;
}
.products__description {
  padding-bottom: 20px;
  height: 45px;
}
.products__description p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.products__button {
  text-align: center;
  border: none;
  background-color: #FFFFFF;
  border: 1px solid #d4d4d4;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 40px;
  font-size: 12px;
  padding: 8px 16px;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .products__button {
    font-size: 14px;
    padding: 10px 20px;
  }
}
.products__button:hover {
  background-color: #ad2076;
  color: #FFFFFF;
  border-color: #ad2076;
}
.products__button {
  width: 100%;
}

.special {
  padding: 40px 0;
  background-color: #92005a;
  color: #FFFFFF;
}
@media only screen and (min-width: 768px) {
  .special {
    padding: 60px 0;
  }
}
.special h2 {
  padding-bottom: 20px;
  max-width: 700px;
}
.special p {
  max-width: 700px;
}

.gift {
  padding-top: 40px;
}
@media only screen and (min-width: 768px) {
  .gift {
    padding-top: 60px;
  }
}
.gift__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) {
  .gift__wrapper {
    flex-direction: row;
    gap: 16%;
  }
}
@media only screen and (min-width: 1024px) {
  .gift__wrapper {
    gap: 20%;
  }
}
.gift .section__title__heading {
  justify-content: flex-start;
}
@media only screen and (min-width: 768px) {
  .gift__content {
    flex: 0 0 35%;
  }
}
@media only screen and (min-width: 1024px) {
  .gift__content {
    flex: 0 0 30%;
  }
}
.gift__img {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .gift__img {
    flex: 1;
  }
}
.gift__image {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  transition: all 10s ease;
  left: -30%;
  display: none;
}
@media only screen and (min-width: 768px) {
  .gift__image {
    max-width: 200px;
    display: block;
  }
}
@media only screen and (min-width: 1200px) {
  .gift__image {
    max-width: 300px;
  }
}
.gift__video {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
@media only screen and (min-width: 768px) {
  .gift__video {
    border-radius: 20px;
    height: 400px;
  }
}
@media only screen and (min-width: 768px) {
  .gift:hover .gift__image {
    transform: translateY(80%);
  }
}

.testimonials {
  padding: 40px 0;
}
@media only screen and (min-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }
}
.testimonials__slider {
  padding: 0 1px !important;
}
.testimonials__list {
  display: flex;
  gap: 20px;
}
.testimonials__item {
  border: 1px solid #d4d4d4;
  border-radius: 20px;
  padding: 20px;
  transition: all 0.3s ease;
}
.testimonials__item__description {
  margin-bottom: 10px;
  min-height: 80px;
}
.testimonials__item__name {
  font-size: 16px;
  font-weight: 400;
}
.testimonials__item__stars {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.testimonials__item__stars svg {
  height: 20px;
  width: 20px;
}
.testimonials__item__stars svg path {
  stroke: #ad2076;
}
.testimonials__item__verified {
  color: #ad2076;
}
.testimonials__item:hover {
  border-color: #ad2076;
  background: linear-gradient(to right, #ad2076, #92005a);
}
.testimonials__item:hover .testimonials__item {
  border-color: #ad2076;
  background-color: #ad2076;
}
.testimonials__item:hover .testimonials__item__name, .testimonials__item:hover .testimonials__item__description, .testimonials__item:hover .testimonials__item__verified {
  color: #FFFFFF;
}
.testimonials__item:hover .testimonials__item__stars svg path {
  stroke: #FFFFFF;
}/*# sourceMappingURL=home.css.map */