@charset "UTF-8";
body.no-scroll {
  overflow: hidden;
}
/* carousel.scss */
#header {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  transition: background-image 0.6s ease-in-out;
}

.carousel-nav {
  position: absolute;
  bottom: 40px;
  left: 90%;
  transform: translateX(-50%);
  display: flex;
}
@media (max-width: 768px) {
  .carousel-nav {
    display: none;
  }
}

.carousel-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}
.carousel-dot span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  transition: color 0.3s ease;
}
.carousel-dot:hover {
  border-color: rgba(255, 255, 255, 0.8);
}
.carousel-dot:hover span {
  color: rgba(255, 255, 255, 0.8);
}
.carousel-dot.active {
  border-color: white;
}
.carousel-dot.active span {
  color: white;
}
.carousel-dot.active::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 2px solid white;
  animation: progress 5s linear;
}

#hero-section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
#hero-section.active {
  opacity: 1;
  transform: translateY(0);
}
#hero-section h1,
#hero-section h2 {
  transition: all 0.6s ease-out;
}

@keyframes progress {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .carousel-nav {
    bottom: 20px;
  }
  .carousel-dot {
    width: 40px;
    height: 40px;
  }
  .carousel-dot span {
    font-size: 12px;
  }
}
.new-arrivals {
  width: 100%;
  padding: 88px 10px 30px 10px !important;
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .new-arrivals {
    padding: 35px 0px 0px !important;
    margin: 0px;
  }
  .new-arrivals h2 {
    font-size: 24px !important;
    margin-bottom: 20px !important;
    font-family: Jost !important;
    font-weight: 500 !important;
  }
  .new-arrivals .category-list li {
    margin: 0 !important;
  }
}
.new-arrivals h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 30px;
  letter-spacing: -1px;
}
.new-arrivals .category-list {
  width: 850px;
  padding: 15px;
  display: flex;
  justify-content: space-around;
  list-style: none;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .new-arrivals .category-list {
    width: 100%;
    flex-wrap: wrap;
  }
}
.new-arrivals .category-list li a {
  color: black;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}
.new-arrivals .category-list li a:hover,
.new-arrivals .category-list li a.active {
  color: var(--color-primary, #cb9274);
  text-decoration: underline;
}
@media (max-width: 768px) {
  .new-arrivals .category-list li a {
    font-size: 12px;
    margin: 0px 3px;
  }
}
.new-arrivals .arrivals-carousel {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.new-arrivals .arrivals-carousel #back-button,
.new-arrivals .arrivals-carousel #next-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}
@media (max-width: 768px) {
  .new-arrivals .arrivals-carousel #back-button,
  .new-arrivals .arrivals-carousel #next-button {
    display: none !important;
  }
}
.new-arrivals .arrivals-carousel #back-button img,
.new-arrivals .arrivals-carousel #next-button img {
  width: 40px;
  height: 40px;
}
.new-arrivals .arrivals-carousel #back-button {
  left: 32px;
  margin-top: -26px;
}
.new-arrivals .arrivals-carousel #next-button {
  right: 34px;
  margin-top: -26px;
}
.new-arrivals .arrivals-carousel .carousel-container {
  overflow-x: scroll;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.new-arrivals .arrivals-carousel .carousel-container::-webkit-scrollbar {
  display: none;
}

.arrivals-card {
  flex: 0 0 auto;
  width: 342px;
  margin-right: 20px;
  position: relative;
  overflow: hidden;
  overflow: hidden;
}
.arrivals-card:hover .img-container img {
  transform: scale(1.3);
}
.arrivals-card .img-container {
  overflow: hidden;
  height: 422px;
  border-radius: 10px 10px 0px 0px;
}
.arrivals-card .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px 10px 0px 0px;
  transition-duration: 0.6s;
}
.arrivals-card .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 422px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.226) 50%, rgba(255, 255, 255, 0.767) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px 10px 0px 0px;
}
.arrivals-card .hover-overlay .options .sizes,
.arrivals-card .hover-overlay .options .colors {
  margin-bottom: 10px;
}
.arrivals-card .hover-overlay .options .sizes p,
.arrivals-card .hover-overlay .options .colors p {
  color: black;
  font-size: 14px;
  margin-bottom: 5px;
}
.arrivals-card .hover-overlay .options .sizes .option-buttons,
.arrivals-card .hover-overlay .options .colors .option-buttons {
  display: flex;
  gap: 5px;
}
.arrivals-card .hover-overlay .options .sizes .option-buttons button,
.arrivals-card .hover-overlay .options .colors .option-buttons button {
  width: 20px;
  height: 20px;
  border: none;
  background: white;
  border-radius: 50%;
  font-size: 9px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.arrivals-card .hover-overlay .options .sizes .option-buttons button:hover,
.arrivals-card .hover-overlay .options .colors .option-buttons button:hover {
  background: black;
  color: white;
}
.arrivals-card .hover-overlay .actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.arrivals-card .hover-overlay .actions button {
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: none;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.arrivals-card .hover-overlay .actions button img {
  width: 40px;
  height: 40px;
}
.arrivals-card .hover-overlay .actions button:hover {
  transform: scale(1.1);
}
.arrivals-card:hover .hover-overlay {
  opacity: 1;
}
.arrivals-card .card-info {
  padding: 15px 10px;
  border-width: 0px, 1px, 1px, 1px;
  border-style: solid;
  border-color: #eaeaea;
  border-top: none;
  border-radius: 0 0 10px 10px;
}
.arrivals-card .card-info .card-title {
  font-weight: bold;
  margin-bottom: 5px;
}
.arrivals-card .card-info .card-price {
  color: var(--color-primary, #cb9274);
}
.arrivals-card .card-info .card-price .fake-price {
  color: gray;
  font-size: 12px;
  text-decoration: line-through;
  margin-left: 5px;
}

.newslatter {
  background-image: url("../images/newslatter.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  /* height: 366px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0px;
}
.newslatter span.info {
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: white;
  text-transform: uppercase;
}
.newslatter div.title {
  line-height: normal;
  font-family: Jost;
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: white;
  text-transform: uppercase;
}
.newslatter div.date {
  color: white;
  font-size: 18px;
  margin: 0 !important;
  text-align: center;
}
.newslatter h3 {
  color: white;
  font-size: 18px;
  font-weight: 400;
  line-height: 62px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
.newslatter div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 50px 0px;
}
.newslatter div input {
  height: 100%;
  width: 426px;
  color: white;
  background-color: transparent;
  padding: 10px 20px;
  border-radius: 4px;
  border: white 2px solid;
  font-size: 18px;
  transition-duration: 0.5s;
}
.newslatter div input::placeholder {
  color: white !important;
}
@media (max-width: 768px) {
  .newslatter div input {
    width: 181px;
    padding: 8px 15px;
    font-family: DM Sans;
    font-size: 12px;
    font-weight: 400;
    line-height: 15.62px;
    text-align: left;
    text-underline-position: from-font;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
  }
  .newslatter div.date {
    font-size: 14px;
  }
}
.newslatter div button {
  height: 100%;
  width: 111px;
  background-color: white;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  transition-duration: 0.5s;
  padding: 15px;
  border: 1px solid #fff;
  cursor: pointer;
}
.newslatter div button:hover {
  background-color: transparent;
  color: white;
}
@media (max-width: 768px) {
  .newslatter div button {
    width: 82px;
    font-family: DM Sans;
    font-size: 12px;
    padding: 8px 0px !important;
    text-transform: uppercase;
  }
}

.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 4rem 0;
}
.footer__container {
  padding: 0px 90px !important;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .footer__container {
    grid-template-columns: 1fr;
    text-align: start;
  }
}
.footer__brand {
  max-width: 400px;
}
@media (max-width: 768px) {
  .footer__brand {
    margin-bottom: 26px;
  }
}
.footer__logo {
  height: 40px;
  margin-bottom: 1rem;
}
.footer__description {
  font-size: 0.9rem;
  line-height: 20px;
  margin-bottom: 1.5rem;
  color: #cccccc;
  padding: 0 10px;
}
footer .icons {
  display: flex;
  gap: 31px;
  padding: 20px 10px;
}
@media (max-width: 768px) {
  .footer__social {
    justify-content: start;
  }
}
.social-link {
  color: #ffffff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
footer .social-link:hover {
  color: var(--color-primary, #cb9274);
}
.footer__heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__link {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 2;
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: #ffb86d;
  text-decoration: underline;
}

.bottom-footer {
  background-color: #1a1a1a;
  padding: 4px 90px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.bottom-footer__container {
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .bottom-footer__container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .bottom-footer {
    padding: 10px;
  }
}
.bottom-footer__copyright {
  color: #cccccc;
  font-size: 0.875rem;
  margin: 0;
}
.bottom-footer__payment-methods {
  display: flex;
  gap: 1rem;
  align-items: center;
}
@media (max-width: 768px) {
  .bottom-footer__payment-methods {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.bottom-footer__payment-icon {
  height: 24px;
  width: auto;
  opacity: 0.8;
}

* {
  font-family: "DM Sans", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

main > *:not(header):not(.scrolled):not(.promo-header):not(footer):not(.copyright):not(.newslatter) {
  max-width: 2565px;
  margin: auto;
}

.promo-header {
  display: flex;
  /* justify-content: center; */
  background-color: var(--color-primary, #cb9274);
  padding: 0 102px !important;
  /* gap: 50px; */
  color: #fff;
  padding: 0 80px;
}
.separator {
  flex: 1;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  /* background-color: red; */
  /* border: solid; */
}
.separator.center {
  /* margin: auto; */
  flex: 1.1;
}
.promotional-banners {
  margin: auto;
  display: flex;
  font-size: 14px;
  gap: 90px !important;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .promo-header {
    justify-content: center;
    padding: 0px !important;
    min-height: 30px;
  }
  .promotional-banners {
    font-size: 11px;
    gap: 0px !important;
  }
  .separator {
    flex: 0;
  }
  .separator.center {
    flex: 1;
  }
  .promotional-banners__btn-next,
  .promotional-banners__btn-prev {
    display: flex;
  }
}
/* s Drr*/
header {
  position: sticky;
  top: 0;
}
header:sticky {
  display: none;
}

#carousel {
  margin-top: -80px;
}
.carousel-item::before {
  content: "";
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.723), transparent) !important;
}
@media (max-width: 768px) {
  #carousel {
    margin-top: -44px;
  }
}
@media (max-width: 880px) {
  .promo-header .lang-curren {
    display: none !important;
  }
  .promotional-banners .promotional-banners__container {
    width: 85%;
  }
}

.navbar .menu-icon {
  filter: invert(1) !important;
}

#index header.sticky {
  background-color: white !important;
  .navbar .logo,
  .navbar .icons-container a img,
  .navbar .menu-icon {
    filter: invert(1) !important;
  }
  .navbar #menu-links > li > a:not(.active) {
    color: #000 !important;
  }
  .navbar #menu-links > li > a:hover {
    color: var(--color-primary, #cb9274) !important;
  }
}
/* e Drr*/

.promo-header .icons {
  width: 150px;
  /* margin: 0 12px; */
  line-height: 40px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  justify-content: space-between;
}
.promo-header .icons a i {
  font-size: 18px;
}
@media (max-width: 880px) {
  .promo-header .icons {
    display: none;
  }
}

.promo-header .icons .social-link:hover {
  color: #000;
}
.promo-header .slide-promo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  width: 457px;
  text-align: center;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .promo-header .slide-promo {
    width: 257px;
    margin: 0 10px;
    font-size: 11px;
    font-weight: 500;
  }
}
.promo-header .lang-curren {
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 20px; */
}
.promo-header .lang-curren .lang,
.promo-header .lang-curren .curren {
  position: relative;
  background-color: var(--color-primary, #cb9274);
  border: none;
  color: #ffffff;
  font-size: 14px;
  padding: 8px 15px;
  cursor: pointer;
}
.promo-header .lang-curren .lang::after,
.promo-header .lang-curren .curren::after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: white;
  font-size: 12px;
  pointer-events: none;
}
.promo-header .lang-curren .lang:focus,
.promo-header .lang-curren .curren:focus {
  outline: none;
  background-color: white;
  color: var(--color-primary, #cb9274);
  text-decoration: underline;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.promo-header .lang-curren .lang:focus::after,
.promo-header .lang-curren .curren:focus::after {
  color: var(--color-primary, #cb9274);
}
.promo-header .lang-curren .lang option,
.promo-header .lang-curren .curren option {
  background-color: white;
  color: #333333;
  /* padding: 8px 12px; */
  font-size: 16px;
}
.promo-header .lang-curren .lang option:checked,
.promo-header .lang-curren .curren option:checked {
  display: none;
}
.promo-header .lang-curren .lang option:hover,
.promo-header .lang-curren .curren option:hover {
  background-color: rgba(203, 146, 116, 0.1);
}
.promo-header .lang-curren .lang::-ms-expand,
.promo-header .lang-curren .curren::-ms-expand {
  display: none;
}
.promo-header .lang-curren .lang:-moz-focusring,
.promo-header .lang-curren .curren:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #ffffff;
}
.promo-header .lang-curren select::-webkit-scrollbar {
  width: 8px;
}
.promo-header .lang-curren select::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.promo-header .lang-curren select::-webkit-scrollbar-thumb {
  background: var(--color-primary, #cb9274);
  border-radius: 4px;
}
.promo-header .lang-curren .lang:focus,
.promo-header .lang-curren .curren:focus {
  outline: none;
}
.promo-header .lang-curren .lang:focus + .custom-options,
.promo-header .lang-curren .curren:focus + .custom-options {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #333333;
  border: 1px solid #555555;
  border-top: none;
  z-index: 1000;
}
.promo-header .lang-curren .lang:focus + .custom-options .option,
.promo-header .lang-curren .curren:focus + .custom-options .option {
  padding: 10px;
  cursor: pointer;
  background-color: white;
}
.promo-header .lang-curren .lang:focus + .custom-options .option:hover,
.promo-header .lang-curren .curren:focus + .custom-options .option:hover {
  background-color: white;
}
.promo-header .lang-curren .lang:focus + .custom-options .option.selected,
.promo-header .lang-curren .curren:focus + .custom-options .option.selected {
  background-color: #777777;
  color: #ffffff;
}

.promo-header .lang-curren .lang {
  /* background-color: blue; */
  padding: 0 !important;
  margin-right: 19px;
  width: 67px;
  overflow: overlay !important;
}
.promo-header .lang-curren .curren {
  /* background-color: blue; */
  padding: 0 !important;
  /* margin-right: 18px; */
  width: 51px;
}
.navbar {
  transition: background-color 0.3s ease-in-out;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 90px;
  background: transparent;
  border-bottom: 1px solid #eee;
  z-index: 5;
}

.nav-seperator {
  flex: 1;
  /* background-color: red; */
  align-items: center;
}
.nav-seperator.center {
  flex: 1;
  /* background-color: red; */
  align-items: center;
  justify-content: center;
}
.nav-seperator.center div {
  display: flex;
  justify-content: center;
}

.navbar:hover .menu-links li a {
  color: #000;
}
.navbar:hover .icons-container a {
  color: #000;
}
.navbar:hover .icons-container a:hover {
  color: var(--color-primary, #cb9274);
}
.navbar:hover .icons-container img {
  filter: invert(1);
}
.navbar .menu-icon {
  display: none;
  cursor: pointer;
}
@media (max-width: 880px) {
  .navbar .menu-icon {
    display: block;
    width: 16px;
  }
  .navbar .menu-icon::after {
    content: "</br>";
  }
}
.navbar .logo {
  height: 45px;
  margin-top: 4px;
  width: 171px;
  margin-left: 5px;
}

@media (max-width: 768px) {
  .navbar .logo {
    width: 111.49px;
    height: 27.29px;
  }
  .navbar .icons-container a img {
    height: 18px;
  }
  .navbar .icons-container a:first-child:not(.link-cart) {
    display: none;
  }
}
.navbar .nb-products {
  font-size: 9px;
  background-color: var(--color-primary, #cb9274);
}

.navbar .menu-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 5px 0px 0px 14px;
  font-size: 14px;
}

@media (max-width: 991px) {
  .carousel {
    padding-bottom: 0 !important;
  }
}
@media (max-width: 880px) {
  .navbar .menu-links {
    display: none;
  }
  .navbar .menu-links.active {
    display: flex;
    flex-direction: column;
  }
  .navbar .menu-links.active a {
    font-size: 10px;
  }
}
.navbar .menu-links li {
  position: static;
}
.navbar .collection-dropdown .collection-grid a {
  text-decoration: none;
  color: white;
  width: 16.3%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  transition-duration: 0.3s;
  margin: 3px 0px;
}

.navbar .menu-links li a .down-arrow {
  margin: 0px 10px;
  i {
    transition-duration: 0.3s;
  }
}
.navbar .menu-links li a:hover,
.navbar .menu-links li a.active {
  color: var(--color-primary, #cb9274) !important;
  text-decoration: underline;
}
.navbar .menu-links li a:hover .down-arrow i {
  transform: rotate(180deg);
}
.navbar .mega-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border-top: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 52px 33px 36px 33px;
  z-index: 1000;
}
.navbar .mega-dropdown.show {
  display: block;
}
.navbar .mega-dropdown .dropdown-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  padding: 0 2rem;
}
.navbar .mega-dropdown .dropdown-content .column h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: black;
}
.navbar .mega-dropdown .dropdown-content .column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.navbar .mega-dropdown .dropdown-content .column ul li {
  margin-bottom: 1rem;
}
.navbar .mega-dropdown .dropdown-content .column ul li a {
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.navbar .mega-dropdown .dropdown-content .column ul li a:hover {
  color: black;
}
.navbar .mega-dropdown .mega-dropdown-content {
  display: flex;
  padding: 0 5%;
  max-width: 1400px;
  margin: 0 auto;
}
.navbar .mega-dropdown .mega-dropdown-content .left-navigation {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 16px;
}
.navbar .mega-dropdown .mega-dropdown-content .left-navigation a {
  display: block;
  font-size: 20px;
  color: #333;
  text-decoration: none;
}
.navbar .mega-dropdown .mega-dropdown-content .content-columns {
  display: flex;
  flex: 4.4;
}
.navbar .mega-dropdown .mega-dropdown-content .content-columns .menu-column {
  flex: 1;
  padding: 0px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.navbar .mega-dropdown .mega-dropdown-content .content-columns .menu-column .menu-column__title {
  margin: 0 0 20px 0;
  font-size: 20px;
  color: #333;
}
.navbar .mega-dropdown .mega-dropdown-content .content-columns .menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  min-height: 152px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.navbar .mega-dropdown .mega-dropdown-content .content-columns .menu-column ul li {
  margin-bottom: 10px;
}
.navbar .mega-dropdown .mega-dropdown-content .content-columns .menu-column ul li a {
  color: #666;
  text-decoration: none;
  font-size: 16px;
}
.navbar .mega-dropdown .mega-dropdown-content .content-columns .menu-column ul li a:hover {
  color: #000;
}
.navbar .collection-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border-top: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 5px 22px;
}
.navbar .collection-dropdown.show {
  display: block;
}
.navbar .collection-dropdown .collection-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  /* justify-content: space-between; */
  /* grid-template-columns: repeat(7, 1fr); */
  gap: 6px;
  padding: 0;
  flex-wrap: nowrap;
}
.navbar .collection-dropdown .collection-grid .collection-item {
  position: relative;
  height: 264px;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
  background-color: #000;
  border-radius: 8px;
}
.navbar .collection-dropdown .collection-grid .collection-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease;
}
.navbar .collection-dropdown .collection-grid .collection-item .collection-title {
  position: absolute;
  bottom: 6.5rem;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 1.25rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.navbar .collection-dropdown .collection-grid .collection-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}
.navbar .collection-dropdown .collection-grid .collection-item:hover img {
  transform: scale(2.05);
  transition-duration: 1s;
  opacity: 60%;
}
.navbar .icons-container {
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 0 14px;
  gap: 33px;
}
.navbar .icons-container a {
  text-decoration: none;
  color: white;
  font-size: 0.9rem;
}

.navbar .icons-container a img {
  height: 20px;
  cursor: pointer;
}
.navbar .search-card {
  transform: translateY(0);
  opacity: 1;
  transition: 0.5s all ease;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #f3efef;
  border-top: 1px solid #ccc;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 16px 20px;
  z-index: 1000;
}
.navbar .search-card.hidden {
  display: block;
  transform: translateX(100%) !important;
  opacity: 0 !important;
}
.navbar .search-card .suggestions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.navbar .search-card .suggestions .title-div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .search-card .suggestions .title-div span {
  display: flex;
  width: 75px;
  justify-content: space-between;
}
.navbar .search-card .suggestions .title-div span .dot {
  width: 8px;
  height: 8px;
  background-color: #d9d9d9;
  border-radius: 50%;
}
.navbar .search-card .suggestions .title-div span .dot.active {
  background-color: #a6a6a6;
}
.navbar .search-card .suggestions .cards-div {
  width: 100%;
  display: flex;
  gap: 10px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.navbar .search-card .suggestions .cards-div .card {
  background-color: white;
  border-radius: 4px;
  width: 321px;
  height: 95px;
  display: flex;
  align-items: center;
  padding: 5px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.navbar .search-card .suggestions .cards-div .card .img-div {
  width: 78px;
  height: 78px;
  border-radius: 4px;
  margin: 5px;
}
.navbar .search-card .suggestions .cards-div .card .img-div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.navbar .search-card .suggestions .cards-div .card .details-div {
  display: flex;
  flex-direction: column;
}
.navbar .search-card .suggestions .cards-div .card .details-div p {
  font-size: 12px;
  font-weight: 400;
  color: #5b5859;
}
.navbar .search-card .suggestions .cards-div .card .details-div .price {
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-primary, #cb9274);
}
.navbar .search-card .suggestions .cards-div .card .details-div .price .fake-price {
  color: #5b5859;
  text-decoration: line-through;
}
.navbar .search-card .suggestions .cards-div .card .details-div a {
  font-size: 10px;
  color: #5b5859;
  align-self: flex-end;
}

@media (max-width: 960px) {
  .promo-header {
    padding: 0 50px !important;
  }
  .navbar {
    padding: 15px 38px;
  }
}
.carousel .carousel-item .caption .caption-description p {
  color: white;
}
@media (max-width: 768px) {
  .navbar {
    padding: 6px 22px;
  }
  .navbar .icons-container {
    gap: 16px;
    padding: 0;
  }
  .carousel .carousel-item .caption .caption-description p {
    font-size: 11px !important;
    color: white;
    margin-bottom: 0;
  }

  .carousel .carousel-item .caption {
    top: 27.7% !important;
  }
}
.search-input-container {
  background-color: white;
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px 12px;
  height: 50px;
  width: 430px;
}
.search-input-container .search-input {
  background-color: white;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
}
.search-input-container .search-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.search-input-container .search-btn img {
  width: 24px;
  height: 24px;
  filter: invert(1);
}
.navbar .search-suggestions {
  margin-top: 20px;
}
.navbar .search-suggestions .suggestion-list {
  list-style: none;
  padding: 10px;
}
.navbar .search-suggestions .suggestion-list li a {
  display: block;
  color: #333;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.3s;
}
.navbar .search-suggestions .suggestion-list li a:hover {
  color: var(--color-primary, #cb9274);
}
.navbar .hidden {
  display: none;
}
.navbar .cart-div {
  display: none;
  position: absolute;
  top: 100%;
  left: 62%;
  width: 583px;
  height: 570px;
  background-color: #f3efef;
  border-top: 1px solid #ccc;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px 40px;
  z-index: 1000;
}
@media (max-width: 768px) {
  .navbar .cart-div {
    width: 483px;
    left: 15%;
  }
}
.navbar .cart-div.visible {
  display: flex;
  justify-content: center;
}
.navbar .cart-div .empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.navbar .cart-div .empty-cart h1 {
  font-family: Jost;
  font-size: 28px;
  font-weight: 500;
}
.navbar .cart-div .empty-cart p {
  font-family: Jost;
  font-size: 15px;
  font-weight: 400;
  width: 300px;
  text-align: center;
}
.navbar .cart-div .empty-cart .more-suggestions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
}
.navbar .cart-div .empty-cart .more-suggestions span {
  background-color: white;
  width: 331px;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-radius: 4px;
}
.navbar .cart-div .empty-cart .more-suggestions span:hover aside img {
  transform: rotate(-90deg);
}
.navbar .cart-div .empty-cart .more-suggestions span img {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  -o-object-fit: cover;
  object-fit: cover;
}
.navbar .cart-div .empty-cart .more-suggestions span aside {
  height: 100%;
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .cart-div .empty-cart .more-suggestions span aside img {
  width: 24px;
  height: 24px;
  transition-duration: 0.6s;
}
.navbar .cart-div .empty-cart .more-suggestions span aside p {
  text-align: start;
  font-weight: 500;
  font-size: 13px;
}
.navbar .cart-div .empty-cart.hidden {
  display: none;
}
.navbar .cart-div .filled-cart {
  width: 100%;
  max-height: 520px;
  overflow-y: auto;
  /* For WebKit Browsers (Chrome, Edge, Safari) */
}
.navbar .cart-div .filled-cart::-webkit-scrollbar {
  width: 10px;
}
.navbar .cart-div .filled-cart::-webkit-scrollbar-track {
  background: #f4f4f4; /* Background of the track */
  border-radius: 10px; /* Rounded corners */
}
.navbar .cart-div .filled-cart::-webkit-scrollbar-thumb {
  background: rgb(198, 196, 196); /* Scrollbar thumb color */
  border-radius: 4px; /* Rounded corners */
}
.navbar .cart-div .filled-cart::-webkit-scrollbar-thumb:hover {
  background: gar; /* Darker color on hover */
}
.navbar .cart-div .filled-cart .cart-items .items-scroll {
  max-height: 344px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  /* For WebKit Browsers (Chrome, Edge, Safari) */
}
.navbar .cart-div .filled-cart .cart-items .items-scroll::-webkit-scrollbar {
  width: 6px;
}
.navbar .cart-div .filled-cart .cart-items .items-scroll::-webkit-scrollbar-track {
  background: #f4f4f4; /* Background of the track */
  border-radius: 10px; /* Rounded corners */
}
.navbar .cart-div .filled-cart .cart-items .items-scroll::-webkit-scrollbar-thumb {
  background: #c9875d; /* Scrollbar thumb color */
  border-radius: 10px; /* Rounded corners */
}
.navbar .cart-div .filled-cart .cart-items .items-scroll::-webkit-scrollbar-thumb:hover {
  background: #ad734b; /* Darker color on hover */
}
.navbar .cart-div .filled-cart .cart-items .items-scroll span {
  background-color: white;
  width: 473px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.navbar .cart-div .filled-cart .cart-items .items-scroll span img {
  width: 116px;
  height: 116px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
  margin: 10px;
}
.navbar .cart-div .filled-cart .cart-items .items-scroll span aside {
  width: 75%;
  margin: 10px;
}
.navbar .cart-div .filled-cart .cart-items .items-scroll span aside h1 {
  font-family: "Jost";
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  height: 26px;
  margin: 6px 0px;
}
.navbar .cart-div .filled-cart .cart-items .items-scroll span aside h1 img {
  width: 26px;
  height: 26px;
  margin-left: auto;
  cursor: pointer;
}
.navbar .cart-div .filled-cart .cart-items .items-scroll span aside p {
  color: #5b5859;
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 400;
  margin: 6px 0px;
}
.navbar .cart-div .filled-cart .cart-items .items-scroll span aside h3 {
  display: flex;
  width: 100%;
  margin-left: -10px;
}
.navbar .cart-div .filled-cart .cart-items .items-scroll span aside h3 span {
  background-color: transparent;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #ebebeb;
  margin: 0px 10px;
}
.navbar .cart-div .filled-cart .cart-items .items-scroll span aside h3 .price {
  width: 58px;
  background-color: transparent;
  margin-left: auto;
  color: var(--color-primary, #cb9274);
}
.navbar .cart-div .filled-cart .cart-items .suggestions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 15px 0px;
}
.navbar .cart-div .filled-cart .cart-items .suggestions .title-div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .cart-div .filled-cart .cart-items .suggestions .title-div span {
  display: flex;
  width: 75px;
  justify-content: space-between;
}
.navbar .cart-div .filled-cart .cart-items .suggestions .title-div span .dot {
  width: 8px;
  height: 8px;
  background-color: #d9d9d9;
  border-radius: 50%;
}
.navbar .cart-div .filled-cart .cart-items .suggestions .title-div span .dot.active {
  background-color: #a6a6a6;
}
.navbar .cart-div .filled-cart .cart-items .suggestions .cards-div {
  width: 100%;
  display: flex;
  gap: 10px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.navbar .cart-div .filled-cart .cart-items .suggestions .cards-div .card {
  background-color: white;
  border-radius: 4px;
  width: 321px;
  height: 95px;
  display: flex;
  align-items: center;
  padding: 5px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.navbar .cart-div .filled-cart .cart-items .suggestions .cards-div .card .img-div {
  width: 78px;
  height: 78px;
  border-radius: 4px;
  margin: 5px;
}
.navbar .cart-div .filled-cart .cart-items .suggestions .cards-div .card .img-div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.navbar .cart-div .filled-cart .cart-items .suggestions .cards-div .card .details-div {
  display: flex;
  flex-direction: column;
}
.navbar .cart-div .filled-cart .cart-items .suggestions .cards-div .card .details-div p {
  font-size: 12px;
  font-weight: 400;
  color: #5b5859;
}
.navbar .cart-div .filled-cart .cart-items .suggestions .cards-div .card .details-div .price {
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-primary, #cb9274);
}
.navbar .cart-div .filled-cart .cart-items .suggestions .cards-div .card .details-div .price .fake-price {
  color: #5b5859;
  text-decoration: line-through;
}
.navbar .cart-div .filled-cart .cart-items .suggestions .cards-div .card .details-div a {
  font-size: 10px;
  color: #5b5859;
  align-self: flex-end;
}
.navbar .cart-div .filled-cart hr {
  margin: 10px 0px;
  width: 80%;
}
.navbar .cart-div .filled-cart .checkout {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.navbar .cart-div .filled-cart .checkout .subtotal {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 7px 0px;
}
.navbar .cart-div .filled-cart .checkout .subtotal h3 {
  color: #5b5859;
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 400;
}
.navbar .cart-div .filled-cart .checkout .total {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 7px 0px;
}
.navbar .cart-div .filled-cart .checkout .total h1 {
  font-family: DM Sans;
  font-size: 20px;
  font-weight: 500;
}
.navbar .cart-div .filled-cart .checkout span {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
}
.navbar .cart-div .filled-cart .checkout span .view-cart-button {
  width: 171px;
  height: 45px;
  border: var(--color-primary, #cb9274) 1px solid;
  border-radius: 1px;
  color: var(--color-primary, #cb9274);
  background-color: transparent;
  transition-duration: 0.6s;
}
.navbar .cart-div .filled-cart .checkout span .view-cart-button:hover {
  background-color: var(--color-primary, #cb9274);
  color: white;
  transform: translateY(-3px);
}
.navbar .cart-div .filled-cart .checkout span .checkout-button {
  width: 294px;
  height: 45px;
  background-color: var(--color-primary, #cb9274);
  color: white;
  border: var(--color-primary, #cb9274) 1px solid;
  border-radius: 1px;
  transition-duration: 0.6s;
}
.navbar .cart-div .filled-cart .checkout span .checkout-button:hover {
  background-color: transparent;
  color: var(--color-primary, #cb9274);
  transform: translateY(-3px);
}
.navbar .cart-div .filled-cart .checkout p {
  font-family: DM Sans;
  font-size: 12px;
  font-weight: 400;
  color: #5b5859;
  margin: 10px;
}
.navbar .hidden {
  display: none;
}

#header {
  width: 100%;
  height: 873px;
  position: relative;
}
#header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.723), transparent);
}
@media (max-width: 768px) {
  #header {
    height: 530px;
  }
}
#header .scrolled {
  background-color: white;
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 2565px;
  border-bottom: 1px solid #ccc;
  z-index: 1001;
}
#header .scrolled ul li a,
#header .scrolled .icons-container a {
  color: black;
}
#header .scrolled ul li a:hover,
#header .scrolled .icons-container a:hover {
  color: var(--color-primary, #cb9274);
}
#header .scrolled ul li a img,
#header .scrolled .icons-container a img {
  filter: invert(1);
}
#header .scrolled .down-arrow {
  margin: 0px 10px;
}
#header .scrolled .logo {
  filter: invert(1);
}
@media (max-width: 768px) {
  #header .scrolled .menu-icon {
    filter: invert(1);
  }
  #header .scrolled ul li a {
    color: #000;
  }
}

#hero-section {
  height: 793px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 180px;
}
@media (max-width: 768px) {
  #hero-section {
    height: 500px;
    padding: 150px;
  }
}
#hero-section h2 {
  color: white;
}
@media (max-width: 768px) {
  #hero-section h2 {
    width: 70px;
    font-size: 11px;
  }
}
#hero-section h1 {
  width: 800px;
  color: white;
  font-size: 64px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 768px) {
  #hero-section h1 {
    width: 315px;
    font-size: 24px;
  }
}
#hero-section .animated-button {
  position: relative;
  width: 200px;
  padding: 20px 34px;
  border-radius: 4px;
  border: none;
  font-size: large;
  cursor: pointer;
  background-color: white;
  color: black;
  overflow: hidden;
  transition: transform 0.8s;
}
@media (max-width: 768px) {
  #hero-section .animated-button {
    width: 146px;
    height: 32px;
    font-size: 12px;
    padding: 0;
  }
}
#hero-section .animated-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: black;
  transition: width 0.8s ease;
  z-index: 1;
}
#hero-section .animated-button span {
  position: relative;
  z-index: 2;
  transition: color 0.8s;
}
#hero-section .animated-button:hover {
  transform: scale(1.05);
}
#hero-section .animated-button:hover::before {
  width: 100%;
}
#hero-section .animated-button:hover span {
  color: white;
}

.promo-container {
  display: flex;
  justify-content: space-around;
  padding: 20px 21px;
  background-color: #eae3db;
  width: 100%;
}
.promo-container .left-div {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: space-between;
}
.promo-container .left-div h1 {
  font-size: 40px;
}
.promo-container .left-div p {
  font-size: 14px;
}
.promo-container .left-div button {
  color: white;
  background-color: var(--color-primary, #cb9274);
  padding: 10px 30px;
  border: transparent;
  border-radius: 2px;
  margin: 5px;
}
.promo-container .left-div button:hover {
  background-color: transparent;
  color: var(--color-primary, #cb9274);
  transform: scale(1.01);
  transition-duration: 0.5s;
  border: var(--color-primary, #cb9274) 1px solid;
}
.promo-container .right-div {
  display: flex;
  width: 521px;
}
.promo-container .right-div .video-div {
  width: 308px;
  height: 115px;
}
.promo-container .right-div .video-div video {
  width: 100%;
  height: 100%;
}
.promo-container .right-div img {
  width: 208px;
}
.promo-container .right-div .inner-div {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
  padding: 20px;
}
.promo-container .right-div .inner-div h1 {
  font-size: 30px;
}
.promo-container .right-div .inner-div p {
  font-size: 17px;
}
@media (max-width: 768px) {
  .promo-container {
    display: none;
  }
}

.promo-container-2 {
  background-image: url(../images/promo-2-cover.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 68px 0px;
  background-position: 35% center;
}
.promo-container-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.463);
  z-index: 0;
}
.promo-container-2 p:nth-child(1) {
  z-index: 1;
  color: white;
  font-size: 14px;
  font-weight: 400;
  margin-top: 2px;
  margin-bottom: 5px;
}
.promo-container-2 p:last-of-type {
  color: red;
  margin: 1px;
}
.promo-container-2 h2 {
  z-index: 1;
  color: white;
  font-size: 54px;
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 768) {
  .promo-container-2 h2 {
    font-size: 34px;
  }
}
.promo-container-2 p {
  z-index: 1;
  color: white;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 35px;
}
.promo-container-2 button {
  width: 153px;
  height: 57px;
  z-index: 1;
  background-color: white;
  padding: 16px 34px;
  font-size: 18px;
  border-radius: 5px;
  border: transparent;
}
.promo-container-2 button:hover {
  background-color: black;
  color: white;
  transition-duration: 0.6s;
}

.our-collection {
  width: 100%;
  /* height: 945px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10px;
}
.our-collection > div {
  height: 730px;
  width: 95%;
  display: flex;
}
@media (min-width: 2500x) {
  .our-collection > div {
    height: 1100px;
  }
}
@media (max-width: 768px) {
  .our-collection > div {
    flex-direction: column;
  }
}
.our-collection > div > div {
  height: 100%;
  flex: 1;
  margin: 5px;
  position: relative;
  overflow: hidden;
  transition: flex 0.3s ease-in-out;
}
.our-collection > div > div:hover {
  flex: 2;
}
.our-collection > div > div:hover img {
  filter: brightness(0.6);
}
.our-collection > div > div img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: filter 0.3s ease-in-out;
  -o-object-fit: cover;
  object-fit: cover;
}
.our-collection > div > div h3 {
  color: white;
  position: absolute;
  left: 50%;
  font-size: 34px;
  transform: translateX(-50%);
  top: 50%;
  opacity: 1;
  font-size: 34px;
  transition: top 0.3s ease-in-out;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .our-collection > div > div h3 {
    font-size: 24px;
  }
}
.our-collection > div > div p {
  color: white;
  position: absolute;
  left: 50%;
  font-size: 24px;
  transform: translateX(-50%);
  top: 55%;
  opacity: 0;
  font-size: 24px;
  transition: top 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .our-collection > div > div p {
    font-size: 14px;
  }
}
.our-collection > div > div:hover h3 {
  top: 42.4%;
}
.our-collection > div > div:hover p {
  top: 50%;
  opacity: 1;
}
@media (max-width: 768px) {
  .our-collection > div > div:hover p {
    top: 57%;
  }
}

.best-seller {
  padding: 35px 100px 0px 100px !important;
  justify-content: center;
}
@media (max-width: 968px) {
  .best-seller {
    padding: 0 10px !important;
  }
}
.best-seller span.small_title {
  text-transform: uppercase;
  font-size: 18px;
  color: var(--color-primary, #cb9274);
  padding: 10px 0px;
}
.best-seller h2 {
  font-size: 32px;
  max-width: 380px;
  padding: 10px 0px;
  margin-bottom: 30px;
}
.best-seller .products-div {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(303px, 1fr));
  gap: 9px;
}
@media (max-width: 968px) {
  .best-seller .products-div {
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: scroll;
    display: flex;
    scrollbar-width: none;
  }
}
.best-seller .products-div .product-card {
  position: relative;
  width: 314px;
  margin-right: 8px;
  margin-bottom: -10px;
}
.best-seller .products-div .product-card__container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0px;
}
@media (max-width: 968px) {
  .best-seller .products-div .product-card {
    height: 445px;
  }
}
.best-seller .products-div .product-card:hover .add-div button {
  opacity: 1;
  animation: fadeIn 0.3s ease-in-out;
}
.best-seller .products-div .product-card:hover .image-container img:not(.like-div img) {
  /* Exclude like button image from zoom */
  transform: scale(1.3);
}
.best-seller .products-div .product-card .image-container {
  /* New container for the image */
  overflow: hidden; /* Contains the zoom effect */
}
.best-seller .products-div .product-card .image-container img {
  /* width: 100%; */
  /* height: 400px; */
  /* -o-object-fit: cover; */
  /* object-fit: cover; */
  /* display: block; */
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 968px) {
  .best-seller .products-div .product-card .image-container img {
    width: 300px;
  }
}
.best-seller .products-div .product-card p {
  color: var(--color-primary-e5, #cb9274e5);
  /* margin-bottom: -9px; */
  margin-top: -6px;
}
.best-seller .products-div .product-card .wishlist-button-add {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  opacity: 1;
}
.best-seller .products-div .product-card .like-div img {
  width: 42px;
  height: 42px;
}
.best-seller .products-div .product-card .add-div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 10px;
}
.best-seller .products-div .product-card .product-card__name-price {
  margin-top: 10px;
  text-transform: capitalize;
  a {
    color: black;
  }
}
a.name-product-a {
  color: black;
}
.best-seller .products-div .product-card .add-div button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.75);
  width: 100%;
  height: 52px;
  padding: 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.best-seller .products-div .product-card .add-div button:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.9);
}
.best-seller .products-div .product-card .add-div .Q-view {
  background-color: var(--color-primary-e5, #cb9274e5);
  color: white;
}
.best-seller .products-div .product-card .add-div .Q-view:hover {
  background-color: var(--color-primary-e5, #cb9274e5);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#all-products {
  display: flex;
  justify-content: center;
}
#all-products .btn {
  background-color: white;
  border: var(--color-primary, #cb9274) 2px solid;
  border-radius: 4px;
  color: var(--color-primary, #cb9274);
  padding: 20px 55px;
  text-transform: capitalize;
}
#all-products .btn:hover {
  background-color: var(--color-primary, #cb9274);
  color: white;
  cursor: pointer;
}
@media (max-width: 968px) {
  #all-products .btn {
    font-size: 12px;
    padding: 7px 24px;
    text-transform: uppercase;
  }
}

.fashion-section {
  background-color: #f0f0f0;
  background-image: url(../images/Vector\ 1.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding: 0;
  overflow: hidden;
  margin: 130px 0px;
}
.fashion-section .marquee {
  background-color: #eae3db;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
@media (max-width: 768px) {
  .fashion-section {
    overflow: visible;
  }
  .fashion-section .marquee {
    padding: 5px 0px;
  }
}

.fashion-section .marquee-content {
  display: inline-block;
}
.fashion-section .marquee-content span {
  display: inline-block;
  padding: 0 20px;
  font-size: 14px;
}
.fashion-section .marquee.marquee-right .marquee-content {
  animation: marquee-right 20s linear infinite;
}
.fashion-section .marquee.marquee-left .marquee-content {
  animation: marquee-left 20s linear infinite;
}
.fashion-section .main-content {
  padding: 50px;
  height: 80%;
  margin: 0 auto;
  text-align: center;
}

.fashion-section .main-content p {
  font-family: "Jost";
  width: 100%;
  font-size: 50px;
  line-height: 90px;
  font-weight: 600;
  color: #333;
  max-width: 1180px;
  margin: auto;
}
@media (max-width: 768px) {
  .fashion-section .main-content p {
    font-size: 24px;
    line-height: 40px;
    font-weight: 500px;
  }
}
.fashion-section .main-content p img {
  border-radius: 50px;
  object-fit: cover;
  object-position: 0 35%;
  box-shadow: 2px 2px 8px 0px #00000026;
}

@keyframes marquee-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes marquee-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 768px) {
  .fashion-section .main-content p img {
    height: 34px;
    width: 106px;
  }
  .fashion-section .main-content p {
    font-size: 1.5rem;
  }
}

.product-details {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-height: 1100px;
  padding: 80px 42px 30px;
}
@media (max-width: 768px) {
  .product-details {
    flex-direction: column-reverse;
    padding: 53px 10px;
    justify-content: space-around;
  }
}
.product-details .product-info {
  width: 46.1%;
  padding: 10px 0px;
  display: flex;
  gap: 12px;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .product-details .product-info {
    width: 100%;
    padding: 25px 13px;
  }
}
.product-details .product-info .product-info__info {
  font-size: 18px;
  color: var(--color-primary, #cb9274);
}
@media (max-width: 768px) {
  .product-details .product-info .product-info__info {
    font-size: 12px;
  }
}
.product-details .product-info .product-info__name {
  font-size: 45px;
  font-weight: 600;
  padding-top: 18px;
  font-family: "Jost";
  line-height: 1;
}
.product-details .product-info .product-info__description {
  margin-top: 18px;
  line-height: 24px;
  max-width: 580px;
}

@media (max-width: 768px) {
  .product-details .product-info .product-info__name {
    font-size: 25px;
    padding-top: 13px;
  }
  .product-details .product-info .product-info__description p {
    font-size: 14px;
  }
  .product-attributes {
    padding: 10px 0px 0px;
  }
}
.product-details .product-info p {
  font-size: 18px;
}

.product-details .product-info .price {
  font-size: 25px;
  color: var(--color-primary, #cb9274);
  margin-top: -15px;
  margin-bottom: 0px;
}
@media (max-width: 768px) {
  .product-details .product-info .price {
    margin-top: 6px;
  }
}

.product-details .product-info .price .fake-price {
  font-size: 18px;
  color: #b9b9b9;
  text-decoration: line-through;
}
.product-details .product-info .size-color-div {
  width: 70%;
  display: flex;
  justify-content: space-between;
}
.product-details .product-info .size-color-div div p {
  font-size: 14px;
}
.product-details .product-info .size-color-div div img {
  width: 30px;
  margin: 15px 0px;
}
.product-details .product-info .size-color-div .size img {
  background-color: white;
  border-radius: 50%;
}
.product-details .product-info .size-color-div .size img.clicked {
  filter: invert(1);
}
.product-details .product-images {
  height: 487px;
  width: 49%;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  gap: 7px;
}
@media (max-width: 768px) {
  .product-details .product-images {
    width: 100%;
    height: auto;
    overflow-x: scroll;
    padding: 0px 11px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
.product-details .product-images div {
  width: 50%;
}
.product-details .product-images > :first-child {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 768px) {
  .product-details .product-images > :first-child {
    gap: 9px;
    height: 381px;
    flex-direction: row;
  }
}
.product-details .product-images > :first-child img {
  width: 100%;
  height: 32%;
  border-radius: 10px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .product-details .product-images > :first-child img {
    min-width: 303px;
    height: 100%;
  }
}
.product-details .product-images > :last-child {
  flex: 2.2;
  border-radius: 10px;
  overflow: hidden;
}
.product-details .product-images > :last-child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .product-details .product-images > :last-child {
    display: none;
  }
}
.product-details .color {
  width: 20%;
}
.product-details .color-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-details .color-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: -30px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
@media (max-width: 768px) {
  .product-details .color-circle {
    width: 24px;
    height: 24px;
  }
}
.product-details .color-circle.color-black {
  background-color: black;
}
.product-details .color-circle.color-gray {
  background-color: #808080;
}
.product-details .color-circle.color-purple {
  background-color: #4a235a;
}
.product-details .color-circle:hover {
  border-color: var(--color-primary, #cb9274);
  z-index: 2;
}
.product-details .color-circle:hover::after {
  background: var(--color-primary, #cb9274);
}
.product-details .color-circle:hover .color-tooltip {
  opacity: 1;
  visibility: visible;
}
.product-details .color-tooltip {
  position: absolute;
  background: black;
  color: white;
  padding: 2px 15px;
  border-radius: 3px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  top: -30px;
  left: -30%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.product-details .connector-dot {
  width: 12px;
  height: 12px;
  background: var(--color-primary, #cb9274);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  z-index: 3;
}
.product-details .quantity div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 18%;
  margin: 10px 0px;
}
.product-details .quantity div p {
  font-size: 14px;
}
.product-details .quantity div img {
  width: 30px;
}
.product-details .buttons-div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .product-details .buttons-div {
    margin-top: 31px;
  }
}
.product-details .buttons-div button {
  width: 310px;
  height: 60px;
  font-size: 18px;
  border: transparent;
  border-radius: 5px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .product-details .buttons-div button {
    width: 170px;
    height: 39px;
    font-size: 16px;
  }
}
.product-details .buttons-div .add-cart {
  background-color: var(--color-primary, #cb9274);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.product-details .buttons-div .add-cart span {
  color: #ffffff;
}
.product-details .buttons-div .add-cart::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #cf7342;
  transition: width 0.8s ease;
  z-index: 1;
}
.product-details .buttons-div .add-cart span {
  position: relative;
  z-index: 2;
}
.product-details .buttons-div .add-cart:hover::before {
  width: 100%;
}
@media (max-width: 768px) {
  .product-details .buttons-div .add-cart {
    color: white;
  }
}
.product-details .buttons-div .buy-now {
  background-color: #000;
  color: white;
}

.latest-articles {
  height: 1360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px !important;
  margin-bottom: -14px !important;
}
@media (max-width: 768px) {
  .latest-articles {
    height: auto;
    margin-top: 15px !important;
  }
}
.latest-articles span.info {
  font-size: 18px;
  color: var(--color-primary, #cb9274);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .latest-articles span.info {
    font-size: 14px;
  }
}
.latest-articles h2 {
  width: 521px;
  font-size: 32px;
  text-align: center;
  margin-top: 9px;
}
.latest-articles article {
  width: 100%;
}
@media (max-width: 768px) {
  .latest-articles h2 {
    font-size: 24px;
    width: 307px;
    margin-top: 4px;
  }
  .latest-articles article {
    margin-top: 20px !important;
  }
}

.latest-articles article .frame {
  width: 100%;
  display: flex;
  justify-content: space-around;
  height: 36%;
  padding-top: 30px;
}
@media (max-width: 768px) {
  .latest-articles article .frame {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  .latest-articles article .frame:last-of-type {
    flex-direction: column-reverse;
    margin-top: 34px;
  }
  .latest-articles article .frame .right-side .card .article-img-div {
    margin-top: 15px;
  }
}
.latest-articles article .frame .left-side {
  width: 689px;
  height: 569px;
  position: relative;
}
@media (max-width: 768px) {
  .latest-articles article .frame .left-side {
    width: 90%;
    height: 267px;
  }
}
.latest-articles article .frame .left-side img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  filter: brightness(65%);
}
.latest-articles article .frame .left-side div {
  position: absolute;
  width: 100%;
  height: 50%;
  top: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.latest-articles article .frame .left-side div p:nth-child(1) {
  font-size: 14px;
  color: white;
  font-weight: 600;
}

.latest-articles article .frame .left-side div h4 {
  font-size: 14px;
  color: white;
  font-weight: 600;
  margin-bottom: 54px;
  margin-top: -38px;
}

@media (max-width: 768px) {
  .latest-articles article .frame .left-side div p:nth-child(1) {
    font-size: 11px;
    text-align: center;
    margin-bottom: 9px;
    text-transform: uppercase;
  }
}
.latest-articles article .frame .left-side div h3 {
  font-size: 38px;
  color: white;
  width: 517px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 54px;
}

@media (max-width: 768px) {
  .product-details {
    padding-bottom: 0;
  }
  .product-details .product-info {
    height: auto;
  }
  .latest-articles article .frame .left-side div h4 {
    display: none;
  }
  .latest-articles article .frame .left-side div h3 {
    font-size: 24px;
    max-width: 300px;
    margin-bottom: 25px;
  }
  .latest-articles article .frame .left-side div h3 br {
    display: none;
  }
}
.latest-articles article .frame .left-side div button {
  background-color: white;
  padding: 20px 34px;
  border-radius: 4px;
  font-size: 18px;
  border: none;
}
@media (max-width: 768px) {
  .latest-articles article .frame .left-side div button {
    padding: 0;
    min-width: 112px;
    min-height: 32px;
    font-size: 12px;
    margin: 20px;
  }
}
.latest-articles article .frame .left-side div button:hover {
  background-color: rgba(0, 0, 0, 0.389);
  transition-duration: 0.6s;
  border: black 1px solid;
  color: white;
}
.latest-articles article .frame .right-side {
  display: flex;
  justify-content: space-between;
  width: 697px;
}
@media (max-width: 768px) {
  .latest-articles article .frame .right-side {
    justify-content: center;
    padding: 15px 0;
  }
  .latest-articles article .frame .right-side:last-of-type {
    display: none;
  }
}
.latest-articles article .frame .right-side .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  height: 570px;
  padding: 4px;
  padding-top: 0;
}
@media (max-width: 768px) {
  .latest-articles article .frame .right-side .card:last-of-type {
    display: none;
  }
}
.latest-articles article .frame .right-side .card:hover .main-img {
  transform: scale(1.29);
  filter: brightness(0.7);
}
.latest-articles article .frame .right-side .card:hover .article-img-div button.add-cart {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}
.latest-articles article .frame .right-side .card:hover .article-img-div .wishlist-button-add,
.latest-articles article .frame .right-side .card:hover .article-img-div .search img {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.latest-articles article .frame .right-side .card .article-img-div {
  width: 100%;
  height: 86%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 0px;
}
.latest-articles article .frame .right-side .card .article-img-div .main-img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition-duration: 0.6s;
}
.latest-articles article .frame .right-side .card .article-img-div .wishlist-button-add,
.latest-articles article .frame .right-side .card .article-img-div .search {
  position: absolute;
  width: 42px;
  height: 42px;
  right: 5%;
}
.latest-articles article .frame .right-side .card .article-img-div .wishlist-button-add {
  transform: translateY(-10px) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.latest-articles article .frame .right-side .card .article-img-div .search img {
  width: 100%;
  opacity: 0;
  transform: translateY(-10px) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.latest-articles article .frame .right-side .card .article-img-div .wishlist-button-add {
  top: 4%;
}
.latest-articles article .frame .right-side .card .article-img-div .search {
  top: 14%;
}
.latest-articles article .frame .right-side .card .article-img-div button.add-cart {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translate(-50%, 10px) scale(0.9);
  width: 263px;
  padding: 13px 20px;
  border-radius: 14px;
  border: none;
  background-color: rgba(255, 255, 255, 0.8980392157);
  opacity: 0;
  transition: all 0.3s ease;
  transition-duration: 0.6s;
  cursor: pointer;
}
.latest-articles article .frame .right-side .card .article-img-div button.add-cart:hover {
  background-color: rgba(0, 0, 0, 0.389);
  transition-duration: 0.6s;
  border: black 1px solid;
  color: white;
}
.latest-articles article .frame .right-side .card div {
  display: flex;
  flex-direction: column;
}
.latest-articles article .frame .right-side .card div p {
  display: flex;
  justify-content: space-between;
}
.latest-articles article .frame .right-side .card div p .price {
  color: var(--color-primary, #cb9274);
}
.latest-articles article .frame .right-side .card div .dots {
  display: flex;
  flex-direction: row;
  gap: 6px;
  margin-top: -3px;
}
.latest-articles article .frame .right-side .card div .dots .color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
  margin: 2px;
}
.latest-articles article .frame .right-side .card div .dots .color-dot:hover {
  border-color: var(--color-primary, #cb9274);
  transform: scale(1.1);
}
.latest-articles article .frame .right-side .card div .dots .color-dot.gray {
  background-color: #808080;
}
.latest-articles article .frame .right-side .card div .dots .color-dot.nude {
  background-color: #e6beae;
}
.latest-articles article .frame .right-side .card div .dots .color-dot.purple {
  background-color: #4b0082;
}
.latest-articles article .frame .right-side .card div .dots .color-dot.lime {
  background-color: #bfff00;
}
.latest-articles article .frame .right-side .card div .dots .color-dot.black {
  background-color: #000000;
}
.latest-articles article .frame .right-side .card div .dots .color-dot.selected {
  border-color: #000;
}
/* 
.spotlight {
    margin: 150px 0;
    width: 100%;
    display: flex;
    position: relative;
}
.spotlight .left,
.spotlight .right {
    width: 50%;
    height: 686px;
    position: relative;
}
.spotlight .left img,
.spotlight .right img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    filter: brightness(75%);
}
.spotlight .left span,
.spotlight .left .box,
.spotlight .right span,
.spotlight .right .box {
    position: absolute;
    left: 55%;
    top: 21%;
    display: flex;
    align-items: center;
}
.spotlight .left span .icon,
.spotlight .left .box .icon,
.spotlight .right span .icon,
.spotlight .right .box .icon {
    width: 34px;
    height: 34px;
    filter: brightness(1);
    border-radius: 3px;
    transition: filter 0.3s ease;
}
.spotlight .left span .icon:hover,
.spotlight .left .box .icon:hover,
.spotlight .right span .icon:hover,
.spotlight .right .box .icon:hover {
    filter: brightness(0.6);
}
.spotlight .left span .details,
.spotlight .left .box .details,
.spotlight .right span .details,
.spotlight .right .box .details {
    opacity: 0;
    background-color: white;
    width: 289px;
    height: 70px;
    margin-bottom: 105px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6px;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}
.spotlight .left span .details article,
.spotlight .left .box .details article,
.spotlight .right span .details article,
.spotlight .right .box .details article {
    width: 60px;
    height: 60px;
}
.spotlight .left span .details article img,
.spotlight .left .box .details article img,
.spotlight .right span .details article img,
.spotlight .right .box .details article img {
    width: 100%;
    height: 100%;
    filter: brightness(1);
}
.spotlight .left span .details section h3,
.spotlight .left .box .details section h3,
.spotlight .right span .details section h3,
.spotlight .right .box .details section h3 {
    font-size: 14px;
}
.spotlight .left span .details section h6,
.spotlight .left .box .details section h6,
.spotlight .right span .details section h6,
.spotlight .right .box .details section h6 {
    font-size: 10px;
    color: #5b5859;
}
.spotlight .left span .details section p,
.spotlight .left .box .details section p,
.spotlight .right span .details section p,
.spotlight .right .box .details section p {
    font-size: 14px;
    color: var(--color-primary, #cb9274);
}
.spotlight .left span .details section p fake,
.spotlight .left .box .details section p fake,
.spotlight .right span .details section p fake,
.spotlight .right .box .details section p fake {
    font-size: 10px;
    color: #5b5859;
    text-decoration: line-through;
    margin-right: 5px;
}
.spotlight .left span .details aside,
.spotlight .left .box .details aside,
.spotlight .right span .details aside,
.spotlight .right .box .details aside {
    width: 22px;
    height: 22px;
    background-color: var(--color-primary, #cb9274);
    border-radius: 2px;
    color: white;
    text-align: center;
    line-height: 22px;
}
.spotlight .left span .icon:hover + .details,
.spotlight .left .box .icon:hover + .details,
.spotlight .right span .icon:hover + .details,
.spotlight .right .box .icon:hover + .details {
    opacity: 1 !important;
}
@media (max-width: 768px) {
    .spotlight .left {
        display: none;
    }
}
@media (max-width: 768px) {
    .spotlight .right {
        width: 100%;
        height: 470px;
        overflow: hidden;
    }
    .spotlight .right > img {
        transform: scale(1.5);
    }
}
.spotlight .right .box {
    left: 40%;
    top: 41%;
}
.spotlight .right .box .details {
    margin-bottom: -105px;
}
@media (max-width: 768px) {
    .spotlight .right .box {
        top: 25%;
        left: 9%;
    }
}
.spotlight #dot-1 {
    left: 55%;
    top: 21%;
}
.spotlight #dot-2 {
    left: 27%;
    top: 40%;
}
.spotlight #dot-2 .details {
    margin-bottom: -100px;
    margin-left: 5px;
}
.spotlight #dot-3 {
    top: 70%;
    left: 40%;
}
.spotlight #dot-3 .details {
    margin-top: 100px;
    margin-left: 5px;
}
.spotlight #box-2 {
    left: 73%;
    top: 80%;
}
.spotlight #box-2 .details {
    margin-top: -100px;
    margin-left: -335px;
}
@media (max-width: 768px) {
    .spotlight #box-2 .details {
        margin-top: -220px;
        margin-left: -290px;
    }
}
 */
.collection-more {
  padding: 121px 0px 82px 0px;
  /* max-height: 1000px; */
}
@media (max-width: 768px) {
  .collection-more {
    padding: 56px 10px 0;
  }
}
.collection-more .container {
  padding: 10px 100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}
@media (max-width: 768px) {
  .collection-more .container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 0px;
    margin: 0;
  }
}
.collection-more .left {
  flex: 1;
  /* height: 788px; */
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media (max-width: 768px) {
  .collection-more .left {
    padding: 46px 0px;
    width: 100%;
  }
}
.collection-more .left h2 {
  font-family: "Jost";
  font-size: 79px;
  line-height: 5rem;
  margin-bottom: 57px;
  margin-top: -2px;
  letter-spacing: -0.6px;
}
@media (max-width: 768px) {
  .collection-more .left h2 {
    font-size: 32px;
    line-height: 37px;
    margin-bottom: 37px;
  }
}
.collection-more .left h2 span {
  color: var(--color-primary, #cb9274);
  display: inline;
}
.collection-more .right {
  flex: 1.15 !important;
  padding: 0px 50px 0px 0px;
  display: flex;
  justify-content: end;
  height: 788px;
}
@media (max-width: 768px) {
  .collection-more .right {
    padding: 0px;
    width: 100%;
    justify-content: center;
  }
}
.collection-more .right img {
  width: 90%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .collection-more .right img {
    width: 370px;
    height: 290px;
    border-radius: 10px;
  }
}
.collection-more .accordion .accordion-item {
  border-bottom: 2px solid black;
}
.collection-more .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.collection-more .accordion .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0px;
  cursor: pointer;
  position: relative;
}
.collection-more .accordion .accordion-header h3 {
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .collection-more .accordion .accordion-header h3 {
    font-size: 18px;
  }
  .collection-more .accordion .accordion-header {
    padding: 24px 0px;
  }
}
.collection-more .accordion .accordion-header .toggle {
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  color: #000;
  font-size: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  outline: none;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.collection-more .accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease;
  padding: 0px 30px;
}
.collection-more .accordion .accordion-content p {
  color: rgba(37, 35, 36, 0.8);
  line-height: 1.6;
  padding-bottom: 20px;
  font-size: 19px;
  max-width: 493px;
}
@media (max-width: 768px) {
  .collection-more .accordion .accordion-content p {
    font-size: 14px;
  }
  .collection-more .accordion .accordion-content {
    padding: 0px 10px;
  }
}
/* Default state (closed) */
.collection-more .accordion .accordion-item .toggle.plus {
  opacity: 1;
  transform: translateY(-50%) rotate(0deg);
}

.collection-more .accordion .accordion-item .toggle.miness {
  opacity: 0;
  transform: translateY(-50%) rotate(-90deg); /* Pre-rotate minus for smooth entry */
}

/* Active state (open) */
.collection-more .accordion .accordion-item.active .toggle.plus {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg); /* Rotate plus icon clockwise when hiding */
}

.collection-more .accordion .accordion-item.active .toggle.miness {
  opacity: 1;
  transform: translateY(-50%) rotate(0deg); /* Reset minus to normal when showing */
}

.collection-more .accordion .accordion-item .toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.6s ease all;
}

.collection-more .accordion .accordion-item.active .accordion-content {
  max-height: 1000px;
}

.before-after {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  padding: 42px 0px 22px 0px;
}
.before-after span.info {
  font-size: 18px;
  color: var(--color-primary, #cb9274);
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .before-after {
    height: 600px;
    padding: 12px 0px;
  }
  .before-after span.info {
    font-size: 14px;
    margin-bottom: 0;
  }
}

.before-after h2 {
  font-size: 32px;
  color: #252324;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.before-after .comparison-slider {
  position: relative;
  width: 100%;
  height: 860px;
  margin: 60px 0px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .before-after .comparison-slider {
    min-height: 470px;
    margin-top: 35px;
  }
  .before-after h2 {
    font-size: 24px;
    letter-spacing: 0px;
    margin-bottom: 20px;
  }
}
.before-after .comparison-slider .image-container {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.before-after .comparison-slider .image-container.left {
  left: 0;
  z-index: 1;
}
.before-after .comparison-slider .image-container.right {
  right: 0;
  z-index: 2;
  -webkit-clip-path: inset(0 0 0 50%);
  clip-path: inset(0 0 0 50%);
}
.before-after .comparison-slider .image-container img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  left: 0;
}
.before-after .comparison-slider .image-container .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
  width: 100%;
  padding: 65px 0px 0px 0px;
}
.before-after .comparison-slider .image-container .content h3 {
  color: #000;
  font-size: 54px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .before-after .comparison-slider .image-container .content h3 {
    font-size: 24px;
  }
}
.before-after .comparison-slider .image-container .content .button {
  display: inline-block;
  padding: 12px 24px;
  background: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.before-after .comparison-slider .image-container .content .button:hover {
  transform: translateY(-2px);
}
.before-after .comparison-slider .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 100%;
  background: #fff;
  transform: translateX(-50%);
  z-index: 10;
  cursor: col-resize;
}
.before-after .comparison-slider .slider-handle::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.before-after .comparison-slider .slider-handle .arrow-left,
.before-after .comparison-slider .slider-handle .arrow-right {
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border: 8px solid transparent;
}
.before-after .comparison-slider .slider-handle .arrow-left {
  left: -30px;
  transform: translateY(-125%);
  font-size: 35px;
}
.before-after .comparison-slider .slider-handle .arrow-right {
  right: -10px;
  transform: translateY(-125%);
  font-size: 35px;
}
@media (max-width: 768px) {
  .before-after .comparison-slider .image-container .content .button {
    width: 156px;
    height: 42px;
    font-size: 12px;
  }
  .before-after .comparison-slider .slider-handle::before {
    width: 42px;
    height: 42px;
    top: 50.5%;
  }
  .before-after .comparison-slider .slider-handle .arrow-left {
    left: -20px;
    transform: translateY(-100%);
    font-size: 23px;
  }
  .before-after .comparison-slider .slider-handle .arrow-right {
    right: -7px;
    transform: translateY(-100%);
    font-size: 23px;
  }
}
.promo-container-3 {
  position: relative;
  height: 268px;
}

.promo-container-3 img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  filter: brightness(0.6);
  z-index: 0;
}
.promo-container-3 .promo-content {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 70px;
}
@media (max-width: 768px) {
  .promo-container-3 .promo-content {
    flex-direction: column;
    padding: 20px;
    height: 250px;
  }
}
@media (max-width: 768px) {
  .promo-container-3 .promo-content span {
    width: 233px;
    height: 83px;
  }
}
.promo-container-3 .promo-content span h1 {
  width: 660px;
  font-size: 44px;
  color: white;
  font-family: "Jost";
}
@media (max-width: 768px) {
  .promo-container-3 .promo-content span h1 {
    text-align: center;
    width: 245px;
    font-size: 24px;
    font-weight: 500;
  }
}
.promo-container-3 .promo-content span H3 {
  font-size: 18px;
  color: white;
}
@media (max-width: 768px) {
  .promo-container-3 .promo-content span H3 {
    width: 335px;
    font-size: 14px;
    font-weight: 400;
  }
}
.promo-container-3 .promo-content div button {
  background-color: transparent;
  width: 187px;
  height: 57px;
  border: none;
  border-radius: 4px;
  background-color: white;
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 768px) {
  .promo-container-3 .promo-content div button {
    width: 152px;
    height: 32px;
    font-size: 12px;
    border-radius: 2px;
    font-weight: 400;
  }
}
.promo-container-3 .promo-content div button:hover {
  background-color: transparent;
  color: white;
  transition-duration: 0.6s;
  border: white solid 3px;
}
.promo-container-3 .promo-content div button:last-child {
  width: 149px;
  background-color: var(--color-primary, #cb9274);
  color: white;
}
.promo-container-3 .promo-content div button:last-child:hover {
  background-color: transparent;
  color: var(--color-primary, #cb9274);
  transition-duration: 0.6s;
  border: var(--color-primary, #cb9274) solid 3px;
}

.accessories {
  margin: 0 auto;
  padding: 60px 20px;
}
@media (max-width: 768px) {
  .accessories {
    height: 555px;
  }
}
.accessories > h1 {
  font-family: "Jost";
  font-size: 34px;
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .accessories > h1 {
    font-size: 24px;
  }
}
.accessories .subtitle {
  font-family: "Jost";
  text-align: center;
  color: rgba(37, 35, 36, 0.8);
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .accessories .subtitle {
    font-size: 12px;
  }
}
.accessories .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 710px;
  gap: 5px;
}
@media (max-width: 768px) {
  .accessories .container {
    height: 325px;
  }
}
.accessories .container .left {
  flex: 1;
  height: 690px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .accessories .container .left {
    height: 325px;
  }
}
.accessories .container .left img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  transition-duration: 0.6s;
  z-index: 1;
}
.accessories .container .left h1 {
  font-family: "Jost";
  color: white;
  transition-duration: 0.6s;
  font-size: 34px;
  z-index: 2;
  margin-bottom: -20px;
}
.accessories .container .left p {
  font-family: "Jost";
  margin-bottom: -5px;
  color: white;
  opacity: 0;
  transition-duration: 0.6s;
  font-size: 24px;
  z-index: 2;
}
.accessories .container .left:hover img {
  filter: brightness(0.7);
  transform: scale(1.2);
}
.accessories .container .left:hover h1 {
  transform: translateY(-20px);
}
.accessories .container .left:hover p {
  opacity: 1;
  transform: translateY(-5px);
}
.accessories .container .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 690px;
  gap: 5px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .accessories .container .right {
    display: none;
  }
}
.accessories .container .right .top {
  flex: 1;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.accessories .container .right .top img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  transition-duration: 0.6s;
  z-index: 1;
}
.accessories .container .right .top h1 {
  font-family: "Jost";
  color: white;
  transition-duration: 0.6s;
  font-size: 34px;
  z-index: 2;
  margin-bottom: -20px;
}
.accessories .container .right .top p {
  font-family: "Jost";
  color: white;
  opacity: 0;
  transition-duration: 0.6s;
  margin-bottom: -5px;
  font-size: 24px;
  z-index: 2;
}
.accessories .container .right .top:hover img {
  filter: brightness(0.7);
  transform: scale(1.2);
}
.accessories .container .right .top:hover h1 {
  transform: translateY(-20px);
}
.accessories .container .right .top:hover p {
  opacity: 1;
  transform: translateY(-5px);
}
.accessories .container .right .bottom {
  flex: 1;
  display: flex;
  height: 50%;
  gap: 5px;
  overflow: hidden;
}
.accessories .container .right .bottom div {
  width: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.accessories .container .right .bottom div img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  transition-duration: 0.6s;
  z-index: 1;
}
.accessories .container .right .bottom div h1 {
  font-family: "Jost";
  color: white;
  transition-duration: 0.6s;
  margin-bottom: -20px;
  font-size: 34px;
  z-index: 2;
}
.accessories .container .right .bottom div p {
  font-family: "Jost";
  color: white;
  opacity: 0;
  transition-duration: 0.6s;
  margin-bottom: -5px;
  font-size: 24px;
  z-index: 2;
}
.accessories .container .right .bottom div:hover img {
  filter: brightness(0.7);
  transform: scale(1.2);
}
.accessories .container .right .bottom div:hover h1 {
  transform: translateY(-20px);
}
.accessories .container .right .bottom div:hover p {
  transform: translateY(-5px);
  opacity: 1;
}

.faq {
  position: relative;
  padding: 60px 20px;
  margin: 0 auto;
  background-color: #f5f4f2;
  overflow: hidden; /* Important to clip the pseudo-element */
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1000px;
  background-image: url(../images/Vector\ 1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.faq > * {
  position: relative;
  z-index: 1; /* Ensure your content is above the background */
}
@media (max-width: 768px) {
  .faq {
    overflow: hidden;
  }
}
.faq h2 {
  font-size: 54px;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .faq h1 {
    font-size: 34px;
  }
}
.faq .subtitle {
  text-align: center;
  color: #666;
  max-width: 662px;
  margin: 0 auto 60px;
  line-height: 1.6;
  margin-bottom: 69px;
}
.faq .faq-item .faq-question .arrow img {
  height: 16px;
  width: 16px;
}
@media (max-width: 768px) {
  .faq .subtitle {
    font-size: 15px;
    margin-bottom: 84px;
  }
}
.faq .faq-container {
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .faq .faq-container {
    /* height: 504px; */
  }
  .faq .faq-container > :nth-last-child(1),
  .faq .faq-container > :nth-last-child(2) {
    display: none;
  }
}
.faq .faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.faq .faq-item .faq-question {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq .faq-item .faq-question h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 500;
}
@media (max-width: 768px) {
  .faq .faq-item .faq-question h3 {
    font-size: 16px;
  }
}
.faq .faq-item .faq-question .arrow {
  font-size: 24px;
  transition: transform 0.3s ease;
}
.faq .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.faq .faq-item .faq-answer p {
  padding: 0 24px 24px;
  margin: 0;
  line-height: 1.6;
  color: #666;
}
@media (max-width: 768px) {
  .faq .faq-item .faq-answer p {
    font-size: 12px;
  }
}
.faq .faq-item.active .arrow {
  transform: rotate(90deg);
}
.faq .faq-item.active .faq-answer {
  max-height: 200px;
}

.desktop-content {
  padding: 30px 15%;
  margin: 200px 0px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .desktop-content {
    flex-direction: column;
    align-items: center;
    padding: 3px;
    margin: 80px 0px;
  }
}
.desktop-content .timeline {
  width: 130px;
  height: 774px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 768px) {
  .desktop-content .timeline {
    height: auto;
    width: 100%;
  }
}
.desktop-content .timeline .navigation-arrow button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #f5f4f2;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.desktop-content .timeline .navigation-arrow button:hover {
  transform: scale(1.1);
}
.desktop-content .timeline .navigation-arrow-mobile {
  display: none;
  justify-content: end;
  width: 100%;
  gap: 10px;
}

@media (max-width: 768px) {
  .desktop-content .timeline .navigation-arrow:not(.navigation-arrow-mobile) {
    display: none;
  }
  .desktop-content .timeline .navigation-arrow-mobile {
    display: flex;
  }
  .desktop-content .timeline .navigation-arrow button {
    width: 50px;
    height: 50px;
    outline: none;
  }
  .desktop-content .timeline {
    gap: 30px;
  }
}
.desktop-content .timeline .content-wrapper {
  height: 60%;
}
.desktop-content .timeline .content-wrapper .years-nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .desktop-content .timeline .content-wrapper .years-nav {
    flex-direction: row;
    height: 14px;
    width: 100%;
  }
}
.desktop-content .timeline .content-wrapper .years-nav .year {
  font-size: 44px;
  font-family: "Jost";
  color: #424041;
  transition: color 0.3s ease, font-size 0.3s ease;
}
@media (max-width: 768px) {
  .desktop-content .timeline .content-wrapper .years-nav .year {
    font-size: 20px;
  }
}
.desktop-content .timeline .content-wrapper .years-nav .year.active,
.desktop-content .timeline .content-wrapper .years-nav .year:hover {
  font-size: 54px;
  color: black;
  cursor: pointer;
  user-select: none;
}
@media (max-width: 768px) {
  .desktop-content .timeline .content-wrapper .years-nav .year.active,
  .desktop-content .timeline .content-wrapper .years-nav .year:hover {
    font-size: 22px;
    font-weight: 500;
  }
}
.desktop-content .images-content {
  width: 910px;
  display: flex;
  justify-content: space-between;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
@media (max-width: 768px) {
  .desktop-content .images-content {
    width: 100%;
  }
  .year-content {
    justify-content: center;
    width: 100%;
  }
  .desktop-content .images-content .left {
    width: 100%;
    padding: 0;
  }
}
.desktop-content .images-content.fade-out {
  opacity: 0;
  transform: translateY(20px);
}
.desktop-content .images-content.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.desktop-content .images-content .left {
  width: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .desktop-content .images-content .left {
    width: 100%;
    padding: 10px 0px;
  }
}
.desktop-content .images-content .left h2 {
  font-family: Jost;
  font-size: 40px;
  font-weight: 600;
  line-height: 50px;
  text-align: left;
}
@media (max-width: 768px) {
  .desktop-content .images-content .left h2 {
    font-size: 30px;
  }
}
.desktop-content .images-content .left p {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #737373;
}
.desktop-content .images-content .left div {
  width: 100%;
  height: 540px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.desktop-content .images-content .left div h3 {
  position: absolute;
  top: 40%;
  left: 27%;
  color: white;
  font-size: 70px;
}
.desktop-content .images-content .left div h6 {
  position: absolute;
  top: 52%;
  left: 35.5%;
  color: white;
  font-size: 22px;
}
.desktop-content .images-content .left div img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  -o-object-fit: cover;
  object-fit: cover;
  filter: brightness(0.7);
  transition: transform 0.3s ease-in-out;
}
.desktop-content .images-content .left div img:hover {
  transform: scale(1.05);
}
.desktop-content .images-content .right {
  width: 440px;
  overflow: hidden;
  border-radius: 6px;
}
@media (max-width: 1200px) {
  .desktop-content .images-content .right {
    display: none;
  }
  .desktop-content .images-content {
    justify-content: center;
  }
}
.desktop-content .images-content .right img {
  width: 100%;
  height: 70%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease-in-out;
}
.desktop-content .images-content .right p {
  font-family: DM Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #737373;
}

.gallery-section {
  height: 521px;
  padding: 100px 10px 80px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .gallery-section {
    padding: 10px 10px;
    margin-bottom: 40px;
    justify-content: center;
  }
}
.gallery-section span.info {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: var(--color-primary, #cb9274);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .gallery-section span.info {
    font-size: 12px;
  }
}
.gallery-section h2 {
  font-family: Jost;
  font-size: 44px;
  font-weight: 500;
  line-height: 62px;
  letter-spacing: -0.02em;
  text-align: center;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
@media (max-width: 768px) {
  .gallery-section h2 {
    font-size: 24px;
    line-height: normal;
  }
}
.gallery-section p {
  font-family: DM Sans;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: rgba(37, 35, 36, 0.8);
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .gallery-section p {
    font-size: 12px;
  }
}
.gallery-section div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 200px;
  width: 100%;
  gap: 6px;
  padding: 0px 13px;
}
@media (max-width: 768px) {
  .gallery-section div {
    overflow-y: auto;
    width: 120%;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
.gallery-section div img {
  height: 100%;
  flex: 1;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .gallery-section div img {
    min-width: 227px;
  }
}
.gallery-section div aside {
  position: relative;
  display: flex;
  flex: 2;
  height: 100%;
}
.gallery-section div aside .bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  filter: brightness(0.7);
  position: absolute;
  z-index: 1;
}
.gallery-section div aside .cadenza {
  position: absolute;
  align-self: center;
  left: 32%;
  width: 156px;
  height: 40px;
  z-index: 2;
} /*# sourceMappingURL=main.css.map */

.collection-dropdown img {
  filter: invert(0) !important;
}
.search-input-container form {
  width: 100%;
}

#promo-text {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
}

.navbar::after {
  display: none;
}

#wrapper {
  background-color: #fff;
}
.w-50 {
  width: 50%;
}
.d-ib {
  display: inline-block;
}
.fl-r {
  float: right;
}
.fl-l {
  float: left;
}

.custom-radio input[type="radio"]:checked + span {
  background-color: #000;
}

.btn_password_hide_show .show {
  display: block;
}
.btn_password_hide_show .hide {
  display: none;
}
.btn_password_hide_show.show .show {
  display: none;
}
.btn_password_hide_show.show .hide {
  display: block;
}
.form-control {
  background-color: #fff;
}
.js-visible-password {
  border-right: none;
}
.btn_password_hide_show button {
  background-color: #fff;
}
.btn_password_hide_show {
  background-color: #fff;
  border-left: none;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.btn_password_hide_show button:focus,
.btn_password_hide_show button:active {
  outline: none;
  border: none;
}
.optional_label {
  font-weight: 300;
  color: #7e7e7e;
}
.div-checkbox {
  margin-bottom: 0;
  label {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.form-footer button {
  width: 100%;
  background-color: #252324 !important;
  border-radius: 4px;
  transition: background-color 0.5s;
  &:hover,
  &:active,
  &:focus {
    background-color: #252324e0 !important;
  }
}

h1.step-title {
  padding: 20px !important;
  transition: background-color 0.5s;
  border: 1px solid transparent;
  position: relative;
}
body#checkout section.checkout-step .step-title {
  text-transform: capitalize;
}
h1.step-title__active {
  border-color: #ddd;
  background-color: #f5f4f2;
}
.title-arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-75%) rotate(225deg);
  content: "";
  border-left: 2px solid #000;
  border-top: 2px solid #000;
  width: 10px;
  height: 10px;
  transition: transform 0.5s;
}
.title-arrow-invers {
  transform: translateY(-25%) rotate(45deg) !important;
}
body#checkout section.checkout-step {
  padding-top: 0;
  padding-bottom: 0;
}

.form-control:focus {
  color: #232323;
  outline: 0.1875rem solid #2523242b;
}

.cart-header {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  padding: 10px;
  width: 100%;

  font-size: 26px;

  span {
    color: #6e6e6e;
    font-size: small;
    padding-left: 8px;
  }
}
.cart-div {
  padding-top: 60px !important;
}
.fa-solid {
  float: right;
  cursor: pointer;
}

.block-promo .promo-code {
  padding: 0 !important;
}
.promo-code-form {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
  gap: 10px;
}
.block-promo .promo-input {
  width: 100%;

  padding: 10px;
  gap: 10px;
  border-radius: 2px 0px 0px 0px;
  border: 0.5px solid #ddd;
}
.block-promo .promo-input + button {
  margin-top: 0;
  margin-left: 0;
  text-transform: capitalize;
  border: none;

  padding: 10px 34px 10px 34px;
  gap: 10px;
  border-radius: 2px 0px 0px 0px;
  background-color: var(--color-primary, #cb9274);
  &:hover {
    background-color: #ab6743;
  }
}
body#checkout #cart-summary-product-list img {
  width: 74px;
  height: 74px;
  border-radius: 4px;
}
.media-left {
  padding-right: 16px;
}
.product-name a {
  color: #000;
  font-family: Jost;
  font-size: 14px;
  font-weight: 500;

  letter-spacing: -0.02em;
  text-align: left;
}
.product-price {
  color: var(--color-primary, #cb9274);
}

.product-line-info {
  margin-bottom: 15px;
}
.promo-name {
  padding-left: 0;
  padding-right: 0;
}
.cart-grid-right {
  padding: 40px 15px 15px 73px;
  position: sticky;
  top: 80px;
}
.cart-grid-right,
body#checkout .cart-grid-right .card {
  background: var(--light_gray-100, #f5f4f2);
}

.promo-code-form {
  padding: 25px 0;
}

.cart-summary-totals {
  margin-top: 20px;
  .label {
    font-weight: bolder;
  }
}
.cart-div .filled-cart .cart-items .items-scroll span aside h1 a {
  &:last-child {
    margin-left: auto;
  }
  &:first-child {
    color: black;
    &:hover {
      text-decoration: underline;
    }
  }
}
.cart-div .js-cart-line-product-quantity {
  display: block;
  width: 3rem;
  text-align: center;
  border: none;
}

.btn-show-hide-filters {
  display: flex;
  justify-content: center;
  gap: 7px;
  align-items: center;
  color: #fff;
  background-color: #252324;
  padding: 10px;
  font-size: large;
  border-radius: 3px;
  transition: background-color 0.5s;
  cursor: pointer;
  border: none;
  &:hover {
    background-color: #000;
  }
}
.tabs {
  padding-top: 0;
  padding-bottom: 0;
}

.tabs .nav-tabs .nav-link.active,
.tabs .nav-tabs .nav-link:hover {
  border-bottom-color: #575757;
  color: #575757;
}
.tabs .nav-tabs {
  border-bottom-color: #eaecf0;
}
.product-additional-info {
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  > * {
    background-color: #f5f4f2;
    border-radius: 4px;
    padding: 7px;
    margin-right: 7px;
    &:first-child {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #fff0f0;
      color: #d46f77;
    }
  }
}

.add {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  > * {
    border-radius: 4px;
    color: #fff;
    width: 100%;
    font-size: 18px;
  }
  .add-to-cart {
    background-color: var(--color-primary, #cb9274);
  }
  .buy-it-now {
    background-color: #252324;
  }
}

.add-to-cart:hover {
  opacity: 0.8;
}

.product-actions .add-to-cart,
.product-actions .buy-it-now {
  height: auto;
  padding: 15px 30px;
  transition: all 0.3s ease;
}

.carousel {
  margin-left: 0 !important;
  left: 0 !important;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: white;
  /* transition: background-color 0.3s ease-in-out; */
}
.navbar #menu-links > li > a:not(.active) {
  color: black;
}
.navbar .logo {
  filter: invert(1) !important;
}
.navbar .icons-container a img {
  filter: invert(1) !important;
}
#index {
  header {
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
  }
  .navbar #menu-links > li > a:not(.active) {
    color: #fff !important;
  }
  .navbar #menu-links > li > a:hover,
  .navbar:hover #menu-links > li > a:hover {
    color: var(--color-primary, #cb9274) !important;
  }
  .navbar:hover #menu-links > li > a:not(.active),
  .navbar.scrolled #menu-links > li > a:not(.active) {
    color: #000 !important;
  }

  .navbar:hover #menu-links > li > a:hover,
  .navbar.scrolled #menu-links > li > a:hover {
    color: var(--color-primary, #cb9274) !important;
  }
  .navbar:hover {
    background-color: white;
  }
  .navbar .icons-container a img {
    filter: invert(0) !important;
  }
  .navbar:hover .icons-container a img,
  .navbar.scrolled .icons-container a img {
    filter: invert(1) !important;
  }
  .navbar .logo {
    filter: invert(0) !important;
  }
  .navbar .menu-icon {
    filter: invert(0) !important;
  }
  .navbar:hover .logo,
  .navbar.scrolled .logo {
    filter: invert(1) !important;
    transition-duration: 0.7s;
  }
  .navbar:hover .menu-icon {
    filter: invert(1) !important;
  }
}

.best-seller .products-div .product-card {
  display: block !important;
  width: 303px;
}

/* spotlight */

.spotlight {
  display: flex;
  max-height: 1100px;
  align-items: center;
  overflow: hidden;
}

.spotlight__item {
  width: 100%;
  height: fit-content;
  position: relative;
}

.spotlight__item__img {
  width: 100%;
  height: 100%;
  filter: brightness(75%);
  object-fit: cover;
}

.spotlight__item__info {
  position: absolute;
  z-index: 10;
}
@media (max-width: 600px) {
  .spotlight__item__info {
    scale: 0.7;
  }
}

@media (max-width: 375px) {
  .spotlight__item__info {
    scale: 0.6;
  }
}

.spotlight__item__info__container {
  position: absolute;
  display: flex;
  gap: 10px;
  background-color: #fff;
  border-radius: 4px;
  padding: 5px;
  opacity: 0;
  transition: 0.8s all ease-out;
  overflow: hidden;
  max-height: 0;
  max-width: 0;
}

.spotlight__item__info__container-top-left {
  transform: translate(10%, 45%);
}
.spotlight__item__info__container-top-right {
  transform: translate(-100%, 45%);
}
.spotlight__item__info__container-bottom-left {
  transform: translate(10%, -100%);
}
.spotlight__item__info__container-bottom-right {
  transform: translate(-100%, 100%);
}

.spotlight__item__info:hover .spotlight__item__info__container {
  opacity: 1;
  max-height: 1000px;
  max-width: 1000px;
  padding: 5px;
}

.spotlight__item__info__img {
  border-radius: 4px;
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-top: auto;
  margin-bottom: auto;
}

.spotlight__item__info__content {
  display: flex;
  gap: 28px;
}

.spotlight__item__info::before {
  cursor: pointer;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  background: radial-gradient(var(--color-primary-e5) 30%, #ffffffb2 30%);
  transition: 0.5s transform ease, 5s opacity ease;
}
.spotlight__item__info:hover::before {
  transform: scale(0.8);
  opacity: 0.5;
}
.spotlight__item__info__content__show-more {
  display: flex;
  align-items: end;
  justify-content: center;
  margin: 8px;
}

.spotlight__item__info__content__show-more div {
  background-color: var(--color-primary, #cb9274);
  padding: 9px 12px;
  border-radius: 2px;
  display: flex;
  justify-content: center;
}

.spotlight__item__info__content__name-price {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.spotlight__item__info_centent__price__new {
  font-size: 14px;
  color: var(--color-primary, #cb9274);
  font-family: DM Sans;
  font-weight: 500;
}
.spotlight__item__info_centent__price__old {
  font-size: 10px;
  color: #5b5859;
  text-decoration: line-through;
  margin-right: 5px;
}
.spotlight__item__info__content__name {
  div.name {
    font-size: 14px;
    margin: 0;
    text-wrap-mode: nowrap;
    font-family: Jost;
    font-weight: 500;
    color: #252324;
  }
  div {
    font-size: 10px;
    color: #5b5859;
    margin-top: -3px;
  }
}
/* spotlight */

.promo-container * {
  margin: 0;
}
.promo-container video {
  float: left;
  width: 164px;
  height: 115px;
  margin: 0 20px;
}
.promo-container p {
  color: #000;
}
.promo-container h2 {
  font-size: 40px;
}
.promo-container h3 {
  font-size: 30px;
  margin-top: -15px;
  margin-bottom: 5px;
}

.promo-container table {
  width: 100%;
}
.promo-container table tr {
  display: flex;
  justify-content: space-evenly;
}

.promo-container-2 a.btn,
.comparison-slider a.btn {
  padding: 20px 34px;
  border-radius: 4px;
  border: 1px #fff solid;
  color: black;
  font-family: DM Sans;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
}

.promo-container-2 a.btn {
  padding: 18px 34px;
  margin-bottom: 6px;
}

.comparison-slider a.btn {
  margin-bottom: 86px;
}

.promo-container-3 h2 {
  width: 660px;
  font-size: 44px;
  color: white;
  font-family: "Jost";
}

.promo-container-3 p {
  font-size: 18px;
  color: white;
}

.promo-container-3 a.btn {
  transition: all 0.3s ease;
}

#carousel,
.carousel-inner {
  margin-bottom: 0 !important;
}

/*s product*/
button.wishlist-button-add {
  display: block !important;
}

.thumbnail-container {
  border-radius: 10px;
}

.product-price-and-shipping {
  display: flex;
  justify-content: flex-start;
  gap: 5px;

  .price {
    color: var(--color-primary, #cb9274);
    font-family: DM Sans;
    font-size: 16px;
    font-weight: 500;

    letter-spacing: -0.02em;
  }

  .regular-price {
    font-family: DM Sans;
    font-size: 12px;
    font-weight: 500;
  }

  .quick-view {
    height: 36px;
    width: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #252324;
    margin-left: auto;
  }
}

.product-description .product-title {
  text-align: left;

  a {
    font-family: Jost;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #252324;
  }
}
.thumbnail-container .product-options .product-options__link {
  width: 100%;
  height: 100%;
  display: flex;
}
.thumbnail-container .product-options {
  transition: 0.3s opacity;
  opacity: 0;
  /**/
  pointer-events: none;
}

.thumbnail-container:hover .product-options {
  opacity: 1;
  pointer-events: auto;
}

.thumbnail-container .quick-view,
.thumbnail-container .wishlist-button-add {
  opacity: 0;
  pointer-events: none;
  transition: 0.3s opacity;
}

.thumbnail-container:hover .quick-view,
.thumbnail-container:hover .wishlist-button-add {
  opacity: 1;
  pointer-events: auto;
}

.product_variants {
  position: absolute;
  bottom: 0;
  left: 8%;
}

.product-miniature .variant-links {
  position: static;
  width: 100%;
  min-height: 2.5rem;
  padding-top: 0;
  text-align: left;
  background: transparent;
}

.variant-label {
  font-family: Jost;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}

.product-options {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.226) 50%, rgba(255, 255, 255, 0.767) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.variant-links {
  display: flex;
  justify-content: flex-start;
  gap: 10px;

  .color {
    display: flex;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin: 0;
  }
}

.variant-label {
  text-align: left;
}

.variant-links a.color {
  transition: 0.3s border;
  border: 2px solid transparent !important;
}

.variant-links a.color:hover {
  border: 2px solid var(--color-primary, #cb9274) !important;
}

/* .variant-links a.color:hover {
outline: 1px solid var(--color-primary, #cb9274);
border: 2px solid white !important;

} */
.product-miniature .thumbnail-container .product-thumbnail img {
  transition: 0.3s ease;
}
.product-miniature .thumbnail-container:hover .product-thumbnail img {
  transform: scale(1.2);
}
/* .products .products .thumbnail-container .thumbnail-top img {
  
} */
.products form .add-cart:hover {
  background-color: #00000063;
}
.products form .add-cart {
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #252324;
  position: absolute;
  right: 16px;
  bottom: 22px;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: none;
}
.products .product-description {
  padding: 10px 15px;
  border: solid 1px #eaeaea;
  border-top: 0;
  border-radius: 0px 0px 11px 11px;
  margin-bottom: 20px;
}

.products .quick-view {
  position: absolute;
  top: 25px;
  right: 16px;
  z-index: 10;

  transform: translateY(100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  min-width: 2.5rem;
  background-color: #fff;
  box-shadow: 0.125rem -0.125rem 0.25rem 0 rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s ease-out;
  border: none;
}
/*e product*/

.new-arrivals .products {
  display: flex;
}

.latest-articles article .frame .left-side div a.btn {
  padding: 15px 34px;
  border-radius: 4px;
  font-size: 18px;
  color: black;
  margin-bottom: -3px;
  border: 1px solid #fff;
}

.product-accessories .title-1 {
  font-family: DM Sans;
  font-weight: 500;
  font-size: 18px;
  line-height: 62px;
  letter-spacing: 0%;
  color: var(--color-primary, #cb9274);
}

.product-accessories .title-2 {
  color: #252324;
  font-family: Jost;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
}

/*  */
#left-column {
  transition: 0.3s all;
}

#left-column.hidden {
  width: 0;
  overflow: hidden;
  padding: 0;
  animation-name: height-0;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
}

@keyframes height-0 {
  from {
    height: auto;
  }

  to {
    height: 0;
  }
}

#search_filters p {
  text-overflow: ellipsis;
  overflow: hidden;
}

#content-wrapper {
  transition: 0.3s all;
}

#content-wrapper .products .product {
  transition: 0.3s all;
}
/*  */

.promo-container-3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 70px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  color: #fff;
}
@media (max-width: 768px) {
  .promo-container-3 {
    padding: 0;
    margin-top: 40px !important;
  }
}

.promo-container-3 > * {
  z-index: 1;
}

.promo-container-3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.463);
  z-index: 0;
}

.promo-container-3 table {
  width: 100%;
}

.promo-container-3 table tr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.promo-container-3 table tr h1 {
  width: 660px;
  font-size: 44px;
  color: white;
  font-family: "Jost";
}

.promo-container-3 table tr a {
  background-color: transparent;
  border: none;
  border-radius: 4px;
  font-weight: 400;
  font-size: 18px;
  padding: 15px;
  color: black;
}

.promo-container-3 table tr a:last-child {
  color: white;
  border: 1px solid var(--color-primary, #cb9274);
  transition: all 0.8s ease;
}
.promo-container-3 table tr a:last-child:hover {
  border: 1px solid #fff;
}

@media (max-width: 768px) {
  .promo-container-3 table tr {
    flex-direction: column;
    padding: 20px;
    height: 250px;
  }
}

.wishlist-button-add i {
  color: #252324e1 !important;
}
.wishlist-button-add {
  box-shadow: none !important;
}

.btn-primary {
  background-color: var(--color-primary, #cb9274) !important;
}

form .btn_password_hide_show button,
form .btn_password_hide_show button:active,
form .btn_password_hide_show button:focus,
form .btn_password_hide_show button:focus-visible {
  width: 100%;
  height: 100%;
  background: #f5f4f2;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border: #dddddd 0.5px solid;
  border-left: none;
  outline: none !important;
}

.main-container .form-container form input {
  background-color: #f5f4f2 !important;
}

.input-group.focus,
.form-control:focus {
  outline: 0.1875rem solid #2523242b;
}
.input-group {
  border-radius: 4px;
}

#field-password {
  border-right: none;
}
.new-arrivals .category-list li a {
  text-transform: uppercase;
}
.carousel .carousel-item .caption h1 {
  color: white;
  font-family: DM Sans;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 1.5px;
  max-width: 800px;
}
.products form .add-cart:disabled {
  transform: scale(0);
}

.product-info #qty_wanted {
  display: block;
  width: 3rem;
  text-align: center;
  border: none;
}

#inc_quantity_wanted_new_pr,
#dec_quantity_wanted_new_pr {
  cursor: pointer;
}

#product-images__img-main,
.product-images__imgs {
  transition: all 0.3s ease;
}

.product-images__imgs {
  cursor: zoom-in;
}

.product-images__imgs.fade {
  filter: blur(10px);
  opacity: 0.7;
}

#product-images__img-main.fade {
  opacity: 1;
  transform: scaleX(0);
}

.btn:disabled {
  cursor: not-allowed !important;
}
.dr_gridproducts {
  margin: 0 auto;
  padding: 60px 20px;
}

.dr_gridproducts__head {
  text-align: center;
}

.dr_gridproducts__head .title {
  font-family: "Jost";
  font-size: 34px;
  text-align: center;
  margin-bottom: 10px;
}

.dr_gridproducts__head .subtitle {
  font-family: "Jost";
  text-align: center;
  color: rgba(37, 35, 36, 0.8);
  margin-bottom: 40px;
}

.dr_gridproducts__item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  text-decoration: none;
}

.dr_gridproducts__item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  transition-duration: 0.6s;
  z-index: 0;
}

.dr_gridproducts__item__centent {
  position: relative;
  z-index: 1;
}

.dr_gridproducts__item__centent h3 {
  font-family: "Jost";
  color: white;
  transition-duration: 0.6s;
  font-size: 34px;
  z-index: 2;
  text-align: center;
  margin-bottom: -20px;
}
.dr_gridproducts__item:hover img {
  filter: brightness(0.7);
  transform: scale(1.2);
}
.dr_gridproducts__item:hover .dr_gridproducts__item__centent p {
  opacity: 1;
}
.dr_gridproducts__item:hover .dr_gridproducts__item__centent h3 {
  transform: translateY(-20px);
}
.dr_gridproducts__item__centent p {
  font-family: "Jost";
  margin-bottom: -5px;
  color: white;
  opacity: 0;
  transition-duration: 0.6s;
  font-size: 24px;
  z-index: 2;
  text-align: center;
}

.dr_gridproducts__container {
  display: grid;
  gap: 5px;
  grid-auto-rows: 345px;
}

.images-content .year-content .img_txt {
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 0;
  color: white;
  width: 100%;
}
.desktop-content .images-content .left div h3 {
  position: static !important;
}
.desktop-content .images-content .left div p {
  color: white;
}

.custom-wishlist-button .material-icons {
  font-size: 20px;
}

.product-miniature .thumbnail-container .product-thumbnail img {
  transition: 0.3s ease;
  height: 408px;
  object-fit: cover;
  object-position: 100% 20%;
}

.carousel .carousel-item .caption {
  padding-left: 100px !important;
  padding-right: 100px;
}

.best-seller .products-div .product-card .image-container {
  height: 381px;
}
/* 
    width: 100%;
    height: 381px;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
} */

.product-images > li.thumb-container .thumb {
  object-fit: cover;
}

#product-modal .modal-content .modal-body .product-cover-modal {
  height: auto;
}

.carousel .carousel-item .caption .caption-description a.btn:nth-child(2)::before {
  background-color: var(--color-primary, #cb9274);
}
.carousel .carousel-item .caption .caption-description a.btn:nth-child(2) {
  color: white;
  border: 1px var(--color-primary, #cb9274) solid;
  span {
    color: white;
  }
}
.carousel .carousel-item .caption .caption-description a.btn:nth-child(2):hover {
  border-color: white;
}

@media (max-width: 768px) {
  .carousel .carousel-item .caption .caption-description a.btn {
    padding: 4px 21px !important;
    margin-top: 0px !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
    margin: 3px;
    min-width: 170px !important;
  }
  .carousel .carousel-item .caption h1,
  .carousel .carousel-item .caption h2 {
    font-size: 24px !important;
    padding: 0 0px 26px 0px !important;
    min-width: 315px;
    letter-spacing: 0px;
    line-height: normal !important;
  }

  .carousel .carousel-inner {
    height: 519px !important;
  }
  .carousel .carousel-item .caption {
    top: none !important ;
    transform: translate(-50%, -65%) !important;
    position: absolute !important;
    top: 51% !important;
    left: 50% !important;
    bottom: auto !important;
    color: #fff !important;
    max-width: none !important;
    width: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0;
  }
  .carousel .carousel-indicators {
    display: none !important;
  }
  .new-arrivals {
    padding: 0;
  }
  .promo-container-2 {
    padding: 66px 0px;
  }
  .promo-container-2 p:nth-child(1) {
    font-size: 11px;
  }
  .promo-container-2 h2 {
    font-size: 34px;
    letter-spacing: -1.5px;
    margin-bottom: 31px;
  }
  .promo-container-2 a.btn {
    padding: 7px 23px;
    margin-bottom: 6px;
    font-size: 12px;
    text-transform: uppercase;
  }
  .promo-container-2 p {
    margin-bottom: 18px;
  }
  .our-collection {
    padding: 34px 3px;
  }
  .our-collection h2 {
    font-size: 24px !important;
    margin: 10px 0px !important;
    letter-spacing: -0.5px !important;
  }

  .our-collection p {
    max-width: 280px;
    font-size: 14px !important;
    line-height: normal !important;
    text-align: center;
  }
  .our-collection > div {
    margin-top: 27px !important;
    height: 514px !important;
  }
  .our-collection > div > div:hover h3 {
    top: 48.4% !important;
  }
  .best-seller span.small_title {
    font-size: 14px;
    padding: 0px;
  }
  .best-seller h2 {
    font-size: 24px;
    padding: 0px;
  }
  #all-products {
    padding: 0;
  }
  .faq h2 {
    font-size: 34px;
  }
  .faq {
    padding: 60px 10px;
  }
  main .page-footer {
    margin-top: 22px !important;
  }
  main .newslatter div {
    margin: 0 !important;
  }
  .newslatter span.info {
    font-size: 12px;
  }
  .newslatter div.title {
    font-size: 24px;
    margin-bottom: 20px !important;
  }
  .footer__description {
    padding: 0;
  }
  footer .icons {
    padding: 20px 4px;
  }
}

@media (min-width: 769px) and (max-width: 1300px) {
  /* Your styles here */
  .latest-articles article .frame {
    height: 570px;
  }
}

.navbar .menu-links li {
  white-space: nowrap;
  margin: 0px 5px;
}

#blockcart-modal .product-name {
  color: #000000;
}

div#search_filters_wrapper {
  padding-top: 0;
}

.block-categories {
  padding: 1.563rem 0 0;
  margin-bottom: 0;
}

#category #wrapper {
  padding-top: 0;
}

.product-miniature .thumbnail-container:focus .product-description::after,
.product-miniature .thumbnail-container:hover .product-description::after {
  border-top: none;
}

.block-categories .category-sub-menu li > a {
  text-transform: capitalize;
}

#category .products-selection #js-product-list-top {
  align-items: center;
}

@media (max-width: 767px) {
  .block-categories {
    display: none;
  }
}

/* .product-miniature,
.product-miniature .product {
  width: fit-content;
}

#content-wrapper .products .product {
  width: fit-content;
  padding: 0;
} */

#products .products {
  justify-content: space-between;
}

.products-selection > div {
  display: flex;
}

@media (min-width: 767px) {
  .products-sort-order {
    &:hover {
      background-color: transparent;
    }
    .btn-order-products {
      &:focus {
        outline: none;
      }
      padding: 0;
      &:hover {
        background-color: transparent !important;
      }
    }
  }
}

.product-cover img {
  width: 100%;
}

.dropdown-menu {
  margin: 0;
}

#search_filters .facet.clearfix[data-type="category"] ul {
  flex-direction: column !important;
}

.facet-label {
  cursor: pointer;
}

.promo-header .lang-curren .lang li a:hover,
.promo-header .lang-curren .lang li a.active,
.promo-header .lang-curren .currency li a:hover,
.promo-header .lang-curren .currency li a.active {
  color: var(--color-primary, #cb9274) !important;
}

.product-attributes .color-swatch input[type="radio"]:checked + span,
.product-attributes .color-swatch span:hover {
  outline: 2px solid var(--color-primary, #cb9274) !important;
}

.product-price strong {
  color: var(--color-primary, #cb9274) !important;
}

.cart-detailed-actions div a {
  background-color: var(--color-primary, #cb9274) !important;
}

.product-images > li.thumb-container .thumb.selected,
.product-images > li.thumb-container .thumb:hover {
  border: var(--color-primary, #cb9274) 3px solid !important;
}

#search_filters .facet .facet-label a.search-link {
  text-transform: capitalize;
}

#search_filters_wrapper {
  padding: 30px 0 !important;
}

.category-name-frame .breadcrumb a {
  color: white;
}

.category-name-frame .breadcrumb a:hover {
  text-decoration: underline !important;
}

#content-wrapper .contact-form h2 {
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #333;
}

.card-block-title .h5 {
  font-family: DM Sans;
  font-weight: 400;
  font-size: 16px;
}

#cms #content,
#contact #wrapper {
  padding: 1.25rem 90px;
}
@media (max-width: 768px) {
  #cms #content,
  #contact #wrapper {
    padding: 1.25rem 20px;
  }
}

/* button back to top */

.to-top {
  position: fixed;
  bottom: 20px;
  left: 0;
  padding: 24px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 99;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-100%);
}

.to-top:hover {
  background-color: #b2b2b2;
}

.to-top.show {
  opacity: 1;
  transform: translateX(0);
  left: 20px;
  border: 1px solid;
}

.to-top svg {
  width: 20px;
  height: 20px;
}

img.product-cover-modal {
  width: 100% !important;
}

@media (max-width: 426px) {
  .promotional-banners {
    justify-content: space-between;
  }
  .promotional-banners .promotional-banners__container {
    width: 100% !important;
  }

  .promo-header {
    padding: 0 35px !important;
  }
}

@media (max-width: 768px) {
  .carousel .carousel-item .caption .caption-description a.btn span {
    text-transform: uppercase;
  }

  .caption-description {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .carousel .carousel-item .caption h2,
  .carousel .carousel-item .caption h1 {
    padding: 0 !important;
    margin-bottom: 0 !important;
  }

  .promo-container-2 h2 {
    font-weight: 500;
  }
  .promo-container-2 p {
    font-size: 14px;
  }

  .best-seller .products-div .product-card {
    margin: 0 !important;
  }
  .fashion-section .main-content p {
    font-weight: 500;
  }

  .to-top.show {
    right: 20px;
    left: unset;
  }
  .to-top {
    left: unset;
  }

  .latest-articles article .frame .right-side .card {
    gap: 24px;
    margin-bottom: 60px;
  }

  .promo-container-3 td:first-of-type {
    padding: 0 !important;
  }
  .promo-container-3 a.btn {
    text-transform: uppercase;
    font-family: DM Sans;
    font-weight: 400;
    font-size: 12px;
    margin-bottom: 10px;
  }
  .promo-container-3 * {
    text-align: center;
  }
  .faq .faq-item .faq-question h3 {
    font-family: Jost;
    font-weight: 600;
    font-size: 16px;
  }

  .to-top {
    padding: 15px;
    left: unset;
    right: 0;
    transform: translateX(100%);
  }
  .faq::before {
    height: 800px;
  }
}

header .mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f5f3f1f5;
  transition: 0.4s all ease;
  transform: translate(-100%);
  z-index: 100;
}

header .mobile-menu::-webkit-scrollbar {
  display: none;
}
header .mobile-menu.show {
  transform: translate(0);
}
header .mobile-menu .close-btn {
  float: right;
  margin-top: 20px;
  margin-right: 20px;
  transition: 0.3s ease all;
}
header .mobile-menu .clear-float {
  clear: both;
}
header .mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
header .mobile-menu > ul {
  width: 80%;
  margin: auto;
}
header .mobile-menu > ul ul {
  margin-left: 20px;
}
header .mobile-menu {
  overflow-y: auto;
}
header .mobile-menu a {
  color: black;
  text-decoration: none;
  transition: 0.3s ease color;
}
header .mobile-menu a:hover {
  text-decoration: none !important;
  color: black !important;
}
header .mobile-menu > ul > li > div.link {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #9c9c9c;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .mobile-menu > ul > li ul li {
  margin-top: 15px;
}
header .mobile-menu > ul > li > ul {
  transition: 0.5s all ease-out;
  max-height: 0px;
  overflow: hidden;
  /* opacity: 0; */
}
header .mobile-menu > ul > li > div.link.active + ul {
  max-height: 400px;

  /* opacity: 1; */
}
header .mobile-menu > ul > li > div.link.active,
header .mobile-menu > ul > li > div.link.active:hover {
  color: #cb9274 !important;
}
header .mobile-menu > ul > li > div.link .arrow {
  transition: 0.5s ease-out all;
}
header .mobile-menu > ul > li > div.link.active .arrow {
  transform: rotate(-180deg);
}
header .close-btn {
  cursor: pointer;
  transition: 0.3s ease all;
}
header .close-btn:hover {
  transform: rotate(-10deg);
}

.navbar .mega-dropdown .mega-dropdown-content .content-columns .menu-column .menu-column__title,
.navbar .mega-dropdown .mega-dropdown-content .left-navigation a {
  font-family: DM Sans;
  font-weight: 700;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}
.navbar #menu-links > li > a,
.navbar .mega-dropdown .mega-dropdown-content .content-columns .menu-column ul li a {
  transition: all 0.3s ease-in-out;
}

.navbar .mega-dropdown .mega-dropdown-content .left-navigation a:hover {
  color: var(--color-primary, #cb9274);
}

.promo-container tr td,
.promo-container h3 {
  margin: auto;
}

.promo-container a.btn,
.latest-articles article .frame .left-side div a.btn,
.promo-container-2 a.btn,
.promo-container-3 a.btn,
.comparison-slider a.btn {
  position: relative;
  overflow: hidden;
  transition: color 0.5s ease;
}

.promo-container a.btn::before,
.latest-articles article .frame .left-side div a.btn::before,
.promo-container-2 a.btn::before,
.promo-container-3 a.btn::before,
.comparison-slider a.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  background-color: #ffffff;
}
.promo-container a.btn:hover::before,
.latest-articles article .frame .left-side div a.btn:hover::before,
.promo-container-2 a.btn:hover::before,
.promo-container-3 a.btn:hover::before,
.comparison-slider a.btn:hover::before {
  transform: translateX(100%);
}

.promo-container a.btn:hover,
.promo-container-2 a.btn:hover,
.latest-articles article .frame .left-side div a.btn:hover,
.promo-container-3 a.btn:hover,
.comparison-slider a.btn:hover {
  color: #ffffff;
}

.promo-container a.btn span,
.latest-articles article .frame .left-side div a.btn span,
.promo-container-2 a.btn span,
.promo-container-3 a.btn span,
.comparison-slider a.btn span {
  position: relative;
  z-index: 1;
}

.promo-container a.btn {
  color: white;
  padding: 10px 30px;
  border: var(--color-primary, #cb9274) solid 1px;
  border-radius: 2px;
  margin-top: 5px;
}

.promo-container a.btn::before {
  background-color: var(--color-primary, #cb9274);
}

.promo-container a.btn:hover {
  color: var(--color-primary, #cb9274);
}

.promo-container-3 table tr a:last-child::before {
  background-color: var(--color-primary, #cb9274);
}
.promo-container-3 table tr a {
  border: 1px solid #ffffff;
}

#all-products a {
  transition: all 0.6s ease;
}

@media (max-width: 768px) {
  .desktop-content .images-content .left div h3 {
    font-size: 30px;
  }

  .latest-articles article .frame .right-side .card {
    width: 42.3%;
  }
  .carousel .carousel-item .caption .caption-description > * {
    line-height: 1 !important;
  }
}

.product-quantity #quantity_wanted {
  background-color: transparent !important;
}

.carousel-container .product-accessories {
  position: sticky;
  left: 0;
}

body#authentication,
body#registration,
body#password {
  .page-footer {
    margin: 0 !important;
  }
}

.products-sort-order .btn-order-products.active,
.products-sort-order .btn-order-products {
  background-color: transparent !important;
}

#js-product-list-top > div:last-child {
  padding: 0 !important;
  p {
    margin: 0 !important;
  }
}

.custom-wishlist-button {
  display: flex;
  gap: 4px;
}

.btn-comment {
  background-color: var(--color-primary, #cb9274) !important;
}
.btn-comment-inverse,
.btn-comment {
  transition: all 0.3s ease !important;
}
.btn-comment-inverse:hover,
.btn-comment:hover {
  opacity: 0.8;
}

.btn-comment-inverse:hover {
  background-color: var(--color-primary, #cb9274) !important;
}

.images-container ul.product-images {
  text-align: center;
}

.product-actions .control-label {
  font-family: Jost;
  font-weight: 600;
  font-size: 16px;
}

.btn_password_hide_show {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  height: 100%;
  background: transparent;
}
input#field-password {
  position: relative;
  z-index: 0;
}

#cms {
  #content {
    margin-top: 70px;
    margin-bottom: 40px;
  }
  h1 {
    text-align: left;
    font-family: Jost;
    font-weight: 600;
    font-size: 42px;
  }
  h2 {
    margin-top: 30px;
    font-family: Jost;
    font-weight: 600;
    font-size: 32px;
  }
  .img-banner {
    height: 551px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .img-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000008f;
    z-index: 1;
  }

  .img-banner img {
    width: 132%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    flex-shrink: 0;
  }
  #wrapper {
    padding: 0;
  }

  .img-banner__content {
    z-index: 2;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
  }

  .img-banner .caption {
    font-family: Jost;
    font-weight: 500;
    font-size: 54px;
    line-height: 1;
  }
  .img-banner .subcaption {
    font-family: DM Sans;
    font-weight: 400;
    font-size: 26px;
    line-height: 1;
  }

  #wrapper .breadcrumb {
    position: absolute;
    color: white;
    z-index: 1;
    bottom: 14px;
    left: 90px;
    z-index: 2;

    a {
      color: white !important;
    }

    text-transform: uppercase;
    font-family: DM Sans;
    font-weight: 500;
    font-size: 24px;
  }
  #wrapper .breadcrumb a:hover {
    text-decoration: underline !important;
  }

  #content-wrapper {
    padding: 0 90px;
  }

  @media (max-width: 768px) {
    #content {
      margin-top: 40px;
      margin-bottom: 20px;
    }
    h1 {
      font-weight: 500;
      font-size: 32px;
    }
    h2 {
      margin-top: 15px;
      font-weight: 500;
      font-size: 22px;
    }
    .img-banner {
      height: 395px;
    }
    #wrapper .breadcrumb {
      left: 22px;
    }
    #content-wrapper {
      padding: 0 22px;
    }
    .img-banner .caption {
      font-size: 35px;
      font-weight: 400;
    }
    .img-banner .subcaption {
      font-size: 16px;
      font-weight: 300;
    }
    #wrapper .breadcrumb {
      font-size: 12px;
      font-weight: 400;
    }
    .img-banner__content {
      padding: 0 20px;
    }
  }
}

#identity,
#address {
  .optional_label {
    font-size: 9px;
  }
  form input,
  form select {
    width: 100%;
    height: 50px;
    background-color: #f5f4f2 !important;
    border-radius: 4px;
    padding: 15px;
    display: flex;
    align-items: center;
    border: #dddddd 0.6px solid;
    font-family: DM Sans;
    font-weight: 400;
    font-size: 16.82px;
    color: #3333334d;
  }
  .custom-checkbox input[type="checkbox"] + span {
    border-radius: 4.81px !important;
    border-color: #252324 !important;
  }
  form input:focus,
  form select:focus,
  form select option {
    color: #000000;
  }
  form .form-control-label {
    font-family: DM Sans;
    font-weight: 500;
    font-size: 18px;
  }
  .page-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-direction: column;
    text-align: center;
  }
  h1 {
    font-family: Jost;
    font-weight: 500;
    font-size: 50.46px;
    color: #000000;
    text-transform: capitalize;
  }
  .page-top p {
    max-width: 501px;
    font-family: DM Sans;
    font-weight: 400;
    font-size: 21.62px;
    line-height: 27.4px;
  }
  form {
    max-width: 700px;
    margin: auto;
  }
  .form-footer button {
    margin-top: 20px;
  }
  form em {
    margin-left: 30px;
    display: block;
  }
  .form-footer button {
    padding: 16px;
    font-family: DM Sans;
    font-weight: 500;
    font-size: 21.62px;
    text-align: center;
  }
  .radio-inline {
    font-weight: 400;
    font-size: 16px;
  }
  form .btn_password_hide_show button {
    background-color: transparent !important;
  }
  @media (max-width: 768px) {
    .form-footer button {
      padding: 11px;
      font-size: 18.62px;
    }
    h1 {
      font-size: 32px;
    }
    .page-top p {
      font-size: 16px;
      line-height: 24px;
    }
    form#customer-form {
      max-width: 100%;
    }
  }
}

#main .page-header {
  padding: 40px 0;
}

#cms #main #content a {
  color: var(--color-primary, #cb9274);
}
a.text-primary {
  color: var(--color-primary, #cb9274) !important;
}
#cms #main #content a:hover {
  color: var(--color-primary, #cb9274);
  text-decoration: underline;
}
a.text-primary:hover {
  color: var(--color-primary, #cb9274) !important;
  text-decoration: underline !important;
}

.wishlist-add-to-new i {
  color: var(--color-primary, #cb9274) !important;
}
#view {
  .wishlist-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
#module-blockwishlist-lists,
#view {
  #main {
    padding: 0 90px;
  }

  @media (max-width: 768px) {
    #main {
      padding: 0 7px;
    }
  }

  .wishlist-list-item:hover .wishlist-list-item-title {
    color: var(--color-primary, #cb9274) !important;
  }
  .wishlist-footer-links {
    display: none;
  }
}
em p {
  color: inherit;
  font-size: inherit;
}

.payment-methods p {
  text-transform: capitalize;
}

#category .category-name-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000066;
  z-index: 1;
}

.category-name-frame img {
  z-index: 0;
}

#js-product-list-top p {
  display: flex;
  align-items: center;
}
body#checkout section.checkout-step .form-footer {
  float: none !important;
}

body#checkout section.checkout-step .forgot-password a {
  color: var(--color-primary, #cb9274) !important;
}

body#checkout section.checkout-step .forgot-password a:hover {
  text-decoration: underline !important;
}

body#checkout section.checkout-step .forgot-password {
  margin-left: 0 !important;
  text-align: end;
  margin-bottom: 20px;
  margin-top: -5px;
}

.carousel .carousel-inner {
  height: 873px;
}
.carousel .carousel-inner img {
  height: 100%;
}
.carousel .carousel-item figure {
  height: 100%;
}
.container {
  margin: 0;
}

#wrapper {
  padding: 0;
}

#content-wrapper {
  padding: 0;
}

.carousel .carousel-item .caption {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 51%;
  left: 50%;
  bottom: auto;
  color: #fff;
  max-width: 100%;
  width: 100%;
  padding-left: 50px;
}

.carousel .carousel-item .caption .caption-description {
}

.carousel .carousel-item .caption .caption-description p {
  text-transform: uppercase;
  font-family: Jost;
  font-size: 24px;
  font-weight: 500;
}

.carousel .carousel-item .caption h2 {
  color: white;
  font-family: DM Sans;
  font-size: 64px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-bottom: 30px;
}

.carousel .carousel-item .caption .caption-description a.btn {
  position: relative;
  padding: 14px 34px;
  margin-top: 34px;
  border-radius: 4px;
  border: none;
  border: 1px #fff solid;
  color: black;
  overflow: hidden;
  font-family: DM Sans;
  font-size: 18px;
  font-weight: 500;
  line-height: 23.44px;
  text-transform: capitalize;
  transition: border 0.8s ease;
}

.carousel .carousel-item .caption .caption-description a.btn:nth-child(3) span {
  color: white;
}

.carousel .carousel-item .caption .caption-description a.btn:nth-child(3)::before {
  background-color: #cb9274;
}

.carousel .carousel-item .caption .caption-description a.btn span {
  z-index: 1;
  position: relative;
  transition: all 0.8s ease;
}

.carousel .carousel-item .caption .caption-description a.btn:nth-child(3):hover {
  border-color: #fff;
}

.carousel .carousel-item .caption .caption-description a.btn:nth-child(3) {
  border-color: #cb9274;
}

.carousel .carousel-item .caption .caption-description a.btn:hover span {
  color: #fff;
}

.carousel .carousel-item .caption .caption-description a.btn::before {
  content: "";
  position: absolute;
  background-color: #fff;
  transform: translateX(0);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.8s ease;
  z-index: 0;
}

.carousel .carousel-item .caption .caption-description a.btn:hover {
  color: #fff;
}

.carousel .carousel-item .caption .caption-description a.btn:hover::before {
  transform: translateX(100%);
}
.carousel .carousel-indicators {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}
.carousel-indicators {
  bottom: 30px;
  right: 8%;
  left: auto;
}
.carousel-indicators li {
  background-color: #fff;
  border: none;
  position: relative;
  width: 10px !important;
  height: 10px !important;
}
.carousel-indicators li::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  border: 1px rgb(255, 255, 255) solid;
  border-radius: 50%;
  transition: 0.5s all;
}
.carousel-indicators li.active::before,
.carousel-indicators li:hover::before {
  transform: translate(-50%, -50%) scale(2);
}
.carousel-indicators li.active,
.carousel-indicators li:hover {
  background-color: #fff;
  border: none;
}
.carousel-indicators .active {
  margin: 1px !important;
}
.carousel .carousel-inner img {
  object-fit: cover;
  object-position: 57%;
}

#checkout .condition-label a,
#checkout .add-address a,
#checkout .add-address + p a,
#checkout-personal-information-step a {
  color: var(--color-primary, #cb9274) !important;
}
#checkout .condition-label a:hover,
#checkout .add-address a:hover,
#checkout .add-address + p a:hover,
#checkout-personal-information-step a:hover {
  text-decoration: underline !important;
}

#checkout header.h4 {
  z-index: 0;
}

body#checkout section.checkout-step .address-item.selected {
  border-color: var(--color-primary, #cb9274) !important;
}

body#checkout .clearfix {
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .latest-articles article .frame .right-side {
    width: 100%;
  }

  .latest-articles article .frame .right-side .card {
    width: 90%;
  }
}

#category #content-wrapper .products .product {
  width: fit-content;
}

.gallery-section p {
  text-align: center;
}
/* 22-5 */
