@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "Pe-icon-7-stroke";
  src: url("../fonts/Pe-icon-7-stroke.eot");
  src: url("../fonts/Pe-icon-7-stroke.eot?#iefix") format("embedded-opentype"), url("../fonts/Pe-icon-7-stroke.woff2") format("woff2"), url("../../assets/fonts/Pe-icon-7-strokebb1d.woff") format("woff"), url("../fonts/Pe-icon-7-stroke.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
*,
body,
figure {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Libre Franklin", sans-serif;
}

html {
  scroll-behavior: smooth;
}

figure {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #000;
}

li {
  list-style-type: none;
}

button {
  cursor: pointer;
}

@media only screen and (max-width: 550px) {
  .container {
    width: 100%;
  }
}
.header__top {
  background-color: #b39964;
  padding: 5px 0;
}
.header__top .container {
  display: flex;
  align-items: center;
}
.header__top .container ul {
  display: flex;
  gap: 15px;
  align-items: center;
}
.header__top .container ul li a {
  color: #fff;
}
.header__top .container ul li a :hover {
  color: #000;
  transition: 0.5s;
}
.header__top .container p {
  text-align: center;
  width: 100%;
  color: #fff;
  font-size: 13px;
}

nav {
  background-color: #000;
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .container ul {
  display: flex;
  gap: 35px;
  margin-right: 40px;
}
nav .container ul li {
  position: relative;
  padding: 30px 0;
}
nav .container ul li:hover .sub-menu {
  -webkit-transform: scaleY(1);
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
  transform: scaleY(1);
}
nav .container ul li .sub-menu {
  padding: 10px 20px;
  position: absolute;
  background-color: #fff;
  display: block;
  z-index: 999;
  width: 170px;
  opacity: 0;
  left: 0;
  top: 80px;
  height: 100%;
  margin-right: 0;
  -webkit-transform: scaleY(0);
  -webkit-transform-origin: 0 0 0;
  transform: scaleY(0);
  transition: 0.5s;
}
nav .container ul li .sub-menu li {
  margin: 10px 0;
  padding: 0;
}
nav .container ul li .sub-menu li a {
  color: #000;
  font-size: 15px;
}
nav .container ul li .sub-menu li a:hover {
  color: #b39964;
  transition: 0.5s;
}
nav .container ul li a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
nav .container ul li a i {
  font-size: 15px;
}
nav .container ul li a:hover {
  color: #b39964;
  transition: 0.5s;
}
nav .container .basket-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
nav .container .basket-profile .user span {
  font-size: 25px;
  color: #fff;
}
nav .container .basket-profile button {
  padding: 30px 0;
  background: none;
  border: none;
}
nav .container .basket-profile button i {
  color: #fff;
  font-size: 22px;
}
nav .container .basket-profile .search-btn {
  position: relative;
}
nav .container .basket-profile .search-btn .pe-7s-search {
  color: #fff;
  font-size: 25px;
}
nav .container .basket-profile .search-btn:hover .search {
  -webkit-transform: scaleY(1);
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
  transform: scaleY(1);
}
nav .container .basket-profile .search-btn .search {
  position: absolute;
  top: 87px;
  background-color: #fff;
  z-index: 999;
  opacity: 0;
  right: 0;
  visibility: hidden;
  height: 45px;
  width: 400px;
  -webkit-transform: scaleY(0);
  -webkit-transform-origin: 0 0 0;
  transform: scaleY(0);
  transition: 0.5s;
}
nav .container .basket-profile .search-btn .search input {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 45px 10px 15px;
}
nav .container .basket-profile .search-btn .search i {
  position: absolute;
  right: 0;
  color: #000;
  top: 12px;
  right: 10px;
  font-size: 25px;
}
nav .container .basket-profile .shopping-cart-btn {
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding: 30px 0;
  position: relative;
}
nav .container .basket-profile .shopping-cart-btn:hover ~ .shopping-cart {
  -webkit-transform: scaleY(1);
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
  transform: scaleY(1);
}
nav .container .basket-profile .shopping-cart-btn .pe-7s-shopbag {
  font-size: 25px;
  color: #fff;
}
nav .container .basket-profile .shopping-cart-btn .count {
  border-radius: 100%;
  color: #fff;
  font-size: 11px;
  height: 18px;
  left: 32px;
  line-height: 18px;
  position: absolute;
  text-align: center;
  top: 20px;
  width: 18px;
  background-color: #b39964;
  left: 12px;
}
nav .container .basket-profile .shopping-cart {
  position: absolute;
  background-color: #fff;
  top: 87px;
  right: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scaleY(0);
  -webkit-transform-origin: 0 0 0;
  transform: scaleY(0);
  transition: 0.5s;
  padding: 20px;
  width: 290px;
}
nav .container .basket-profile .shopping-cart:hover {
  -webkit-transform: scaleY(1);
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
  transform: scaleY(1);
}
nav .container .basket-profile .shopping-cart__item {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #ededed;
  margin-bottom: 20px;
}
nav .container .basket-profile .shopping-cart__item__left {
  height: 94px;
  float: left;
  width: 35%;
}
nav .container .basket-profile .shopping-cart__item__left img {
  width: 100%;
  height: 100%;
}
nav .container .basket-profile .shopping-cart__item__right {
  width: 65%;
  text-align: start;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
nav .container .basket-profile .shopping-cart__item__right div .parfum-name {
  font-family: "Libre Franklin", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 20px;
  width: 130px;
  overflow: hidden;
  overflow-wrap: break-word;
  text-overflow: ellipsis;
  text-transform: capitalize;
  white-space: nowrap;
  display: inline-block;
}
nav .container .basket-profile .shopping-cart__item__right div .price {
  font-size: 1rem;
  font-weight: 500;
  color: #b39964;
  font-family: "Libre Franklin", sans-serif;
  margin-top: 5px;
}
nav .container .basket-profile .shopping-cart__item__right button {
  padding: 0;
}
nav .container .basket-profile .shopping-cart__item__right button i {
  color: #000;
  font-size: 16px;
}
nav .container .basket-profile .shopping-cart .total {
  border-bottom: 1px solid #ededed;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}
nav .container .basket-profile .shopping-cart .checkout {
  background-color: #2c2c2c;
  font-size: 14px;
  padding: 10px 0;
  color: #fff;
  width: 100%;
  display: inline-block;
  text-align: center;
}
nav .container .basket-profile .shopping-cart .checkout:hover {
  background-color: #b39964;
  transition: 0.5s;
}
nav .container .basket-profile .responsive-menu-btn {
  display: none;
}

.responsive-menu {
  background-color: #222222;
  margin: 0 10px;
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
  position: absolute;
  z-index: 9999;
  width: 95.5%;
}
.responsive-menu ul {
  margin: 0;
  padding: 0;
}
.responsive-menu ul li a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  font-size: 14px;
  margin: 0;
  padding: 12px 5%;
  text-transform: capitalize;
}

@media only screen and (max-width: 1024px) {
  .header__top .container {
    flex-direction: column;
    gap: 5px;
  }
  .header nav ul {
    display: none;
  }
}
@media only screen and (max-width: 550px) {
  .header nav .container a img {
    width: 158px;
  }
  .header nav .container .basket-profile {
    gap: 12px;
  }
  .header nav .container .basket-profile .search-btn .search {
    top: 86px;
    right: -106px;
    width: 72.727vw;
    height: 40px;
  }
  .header nav .container .basket-profile .search-btn .search i {
    top: 7px;
  }
  .header nav .container .basket-profile .responsive-menu-btn {
    display: block;
  }
}
footer {
  background-color: #000;
  padding: 0 15px;
}
footer .container .row {
  align-items: start;
  padding: 20px 0;
}
footer .container .row__left img {
  width: 222px;
  margin-bottom: 20px;
}
footer .container .row__left p {
  color: #999;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
footer .container .row__left p i {
  font-size: 18px;
}
footer .container .row__left p span {
  font-weight: 500;
}
footer .container .row__left ul {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
footer .container .row__left ul li a {
  color: #999;
  font-size: 18px;
}
footer .container .row__left ul li a:hover {
  color: #b39964;
  transition: 0.5s;
}
footer .container .row__center {
  display: flex;
  gap: 50px;
}
footer .container .row__center ul li {
  font-size: 14px;
  margin-bottom: 10px;
}
footer .container .row__center ul li p {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}
footer .container .row__center ul li a {
  color: #999;
}
footer .container .row__center ul li a:hover {
  color: #b39964;
  transition: 0.5s;
}
footer .container .row__right h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
footer .container .row__right .search input {
  border: none;
  outline: none;
  height: 50px;
  line-height: 50px;
  width: 290px;
  padding: 10px 25px 10px 15px;
  border-radius: 5px;
}
footer .container .row__right .search button {
  background-color: #b39964;
  border: none;
  border-radius: 5px;
  font-size: 24px;
  height: 50px;
  line-height: 46px;
  padding: 0 20px;
  transition: all 300ms ease-in 0s;
  vertical-align: middle;
  width: 76px;
  color: #fff;
}
footer .container .row__right .search button:hover {
  background-color: #323232;
}
footer .container .row__right p {
  font-size: 14px;
  margin-top: 10px;
  color: #999;
  line-height: 24px;
}
footer #end .row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer #end .row p {
  font-size: 13px;
  color: #999;
  font-weight: 500;
}
footer #end .row ul {
  display: flex;
  gap: 20px;
}
footer #end .row ul li {
  color: #fff;
  font-size: 30px;
}

@media only screen and (max-width: 1024px) {
  footer {
    padding: 0 20px;
  }
  footer .container {
    padding: 0;
  }
  footer .container .row {
    gap: 25px;
    flex-direction: column;
  }
  footer .container .row__right {
    width: 100%;
  }
  footer .container .row__right .search {
    display: flex;
    gap: 4px;
  }
  footer .container .row__right .search input {
    width: 100%;
  }
}
.card, #premium-products .container .grid .element-item .card, #new-arrivals .container .cards .card {
  background-color: #f6f6f6;
  width: 280px;
  border: 1px solid #ececec;
  overflow: hidden;
}
.card:hover, #premium-products .container .grid .element-item .card:hover, #new-arrivals .container .cards .card:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transform: scale(1.01);
  transition: 0.5s;
}
.card .img, #premium-products .container .grid .element-item .card .img, #new-arrivals .container .cards .card .img {
  padding: 20px;
  height: 335px;
  position: relative;
}
.card .img img, #premium-products .container .grid .element-item .card .img img, #new-arrivals .container .cards .card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.card .img span, #premium-products .container .grid .element-item .card .img span, #new-arrivals .container .cards .card .img span {
  background-color: #b39964;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  min-width: 50px;
  text-align: center;
  text-transform: capitalize;
  top: 20px;
  left: 20px;
  z-index: 9;
  padding: 8px 0;
  position: absolute;
}
.card .content, #premium-products .container .grid .element-item .card .content, #new-arrivals .container .cards .card .content {
  padding: 0 10px;
}
.card .content h2, #premium-products .container .grid .element-item .card .content h2, #new-arrivals .container .cards .card .content h2 {
  font-size: 18px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card .content .price, #premium-products .container .grid .element-item .card .content .price, #new-arrivals .container .cards .card .content .price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}
.card .content .price p, #premium-products .container .grid .element-item .card .content .price p, #new-arrivals .container .cards .card .content .price p {
  font-size: 19px;
  color: #a56f00;
  font-weight: 500;
}
.card .content .price ul, #premium-products .container .grid .element-item .card .content .price ul, #new-arrivals .container .cards .card .content .price ul {
  display: flex;
  gap: 2px;
}
.card .content .price ul li i, #premium-products .container .grid .element-item .card .content .price ul li i, #new-arrivals .container .cards .card .content .price ul li i {
  color: #f6bc3e;
}
.card .content .desc, #premium-products .container .grid .element-item .card .content .desc, #new-arrivals .container .cards .card .content .desc {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card .content .notes, #premium-products .container .grid .element-item .card .content .notes, #new-arrivals .container .cards .card .content .notes {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.card .content .notes .note img, #premium-products .container .grid .element-item .card .content .notes .note img, #new-arrivals .container .cards .card .content .notes .note img {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
}
.card .content .notes .note p, #premium-products .container .grid .element-item .card .content .notes .note p, #new-arrivals .container .cards .card .content .notes .note p {
  text-align: center;
  font-size: 13px;
  margin-top: 4px;
}
.card .content .add, #premium-products .container .grid .element-item .card .content .add, #new-arrivals .container .cards .card .content .add {
  display: flex;
  gap: 7px;
  padding-bottom: 10px;
}
.card .content .add .favorite, #premium-products .container .grid .element-item .card .content .add .favorite, #new-arrivals .container .cards .card .content .add .favorite,
.card .content .add .add-to-cart,
#premium-products .container .grid .element-item .card .content .add .add-to-cart,
#new-arrivals .container .cards .card .content .add .add-to-cart {
  border: none;
  background-color: #000;
  color: #fff;
  height: 34px;
  margin-top: 23px;
}
.card .content .add .favorite:hover, #premium-products .container .grid .element-item .card .content .add .favorite:hover, #new-arrivals .container .cards .card .content .add .favorite:hover,
.card .content .add .add-to-cart:hover,
#premium-products .container .grid .element-item .card .content .add .add-to-cart:hover,
#new-arrivals .container .cards .card .content .add .add-to-cart:hover {
  background-color: #b39964;
  transition: 0.5s;
}
.card .content .add .favorite, #premium-products .container .grid .element-item .card .content .add .favorite, #new-arrivals .container .cards .card .content .add .favorite {
  width: 44px;
}
.card .content .add .favorite i, #premium-products .container .grid .element-item .card .content .add .favorite i, #new-arrivals .container .cards .card .content .add .favorite i {
  font-size: 20px;
}
.card .content .add .add-to-cart, #premium-products .container .grid .element-item .card .content .add .add-to-cart, #new-arrivals .container .cards .card .content .add .add-to-cart {
  font-weight: 600;
  width: 100%;
  flex: 1;
}

.blog-card {
  width: 370px;
}
.blog-card:hover {
  transition: 0.5s;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.blog-card .image {
  height: 252px;
  overflow: hidden;
}
.blog-card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.blog-card .image img:hover {
  transform: scale(1.1);
  transition: 0.5s;
}
.blog-card .content {
  padding: 20px;
  background-color: #f8f9fa;
}
.blog-card .content h2 {
  text-transform: uppercase;
  color: #292929;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 15px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}
.blog-card .content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #323232;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  margin-bottom: 15px;
}
.blog-card .content .read-more {
  border: 2px solid #e0e0e0;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  padding: 17px 34px;
}
.blog-card .content .read-more:hover {
  color: #fff;
  background-color: #b39964;
  transition: 0.5s;
  border-color: #b39964;
}

@media only screen and (max-width: 550px) {
  .card, #premium-products .container .grid .element-item .card, #new-arrivals .container .cards .card {
    width: 100%;
  }
  .blog-card {
    width: 100%;
  }
}
#new-arrivals .container .title {
  margin-top: 95px;
}
#new-arrivals .container .title h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
  text-transform: capitalize;
  text-align: center;
}
#new-arrivals .container .title .new-arrival-bg {
  background-image: url("../../assets/images/section-bg-4.png");
  width: 540px;
  height: 100px;
  background-repeat: no-repeat;
  margin: 0 auto;
  margin-top: 40px;
}
#new-arrivals .container .cards {
  display: flex;
  justify-content: space-between;
}
#how-it-works .container h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #323232;
  margin-bottom: 3rem;
  margin-top: 90px;
}
#how-it-works .container .row .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 33%;
}
#how-it-works .container .row .item i {
  font-size: 47px;
  color: #b39964;
}
#how-it-works .container .row .item .fa-mouse-pointer {
  display: inline-block;
  animation: bounce 1.1s infinite ease-in-out;
}
#how-it-works .container .row .item .fa-hand-pointer {
  display: inline-block;
  animation: bounce 1.2s infinite ease-in-out;
}
#how-it-works .container .row .item .fa-shopping-bag {
  display: inline-block;
  animation: bounce 1.35s infinite ease-in-out;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
#how-it-works .container .row .item h4 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 20px;
}

#Whats-inside-the-box {
  background-color: #f5f5f5;
  margin-top: 40px;
}
#Whats-inside-the-box .container {
  display: flex;
}
#Whats-inside-the-box .container__left {
  height: 416px;
}
#Whats-inside-the-box .container__left img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#Whats-inside-the-box .container__right h2 {
  margin-top: 8px;
  text-transform: uppercase;
  color: #323232;
  margin-bottom: 3rem;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
#Whats-inside-the-box .container__right .desc_first,
#Whats-inside-the-box .container__right .desc_second {
  color: #323232;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  font-weight: 500;
}
#Whats-inside-the-box .container__right .months {
  display: flex;
  margin: 24px 0;
}
#Whats-inside-the-box .container__right .months ul li {
  color: #323232;
  margin-bottom: 6px;
}
#Whats-inside-the-box .container__right .months ul li h4 {
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 500;
}
#Whats-inside-the-box .container__right .months ul li i {
  margin-right: 4px;
}

#premium-products {
  padding-top: 90px;
}
#premium-products .container .filters {
  display: flex;
  gap: 25px;
  justify-content: center;
}
#premium-products .container .filters button {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #323232;
  font-family: "Libre Franklin", sans-serif;
}
#premium-products .container .filters button:hover {
  color: #b39964;
  transition: 0.5s;
}
#premium-products .container .filters .active {
  color: #b39964;
}
#premium-products .container .section-title-bg {
  display: flex;
  justify-content: center;
  margin: 30px;
}
#premium-products .container h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
  text-transform: capitalize;
}
#premium-products .container .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#premium-products .container .grid .element-item {
  width: 25%;
}
#brands {
  margin-top: 65px;
  background-color: #f5f5dc;
}

#blogs .title {
  margin-top: 48px;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 30px;
  text-transform: capitalize;
}
#blogs .bg {
  display: flex;
  justify-content: center;
}
#blogs .container {
  margin-top: 30px;
  margin-bottom: 90px;
}

#parfums .title {
  background-color: #e7e7e7;
}
#parfums .title .container-title {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#parfums .title .container-title p {
  width: -moz-max-content;
  width: max-content;
  padding: 15px 16px;
  background-color: #fff;
  font-weight: 500;
  display: flex;
  gap: 6px;
  align-items: center;
}
#parfums .title .container-title p span:last-child {
  color: #b39964;
}
#parfums .container .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
#parfums .container .head h4 {
  font-size: 22px;
  font-weight: 500;
}
#parfums .container .head h4 span {
  color: #b39964;
}
#parfums .container .head .filter {
  display: flex;
  align-items: center;
  gap: 22px;
}
#parfums .container .head .filter select {
  border: 1px solid #d2d2d2;
  width: 158px;
  padding: 12px 10px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: white url("../../assets/images/arrow-down.svg") no-repeat right 10px center;
  background-size: 12px;
}
#parfums .container .head .filter button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 10px;
  width: 180px;
  border: 1px solid #d2d2d2;
  background-color: #fff;
}
#parfums .container .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 15px 0 44px 0;
}

#category-slider {
  background-image: url("../../assets/images/Layer 63.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 228px;
  padding-top: 20px;
}

#filter-menu {
  width: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100vh;
  position: fixed;
  right: -150%;
  top: 0;
  transition: 0.5s;
}
#filter-menu .filter {
  display: flex;
  justify-content: end;
}
#filter-menu .filter .filter-item {
  background-color: #fff;
  width: 464px;
  height: 100vh;
  padding: 48px 40px 40px 40px;
}
#filter-menu .filter .filter-item .filter-item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
#filter-menu .filter .filter-item .filter-item-title h4 {
  font-size: 18px;
  font-weight: 500;
}
#filter-menu .filter .filter-item .filter-item-title .close-btn {
  background: none;
  border: none;
}
#filter-menu .filter .filter-item .filter-item-title .close-btn i {
  font-size: 24px;
}
#filter-menu .filter .filter-item ul {
  margin-top: 40px;
}
#filter-menu .filter .filter-item ul li {
  border-bottom: 1px solid #f0f0f0;
}
#filter-menu .filter .filter-item ul li button {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  background: none;
  border: none;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
#filter-menu .filter .filter-item ul li button:hover {
  color: #b39964;
  transition: 0.5s;
}
#filter-menu .filter .filter-item ul li button i {
  font-size: 20px;
}

#title {
  background-color: #dadada;
}
#title .container .title p {
  width: -moz-max-content;
  width: max-content;
  padding: 15px 16px;
  background-color: #fff;
  font-weight: 500;
  display: flex;
  gap: 6px;
  align-items: center;
}
#title .container .title p span:last-child {
  color: #b39964;
}

#detail {
  margin-bottom: 100px;
  margin-top: 40px;
}
#detail .container .row {
  gap: 22px;
}
#detail .container .row .image-gallery {
  width: 50%;
  display: flex;
  gap: 16px;
  flex-direction: row-reverse;
}
#detail .container .row .detail {
  width: 50%;
}
#detail .container .row .detail h2 {
  font-size: 35px;
  font-weight: 500;
}
#detail .container .row .detail ul {
  display: flex;
  margin: 15px 0;
}
#detail .container .row .detail ul li i {
  color: #b17742;
}
#detail .container .row .detail p:nth-of-type(1) {
  font-size: 13px;
  color: #9e4b00;
  font-weight: 500;
  margin-bottom: 6px;
}
#detail .container .row .detail p:nth-of-type(2) {
  font-size: 13px;
  font-weight: 500;
}
#detail .container .row .detail .price {
  margin: 21px 0 13px 0;
  font-size: 31px;
  color: #b17742;
  font-weight: 600;
}
#detail .container .row .detail .add-to-cart {
  background-color: #d3bf95;
  font-size: 15px;
  padding: 20px 42px;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 23px;
}
#detail .container .row .detail .subscription {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
#detail .container .row .detail .subscription-item {
  background-color: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 8px 10px;
}
#detail .container .row .detail .subscription-item img {
  width: 84px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#detail .container .row .detail .subscription-item .vial {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#detail .container .row .detail .subscription-item .subscribe-btn {
  background-color: #d3bf95;
  font-size: 15px;
  padding: 20px 35px;
  border: none;
  margin-top: 44px;
  font-weight: 600;
}
#detail .container .row .detail .desc-title {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 5px;
  font-weight: 500;
}
#detail .container .row .detail .desc {
  font-size: 14px;
  color: #6b6b6b;
}
#detail .container .row .detail .new-campaign {
  font-size: 18px;
  margin-top: 33px;
}
#detail .container .row .detail .campaign-img {
  margin-top: 4px;
  width: 100%;
  height: 135px;
  -o-object-fit: contain;
     object-fit: contain;
}

#notes .container .filters {
  display: flex;
  gap: 100px;
}
#notes .container .filters button {
  background: none;
  border: none;
  font-size: 30px;
  color: #989898;
}
#notes .container .filters .active {
  color: #000;
}
#notes .container .grid {
  margin-top: 30px;
}
#notes .container .grid .element-item .notes {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
#notes .container .grid .element-item .notes .note-item {
  width: 160px;
}
#notes .container .grid .element-item .notes .note-item img {
  width: 100%;
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
}
#notes .container .grid .element-item .notes .note-item p {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

@media only screen and (max-width: 768px) {
  #how-it-works .container h2 {
    margin-top: 50px;
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  #how-it-works .container .row {
    flex-direction: column;
    gap: 15px;
  }
  #how-it-works .container .row .item {
    width: 100%;
  }
  #Whats-inside-the-box .container {
    flex-direction: column;
  }
  #Whats-inside-the-box .container__right {
    padding-bottom: 15px;
  }
  #Whats-inside-the-box .container__right h2 {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }
  #Whats-inside-the-box .container__right .months {
    flex-direction: column;
    gap: 15px;
  }
  #detail .container .row {
    flex-direction: column-reverse;
  }
  #detail .container .row .image-gallery, #detail .container .row .detail {
    width: 100%;
  }
}
@media only screen and (max-width: 550px) {
  #new-arrivals .container .title {
    margin-top: 60px;
  }
  #new-arrivals .container .title h2 {
    margin-bottom: 0;
    font-size: 25px;
  }
  #new-arrivals .container .title .new-arrival-bg {
    width: 100%;
    height: 80px;
    background-position: center;
    margin-top: 0;
  }
  #blogs .bg {
    width: 100%;
    padding: 0 20px;
  }
  #blogs .bg img {
    width: 100%;
  }
  #blogs .title {
    font-size: 25px;
    margin-bottom: 25px;
  }
  #blogs .container {
    margin-top: 20px;
  }
  #category-slider {
    height: 190px;
  }
  #premium-products {
    padding-top: 60px;
  }
  #premium-products .container h2 {
    font-size: 25px;
  }
  #premium-products .container .section-title-bg img {
    width: 100%;
  }
  #premium-products .container .grid .element-item {
    width: 100%;
    margin-bottom: 20px;
  }
  #parfums .title .container-title p {
    padding: 12px 16px;
    font-size: 14px;
  }
  #parfums .container .head {
    gap: 12px;
    margin-top: 30px;
    flex-direction: column;
    align-items: flex-start;
  }
  #parfums .container .head h4 {
    font-size: 18px;
  }
  #parfums .container .head .filter {
    width: 100%;
  }
  #parfums .container .head .filter button, #parfums .container .head .filter select {
    width: 100%;
  }
  #filter-menu .bg .filter .filter-item {
    width: 80%;
  }
  #title .container .title p {
    font-size: 14px;
    padding: 12px 16px;
  }
  #detail {
    margin-bottom: 50px;
  }
  #detail .container .row .detail h2 {
    font-size: 25px;
  }
  #detail .container .row .detail .subscription, #detail .container .row .detail .subscription-item {
    display: none;
  }
  #detail .container .row .image-gallery {
    display: block;
  }
  #notes .container .filters {
    gap: 20px;
  }
  #notes .container .filters button {
    font-size: 16px;
    font-weight: 600;
  }
  #notes .container .grid .element-item .notes {
    gap: 15px;
  }
  #notes .container .grid .element-item .notes .note-item {
    width: 100px;
  }
  #notes .container .grid .element-item .notes .note-item img {
    height: 100px;
  }
  #notes .container .grid .element-item .notes .note-item p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 390px) {
  #notes .container .grid .element-item .notes {
    gap: 12px;
  }
  #notes .container .grid .element-item .notes .note-item {
    width: 80px;
  }
  #notes .container .grid .element-item .notes .note-item img {
    height: 80px;
  }
  #notes .container .grid .element-item .notes .note-item p {
    font-size: 14px;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mySwiper-home-banner {
  width: 100%;
  overflow: hidden;
}
.mySwiper-home-banner .swiper-wrapper .swiper-slide {
  height: 500px;
  background-image: url("../../assets/images/1_1728298145.png");
  background-position: center;
  background-repeat: no-repeat;
}
.mySwiper-home-banner .swiper-wrapper .swiper-slide .container {
  height: 100%;
}
.mySwiper-home-banner .swiper-wrapper .swiper-slide .container .content {
  color: #fff;
  width: 600px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mySwiper-home-banner .swiper-wrapper .swiper-slide .container .content h1 {
  font-size: 53px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 5px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.mySwiper-home-banner .swiper-wrapper .swiper-slide .container .content a {
  color: #323232;
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  width: 180px;
  height: 55px;
  line-height: 55px;
  text-decoration: none;
  text-transform: capitalize;
  transition: all 300ms ease-in 0s;
  margin-top: 25px;
  text-align: center;
  background: #fff none repeat scroll 0 0;
}
.mySwiper-home-banner .swiper-wrapper .swiper-slide .container .content a i {
  margin-right: 5px;
}
.mySwiper-home-banner .swiper-wrapper .swiper-slide .container .content a:hover {
  background-color: #b39964;
  color: #ffffff;
}

.mySwiper-new-arrivals {
  height: 680px;
  padding-top: 10px !important;
}

.mySwiper-brands {
  height: 78px;
}
.mySwiper-brands .swiper-wrapper .swiper-slide img {
  width: 170px;
  height: 100%;
}

.mySwiper-categories .swiper-wrapper .swiper-slide .item {
  width: 224px;
}
.mySwiper-categories .swiper-wrapper .swiper-slide .item .img {
  height: 145px;
  width: 100%;
  border: 3px solid transparent;
}
.mySwiper-categories .swiper-wrapper .swiper-slide .item .img:hover {
  border: 3px solid #b47c48;
  transition: 0.5s;
}
.mySwiper-categories .swiper-wrapper .swiper-slide .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mySwiper-categories .swiper-wrapper .swiper-slide .item h4 {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-top: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mySwiper-categories .swiper-button-next,
.mySwiper-categories .swiper-button-prev {
  color: #000 !important;
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  top: 75px;
}
.mySwiper-categories .swiper-button-next::after,
.mySwiper-categories .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
}
.mySwiper-categories .swiper-button-disabled {
  opacity: 0 !important;
}

.mySwiper-detail-image-gallery2 {
  height: 615px;
  width: 540px;
  flex: 1;
}
.mySwiper-detail-image-gallery2 .swiper-button-next,
.mySwiper-detail-image-gallery2 .swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.mySwiper-detail-image-gallery2 .swiper-button-next::after,
.mySwiper-detail-image-gallery2 .swiper-button-prev::after {
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

.mySwiper-detail-image-gallery .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  border: 2px solid #c6c6c6;
}
.mySwiper-detail-image-gallery .swiper-slide .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.3);
}

.mySwiper-detail-image-gallery .swiper-slide-thumb-active {
  border: 2px solid #b47c48;
}
.mySwiper-detail-image-gallery .swiper-slide-thumb-active .bg {
  background-color: rgba(0, 0, 0, 0);
}

.mySwiper-detail-image-gallery .swiper-wrapper .swiper-slide img,
.mySwiper-detail-image-gallery2 .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mySwiper-detail-image-gallery {
  overflow: hidden;
  height: 580px;
  width: 80px;
}
.mySwiper-detail-image-gallery .swiper-slide {
  width: 100%;
  height: 80px !important;
}

.mySwiper-blogs {
  padding-top: 10px !important;
  padding-bottom: 20px !important;
}

.mySwiper-inner-page-new-arrivals {
  padding: 10px 0;
}

@media only screen and (max-width: 550px) {
  .mySwiper-home-banner .swiper-wrapper .swiper-slide {
    height: 430px;
  }
  .mySwiper-home-banner .swiper-wrapper .swiper-slide .container .content {
    width: 100%;
  }
  .mySwiper-home-banner .swiper-wrapper .swiper-slide .container .content h1 {
    font-size: 7.273vw;
  }
  .mySwiper-brands .swiper-wrapper .swiper-slide {
    display: flex;
    justify-content: center;
  }
  .mySwiper-categories .swiper-wrapper .swiper-slide .item {
    width: 40.727vw;
  }
  .mySwiper-categories .swiper-wrapper .swiper-slide .item .img {
    border: 2px solid #fff;
    height: 22.364vw;
  }
  .mySwiper-categories .swiper-wrapper .swiper-slide .item h4 {
    margin-top: 5px;
  }
  .mySwiper-categories .swiper-button-next,
  .mySwiper-categories .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  .mySwiper-categories .swiper-button-next::after,
  .mySwiper-categories .swiper-button-prev::after {
    font-size: 14px;
  }
  .mySwiper-detail-image-gallery2 {
    width: 100%;
    height: 400px;
  }
  .mySwiper-detail-image-gallery {
    margin-top: 10px;
    height: 100%;
    width: 100%;
  }
  .mySwiper-detail-image-gallery .swiper-wrapper {
    margin: unset !important;
    width: 100%;
    flex-direction: row !important;
  }
  .mySwiper-detail-image-gallery .swiper-wrapper .swiper-slide {
    width: 25%;
  }
}
@media only screen and (max-width: 390px) {
  .mySwiper-categories .swiper-button-next,
  .mySwiper-categories .swiper-button-prev {
    top: 50px;
  }
  .mySwiper-home-banner .swiper-wrapper .swiper-slide .container .content h1 {
    font-size: 8.273vw;
  }
}