@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Playfair:wght@300..900&display=swap");
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 18px;
  scroll-behavior: smooth;
}

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

body {
  font-family: "Gotham", sans-serif;
  background: #fff;
  color: #1e1e1e;
  line-height: 1.5;
  min-height: 100vh;
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.24, 0.46);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.24, 0.46);
  overflow-x: hidden;
}

section {
  position: relative;
  width: 100%;
}

a {
  color: #1e1e1e;
  text-decoration: none;
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
}
a:hover, a:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Gotham", sans-serif;
  font-weight: 300;
  color: #1e1e1e;
  margin-bottom: 0;
  line-height: 1.1;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.button {
  display: inline-block;
  background: #227B94;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: "Gotham", sans-serif;
  font-weight: 700;
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.24, 0.46);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.24, 0.46);
  cursor: pointer;
  border: none;
}
.button:hover, .button:focus {
  background: rgb(24.4725274725, 88.532967033, 106.5274725275);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.button.outline {
  background: transparent;
  color: #227B94;
  border: 2px solid #227B94;
}
.button.outline:hover {
  background: #227B94;
  color: #fff;
}
.button.disabled, .button[disabled] {
  opacity: 0.6;
  pointer-events: none;
}

.no-scroll {
  overflow-y: hidden !important;
}

.toHide {
  display: none !important;
}

@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.cta-wrapper button,
.cta-wrapper a,
.green-cta {
  position: relative;
  background: transparent;
  color: #1e1e1e;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1px;
  padding: 16px 24px;
  border: 2px solid #1e1e1e;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-box-shadow: -2px -2px 30px rgba(0, 0, 0, 0.1333333333);
          box-shadow: -2px -2px 30px rgba(0, 0, 0, 0.1333333333);
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.cta-wrapper button::after,
.cta-wrapper a::after,
.green-cta::after {
  content: "";
  z-index: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#1e1e1e), to(#000));
  background: linear-gradient(90deg, #1e1e1e 0%, #000 100%);
  width: 0%;
  height: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: 0.41s ease-in-out;
  transition: 0.41s ease-in-out;
}
.cta-wrapper button span,
.cta-wrapper a span,
.green-cta span {
  text-transform: uppercase;
  z-index: 4;
  color: #1e1e1e;
  -webkit-transition: 0.41s ease-in-out;
  transition: 0.41s ease-in-out;
}
.cta-wrapper button .cta-arrow,
.cta-wrapper a .cta-arrow,
.green-cta .cta-arrow {
  z-index: 4;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
}
.cta-wrapper button svg, .cta-wrapper button path,
.cta-wrapper a svg,
.cta-wrapper a path,
.green-cta svg,
.green-cta path {
  z-index: 4;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.cta-wrapper button:hover span,
.cta-wrapper a:hover span,
.green-cta:hover span {
  color: #fff;
}
.cta-wrapper button:hover::after,
.cta-wrapper a:hover::after,
.green-cta:hover::after {
  width: 100%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.cta-wrapper button:hover svg,
.cta-wrapper a:hover svg,
.green-cta:hover svg {
  -webkit-transform: scale(1.12);
          transform: scale(1.12);
  stroke: #fff;
}
.cta-wrapper button:hover svg path,
.cta-wrapper a:hover svg path,
.green-cta:hover svg path {
  stroke: #fff;
}

button.woo-btn,
a.woo-btn {
  position: relative;
  background: transparent;
  color: #1e1e1e;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1px;
  padding: 16px 24px;
  border: 2px solid #1e1e1e;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 4;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-box-shadow: -2px -2px 30px rgba(0, 0, 0, 0.1333333333);
          box-shadow: -2px -2px 30px rgba(0, 0, 0, 0.1333333333);
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
button.woo-btn::after,
a.woo-btn::after {
  content: "";
  z-index: -2;
  position: absolute;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#1e1e1e), to(#000));
  background: linear-gradient(90deg, #1e1e1e 0%, #000 100%);
  width: 0%;
  height: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: 0.41s ease-in-out;
  transition: 0.41s ease-in-out;
}
button.woo-btn:hover,
a.woo-btn:hover {
  color: #fff;
}
button.woo-btn:hover::after,
a.woo-btn:hover::after {
  width: 100%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.about-cta-bordered {
  background: #E8E8E8;
  position: relative;
  overflow: hidden;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 20px;
  border: none;
  -webkit-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}
.about-cta-bordered span {
  font-size: 14px;
  line-height: 24px;
  font-family: "Gotham", sans-serif;
  color: #1e1e1e;
  text-transform: uppercase;
  padding: 8px 16px;
  font-weight: 400;
  -webkit-transition: all 0.34s ease-in-out;
  transition: all 0.34s ease-in-out;
  z-index: 4;
}
.about-cta-bordered::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#8a907d), to(rgba(5, 15, 51, 0.3019607843)));
  background: linear-gradient(180deg, #8a907d 0%, rgba(5, 15, 51, 0.3019607843) 100%);
  z-index: 1;
  opacity: 1;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.about-cta-bordered:hover {
  border-color: #fff;
}
.about-cta-bordered:hover::after {
  width: 100%;
}
.about-cta-bordered:hover span {
  color: #fff;
}

.lookbook-section {
  padding: 70px 0 70px;
}
.lookbook-section .section-title, .lookbook-section .section-desc {
  text-align: center;
}
.lookbook-section .container {
  padding: 0;
}
.lookbook-section .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
.lookbook-section .container .content .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.lookbook-section .container .content .top .lb-sec-title {
  text-align: center;
  font-size: 40px;
  line-height: 50px;
  text-transform: uppercase;
  color: #1e1e1e;
  font-weight: 400;
  letter-spacing: 1.2px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.lookbook-section .container .content .top .lb-sec-desc {
  font-size: 24px;
  color: #1e1e1e;
  font-weight: 300;
  text-align: center;
  width: 60%;
}
.lookbook-section .container .content .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lookbook-section .container .content .bottom .lookbook-tabs {
  background: #F2EFE8;
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  overflow: hidden;
}
.lookbook-section .container .content .bottom .lookbook-tabs .lookbook-tab {
  border: none;
  padding: 0.7rem 2.2rem;
  background: #F2EFE8;
  font-weight: 400;
  color: #A2987F;
  font-size: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 24px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.lookbook-section .container .content .bottom .lookbook-tabs .lookbook-tab:hover {
  background: #050F33;
  color: #fff;
}
.lookbook-section .container .content .bottom .lookbook-tabs .lookbook-tab.active {
  border-radius: 24px;
  background: #A2987F;
  color: #fff;
}
.lookbook-section .container .content .bottom .lookbook-images {
  position: relative;
  width: 100%;
  min-height: 390px;
}
.lookbook-section .container .content .bottom .lookbook-images .lookbook-image {
  display: none;
  position: relative;
}
.lookbook-section .container .content .bottom .lookbook-images .lookbook-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 600px;
  border-radius: 0;
  -webkit-box-shadow: 0 4px 22px rgba(0, 0, 0, 0.0666666667);
          box-shadow: 0 4px 22px rgba(0, 0, 0, 0.0666666667);
  display: block;
  margin: 0 auto;
}
.lookbook-section .container .content .bottom .lookbook-images .lookbook-image.active {
  display: block;
}
.lookbook-section .container .content .bottom .lookbook-images .lookbook-image .hotspot {
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  background: #fff;
  border: 3px solid #b7b769;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1333333333);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1333333333);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.lookbook-section .container .content .bottom .lookbook-images .lookbook-image .hotspot::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #b7b769;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.lookbook-section .container .content .bottom .lookbook-images .lookbook-image .hotspot:hover {
  border-color: #7b7b5d;
  -webkit-box-shadow: 0 4px 16px rgba(183, 183, 105, 0.2666666667);
          box-shadow: 0 4px 16px rgba(183, 183, 105, 0.2666666667);
}

.contact-section {
  background: #F2EFE8;
  padding: 60px 0;
}
.contact-section .container .content {
  max-width: 70%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 55px;
}
.contact-section .container .content .contact-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact-section .container .content .contact-title h3 {
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
  color: #1e1e1e;
}
.contact-section .container .content .contact-title p {
  width: 75%;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  text-transform: initial;
  color: #1e1e1e;
}
.contact-section .container .content .contact-form-wrap .contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.contact-section .container .content .contact-form-wrap .contact-form .form-row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.contact-section .container .content .contact-form-wrap .contact-form .form-row label {
  font-weight: 500;
  font-size: 20px;
  color: #1e1e1e;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .contact-section .container .content .contact-form-wrap .contact-form .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.6rem;
  }
}
.contact-section .container .content .contact-form-wrap .contact-form .form-row input, .contact-section .container .content .contact-form-wrap .contact-form .form-row textarea {
  font-family: "Gotham", sans-serif;
  width: 100%;
  color: #1e1e1e;
  border: 1px solid #fff;
  font-weight: 400;
  padding: 12px 16px;
  outline: none;
  font-size: 17px;
  background: #fff;
  resize: vertical;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
.contact-section .container .content .contact-form-wrap .contact-form .form-row input:focus, .contact-section .container .content .contact-form-wrap .contact-form .form-row input.active, .contact-section .container .content .contact-form-wrap .contact-form .form-row textarea:focus, .contact-section .container .content .contact-form-wrap .contact-form .form-row textarea.active {
  outline: none;
  border: none;
}
.contact-section .container .content .contact-form-wrap .contact-form .form-row input::-webkit-input-placeholder, .contact-section .container .content .contact-form-wrap .contact-form .form-row textarea::-webkit-input-placeholder {
  color: #434A3A;
  font-weight: 300;
}
.contact-section .container .content .contact-form-wrap .contact-form .form-row input::-moz-placeholder, .contact-section .container .content .contact-form-wrap .contact-form .form-row textarea::-moz-placeholder {
  color: #434A3A;
  font-weight: 300;
}
.contact-section .container .content .contact-form-wrap .contact-form .form-row input:-ms-input-placeholder, .contact-section .container .content .contact-form-wrap .contact-form .form-row textarea:-ms-input-placeholder {
  color: #434A3A;
  font-weight: 300;
}
.contact-section .container .content .contact-form-wrap .contact-form .form-row input::-ms-input-placeholder, .contact-section .container .content .contact-form-wrap .contact-form .form-row textarea::-ms-input-placeholder {
  color: #434A3A;
  font-weight: 300;
}
.contact-section .container .content .contact-form-wrap .contact-form .form-row input::placeholder, .contact-section .container .content .contact-form-wrap .contact-form .form-row textarea::placeholder {
  color: #434A3A;
  font-weight: 300;
}
.contact-section .container .content .contact-form-wrap .contact-form .form-row textarea {
  min-height: 130px;
}
.contact-section .container .content .contact-form-wrap .contact-form .form-duo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.contact-section .container .content .contact-form-wrap .contact-form button[type=submit] {
  margin-top: 16px;
  cursor: pointer;
  color: #fff;
  border: 1px solid #1e1e1e;
  text-transform: uppercase;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.contact-section .container .content .contact-form-wrap .success-msg {
  color: #43b04e;
  margin-top: 1.7rem;
  text-align: center;
  font-weight: 600;
  font-size: 1.12rem;
  display: none;
}

.values-section {
  background: #F2EFE8;
  padding: 80px 0 70px 0;
}
.values-section .container {
  padding-left: 0;
  padding-right: 0;
}
.values-section .container .content {
  padding-bottom: 120px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.values-section .container .content .values-title h3 {
  font-size: 40px;
  line-height: 50px;
  color: #1e1e1e;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  width: 75%;
  margin: 0 auto;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.values-section .container .content .values-img-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 900px) {
  .values-section .container .content .values-img-boxes {
    grid-template-columns: 1fr;
  }
}
.values-section .container .content .values-img-boxes .value-card {
  background: #fff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.0666666667);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.0666666667);
  text-align: center;
}
.values-section .container .content .values-img-boxes .value-card img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
}
.values-section .container .content .values-img-boxes .value-card h3 {
  font-size: 1.19rem;
  color: #1e1e1e;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.values-section .container .content .values-img-boxes .value-card p {
  color: #050F33;
  font-size: 1rem;
}
.values-section .container .content .values-grid-boxes {
  display: grid;
  padding-left: 40px;
  padding-right: 40px;
  grid-template-columns: repeat(3, minmax(0, 412px));
  gap: 20px;
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 900px) {
  .values-section .container .content .values-grid-boxes {
    grid-template-columns: 1fr;
  }
}
.values-section .container .content .values-grid-boxes .value-card {
  background: rgba(255, 255, 255, 0.0509803922);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.0666666667);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.0666666667);
  text-align: center;
  padding: 18px 24px;
  height: 100%;
  -webkit-transition: all 0.34s ease-in-out;
  transition: all 0.34s ease-in-out;
}
.values-section .container .content .values-grid-boxes .value-card:hover {
  background: #fff;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.0666666667);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.0666666667);
}
.values-section .container .content .values-grid-boxes .value-card img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
}
.values-section .container .content .values-grid-boxes .value-card h4 {
  color: #1e1e1e;
  font-size: 1.19rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.values-section .container .content .values-grid-boxes .value-card p {
  color: #050F33;
  font-size: 1rem;
  font-weight: 300;
}
.values-section .container .content .values-cta {
  color: #fff;
  border: 1px solid #1e1e1e;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
}

.archive.shop .products-section {
  padding-top: 40px;
}

.cta-wrapper a:hover svg path {
  stroke: #fff !important;
  fill: #fff;
}

.cta-wrapper .button:hover,
.cta-wrapper .button:focus {
  background: #1e1e1e;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.woocommerce-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.woocommerce-pagination ul.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.woocommerce-pagination ul.page-numbers li {
  background: #1e1e1e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 24px;
  width: 30px;
  height: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  border: 1px solid #1e1e1e;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.woocommerce-pagination ul.page-numbers li a,
.woocommerce-pagination ul.page-numbers li span {
  color: #fff;
  width: 100%;
  height: 100%;
  text-align: center;
  border-radius: 24px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.woocommerce-pagination ul.page-numbers li span.current {
  font-weight: 500;
  font-size: 20px;
}

.woocommerce-pagination ul.page-numbers li:hover {
  background: #fbfbfb;
}

.woocommerce-pagination ul.page-numbers li:hover a,
.woocommerce-pagination ul.page-numbers li:hover span {
  -webkit-transform: scale(1.215);
          transform: scale(1.215);
  color: #1e1e1e;
}

form.woocommerce-ordering select.orderby {
  font-family: "Gotham", sans-serif;
  padding: 8px 16px;
  border-radius: 20px;
  background: #1e1e1e;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #ccc;
  color: #fff;
  font-size: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: 0.34s ease-in-out;
  transition: 0.34s ease-in-out;
}

form.woocommerce-ordering select.orderby:focus {
  border-color: #fff;
  outline: none;
}

form.woocommerce-ordering select option {
  -webkit-transition: 0.34s ease-in-out;
  transition: 0.34s ease-in-out;
}

.shop-sec h4.widget-title {
  display: -webkit-box;
  display: -ms-flexbox;
  font-size: 18px;
  display: flex;
  gap: 12px;
  font-weight: 500;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  padding-bottom: 16px;
  border-bottom: 2px solid #1e1e1e;
}

.shop-sec .wpc-filter-title {
  font-family: "Gotham", sans-serif;
  font-size: 17px;
  color: #1e1e1e;
  font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 1px solid #1e1e1e;
  margin-bottom: 20px;
}

.wpc-filters-section {
  margin-bottom: 0 !important;
}

.wpc-filters-scroll-container .wpc-filters-widget-wrapper {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  will-change: transform;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 18px 0 14px;
  z-index: 100;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.header--hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  z-index: -1;
}
.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  width: 100%;
  height: 100%;
}
.header .container .content .top {
  position: relative;
  z-index: 11;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header .container .content .top .logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
}
.header .container .content .top .logo img {
  width: 100%;
  max-width: 170px;
}
.header .container .content .top .logo span {
  font-family: "Gotham", sans-serif;
}
.header .container .content .bottom {
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding: 14px 0;
  z-index: 1;
}
.header .container .content .bottom .nav {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  position: relative;
}
.header .container .content .bottom .nav::after {
  content: "";
  position: absolute;
  bottom: 50%;
  right: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 200%;
  height: 100%;
  background: #fff;
  opacity: 0;
  z-index: 11;
  border-radius: 0 20px 0 20px;
}
.header .container .content .bottom .nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.header .container .content .bottom .nav ul li a {
  font-size: 16px;
  position: relative;
  font-family: "Gotham", sans-serif;
  font-weight: 300;
  color: #050F33;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header .container .content .bottom .nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #050F33;
  width: 100%;
  height: 2px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.header .container .content .bottom .nav ul li a:hover {
  color: #1e1e1e;
}
.header .container .content .bottom .nav ul li a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.header .container .content .bottom .cart-btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .container .content .bottom .cart-btn-wrapper .cart-btn {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  background: #E8E8E8;
  color: #1e1e1e;
  border: none;
  padding: 6px 12px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.0666666667);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.0666666667);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  cursor: pointer;
}
.header .container .content .bottom .cart-btn-wrapper .cart-btn span {
  color: #1e1e1e;
}
.header .container .content .bottom .cart-btn-wrapper .cart-btn .cart-icon {
  padding: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.header .container .content .bottom .cart-btn-wrapper .cart-btn .cart-icon .text-count {
  height: 18px;
  width: 18px;
  font-size: 11px;
  line-height: 18px;
  position: absolute;
  left: 50%;
  text-align: center;
  top: 58%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 0;
  border-radius: 50%;
  z-index: 4;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  background: #F3EFE9;
}
.header .container .content .bottom .cart-btn-wrapper .cart-btn span, .header .container .content .bottom .cart-btn-wrapper .cart-btn svg, .header .container .content .bottom .cart-btn-wrapper .cart-btn path, .header .container .content .bottom .cart-btn-wrapper .cart-btn defs, .header .container .content .bottom .cart-btn-wrapper .cart-btn linearGradient, .header .container .content .bottom .cart-btn-wrapper .cart-btn stop {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.header .container .content .bottom .cart-btn-wrapper .cart-btn:hover {
  background: rgba(30, 30, 30, 0.1882352941);
}
.header .container .content .bottom .cart-btn-wrapper .cart-btn:hover span {
  color: #1e1e1e;
}
.header .container .content .bottom .mobile-burg {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 52px;
  height: 52px;
  visibility: visible;
  opacity: 1;
}
.header .container .content .bottom .mobile-burg #burger-menu {
  width: 40px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header .container .content .bottom .mobile-burg #burger-menu:hover {
  height: 30px;
}
.header .container .content .bottom .mobile-burg #burger-menu span {
  display: block;
  height: 5px;
  width: 100%;
  background: #050F33;
  border-radius: 5px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header .container .content .bottom .mobile-burg #burger-menu.open span:nth-child(1) {
  -webkit-transform: translateY(20px) rotate(45deg);
          transform: translateY(20px) rotate(45deg);
}
.header .container .content .bottom .mobile-burg #burger-menu.open span:nth-child(2) {
  opacity: 0;
}
.header .container .content .bottom .mobile-burg #burger-menu.open span:nth-child(3) {
  -webkit-transform: translateY(-12px) rotate(-45deg);
          transform: translateY(-12px) rotate(-45deg);
}
.header.open {
  height: 100% !important;
}
.header.open .container {
  height: 100%;
}
.header.open .container .content {
  height: 100%;
}
.header.open .container .content .top {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header.open .container .content .bottom {
  height: 100%;
}
.header.open .container .content .bottom .nav {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
.header.open .container .content .bottom .nav ul {
  opacity: 1;
}
.header.open .container .content .header-nav .left,
.header.open .container .content .header-nav .right {
  height: 100%;
  opacity: 1;
  left: 0;
  visibility: visible;
}
.header.open .container .content .header-nav .left.forMob,
.header.open .container .content .header-nav .right.forMob {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0px;
  left: 0;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
  z-index: -25;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 998px) {
  .header {
    height: 200px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .header .container .content {
    height: 0%;
  }
  .header .container .content .bottom {
    -webkit-box-align: self-start;
        -ms-flex-align: self-start;
            align-items: self-start;
    height: 100px;
  }
  .header .container .content .bottom .nav {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 70px;
  }
  .header .container .content .bottom .nav ul {
    opacity: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header .container .content .bottom .mobile-burg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    width: 40px;
    height: 40px;
    visibility: visible;
    opacity: 1;
    left: 20px;
    top: 30px;
  }
  .header .container .content .bottom .mobile-burg #burger-menu {
    width: 40px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    cursor: pointer;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .header .container .content .bottom .mobile-burg #burger-menu:hover {
    height: 30px;
  }
  .header .container .content .bottom .mobile-burg #burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background: #050F33;
    border-radius: 5px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .header .container .content .bottom .mobile-burg #burger-menu.open span:nth-child(1) {
    -webkit-transform: translateY(20px) rotate(45deg);
            transform: translateY(20px) rotate(45deg);
  }
  .header .container .content .bottom .mobile-burg #burger-menu.open span:nth-child(2) {
    opacity: 0;
  }
  .header .container .content .bottom .mobile-burg #burger-menu.open span:nth-child(3) {
    -webkit-transform: translateY(-12px) rotate(-45deg);
            transform: translateY(-12px) rotate(-45deg);
  }
  .header .container .content .bottom .cart-btn-wrapper .cart-btn {
    background: transparent;
    border: 2px solid #888D7B;
    right: 20px;
    top: 25px;
    -webkit-transform: initial;
    transform: initial;
	  font-size: 12px;
  }
}
@media (min-width: 992px) {
  .header .nav {
    position: static;
    opacity: 1 !important;
    pointer-events: all !important;
    background: none;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    font-size: 1rem;
  }
}
.footer {
  background: #B0A99F;
  color: #fff;
  padding: 40px 0;
}
.footer .logo {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 0.9rem;
}
.footer .logo span {
  font-family: serif;
}
.footer .footer-contact {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}
.footer .footer-contact a {
  color: #f3eecd;
  text-decoration: underline;
}
.footer .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
  width: 100%;
}
.footer .container .content .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer .container .content .top .footer-logo h5 img {
  max-width: 100%;
  height: auto;
}
.footer .container .content .middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.footer .container .content .middle .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 40%;
      -ms-flex: 40%;
          flex: 40%;
}
.footer .container .content .middle .left .footer-ct-intro h6 {
  font-family: "Gotham", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}
.footer .container .content .middle .left .footer-ct-intro p {
  font-family: "Gotham", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}
.footer .container .content .middle .left .footer-ct-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}
.footer .container .content .middle .left .footer-ct-boxes .footer-ct-boxe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.footer .container .content .middle .left .footer-ct-boxes .footer-ct-boxe .footer-ct-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.footer .container .content .middle .left .footer-ct-boxes .footer-ct-boxe .footer-ct-icon svg {
  -webkit-transform: scale(0.81);
          transform: scale(0.81);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.footer .container .content .middle .left .footer-ct-boxes .footer-ct-boxe a {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.footer .container .content .middle .left .footer-ct-boxes .footer-ct-boxe:hover a {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.footer .container .content .middle .left .footer-ct-boxes .footer-ct-boxe:hover svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.footer .container .content .middle .left .footer-ct-boxes .footer-socials {
  margin-top: 1rem;
}
.footer .container .content .middle .left .footer-ct-boxes .footer-socials ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
  list-style: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .container .content .middle .left .footer-ct-boxes .footer-socials ul li a {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.footer .container .content .middle .left .footer-ct-boxes .footer-socials ul li a svg {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.footer .container .content .middle .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 60%;
      -ms-flex: 60%;
          flex: 60%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 32px;
}
.footer .container .content .middle .right .footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.footer .container .content .middle .right .footer-nav h4 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
}
.footer .container .content .middle .right .footer-nav h4 a {
  color: #fff;
}
.footer .container .content .middle .right .footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.footer .container .content .middle .right .footer-nav ul li a {
  text-decoration: none;
  color: #fff;
  position: relative;
}
.footer .container .content .middle .right .footer-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#fbffef), to(#E3DACB));
  background: linear-gradient(90deg, #fbffef 0%, #E3DACB 100%);
  border-radius: 0 20px 0 20px;
  -webkit-transition: all 0.32s ease-in-out;
  transition: all 0.32s ease-in-out;
}
.footer .container .content .middle .right .footer-nav ul li:hover a {
  color: #fff;
}
.footer .container .content .middle .right .footer-nav ul li:hover a::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.footer .container .content .middle .right .footer-nav.uppercase {
  height: 100%;
}
.footer .container .content .middle .right .footer-nav.uppercase ul {
  height: 100%;
  -webkit-box-pack: initial;
      -ms-flex-pack: initial;
          justify-content: initial;
  gap: 34px;
}
.footer .container .content .middle .right .footer-nav.uppercase ul li a {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 20px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.footer .container .content .middle .right .footer-nav-boxes {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer .container .content .bottom .footer-bottom {
  text-align: center;
  padding-top: 18px;
  border-top: 2px solid #C7C0B5;
}
.footer .container .content .bottom .footer-bottom span {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.ctc-sec .contact-boxe,
.ctc-sec .contact-boxe-title,
.ctc-sec .contact-boxe-desc,
.ctc-sec .contact-boxe-cta,
.ctc-sec .contact-boxe-rs-link,
.ctc-sec .contact-boxe-map {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.cllc-hero-sec .cllc-hero-title,
.ctc-sec .ctc-hero-title {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.hero-section {
  margin: 0 auto;
  height: auto;
  overflow: hidden;
  padding: 170px 0 40px;
}
.hero-section .container {
  padding: 0;
}
.hero-section .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.hero-section .container .content .hero-slider {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.hero-section .container .content .hero-slider .splide__track {
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 620px !important;
  overflow: visible !important;
}
.hero-section .container .content .hero-slider .splide__track .splide__slide .slide-index-badge {
  pointer-events: none;
  z-index: 59;
  position: absolute;
}
.hero-section .container .content .hero-slider .splide__track .splide__list {
  height: 620px !important;
  /* Effet de peek personnalisé */
}
.hero-section .container .content .hero-slider .splide__track .splide__list .splide__slide {
  border-radius: 24px;
  height: 100%;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  overflow: hidden;
  opacity: 0.5;
  background: #ece8df;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  border-radius: 24px;
  -webkit-filter: grayscale(0.7);
          filter: grayscale(0.7);
  z-index: 1;
  -webkit-transition: all 0.23s ease-in-out;
  transition: all 0.23s ease-in-out;
}
.hero-section .container .content .hero-slider .splide__track .splide__list .splide__slide.is-active {
  -webkit-filter: none;
          filter: none;
  opacity: 1;
  z-index: 2;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.hero-section .container .content .hero-slider .splide__track .splide__list .splide__slide.splide__slide.is-prev, .hero-section .container .content .hero-slider .splide__track .splide__list .splide__slide.splide__slide.is-next {
  -webkit-filter: blur(3px);
          filter: blur(3px);
  opacity: 0.86;
  z-index: 1;
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}
.hero-section .container .content .hero-slider .splide__track .splide__list .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hero-section .container .content .hero-slider .splide__track .splide__list .splide__slide:not(.is-active) {
  pointer-events: none;
}
.hero-section .container .content .hero-slider .splide__arrows {
  position: static !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.hero-section .container .content .hero-slider .splide__arrows button.splide__arrow {
  margin: 0;
  padding: 8px 14px;
  width: 50px;
  height: 80px;
  background: #fff;
  border: 2px solid #949985;
  border-radius: 40px;
  color: #949985;
  font-size: 1.2rem;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.hero-section .container .content .hero-slider .splide__arrows button.splide__arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200%;
  background: #fff;
  z-index: -1;
  border-radius: 0 20px 0 20px;
}
.hero-section .container .content .hero-slider .splide__arrows button.splide__arrow:hover {
  color: #fff;
  border-color: #050F33;
}
.hero-section .container .content .hero-slider .splide__arrows button.splide__arrow:hover svg path {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.hero-section .container .content .hero-slider .splide__arrows button.splide__arrow svg {
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  fill: #fff;
  height: initial;
  width: initial;
}
.hero-section .container .content .hero-slider .splide__arrows button.splide__arrow svg path {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.hero-section .container .content .hero-slider .splide__arrows .splide__arrow--next {
  -webkit-transform: rotate(180deg) translateY(50%);
          transform: rotate(180deg) translateY(50%);
}
.hero-section .container .content .slider-cta-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 15;
}
.hero-section .container .content .slider-cta-wrap .shape-wrap {
  position: absolute;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  bottom: 0;
}
.hero-section .container .content .slider-cta-wrap .hero-cta {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 460px;
}

.about-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  padding: 80px 0 40px;
}
@media (max-width: 900px) {
  .about-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
.about-section .container .content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.about-section .container .content .about-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}
.about-section .container .content .about-wrapper .left {
  min-height: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
}
.about-section .container .content .about-wrapper .left .about-sec-img-boxe {
  overflow: hidden;
  width: 100%;
  border-radius: 37px;
  background-color: transparent;
  position: relative;
}
.about-section .container .content .about-wrapper .left .about-sec-img-boxe .about-sec-img {
  border-radius: 37px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.about-section .container .content .about-wrapper .left .about-sec-img-boxe img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.about-section .container .content .about-wrapper .left .about-sec-img-boxe .curved-shape {
  position: absolute;
  z-index: 2;
  left: -3px;
  bottom: -3px;
  border-radius: 24px;
  width: 480px;
}
.about-section .container .content .about-wrapper .left .about-sec-img-boxe h2 {
  font-family: "Gotham", sans-serif;
  font-size: 48px;
  line-height: 58px;
  color: #050F33;
  text-transform: uppercase;
  position: absolute;
  bottom: 23px;
  left: 14px;
  z-index: 3;
}
.about-section .container .content .about-wrapper .left .about-sec-img-boxe h2 span {
  font-size: 40px;
  color: #949985;
}
.about-section .container .content .about-wrapper .left .about-sec-img-boxe::after {
  display: none;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 51%;
  height: 19%;
  background: #fff;
  border-radius: 0 20px 0 20px;
}
.about-section .container .content .about-wrapper .left .about-sec-img-boxe::before {
  display: none;
  content: "";
  position: absolute;
  bottom: 10%;
  right: 49%;
  width: 13%;
  height: 9%;
  background: #fff;
  border-radius: 0 20px 0 20px;
}
.about-section .container .content .about-wrapper .right {
	min-height: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.about-section .container .content .about-wrapper .right .bottom .bottom-wrapper .bottom-img-boxe img {
	min-height: 550px;
}
.about-section .container .content .about-wrapper .right .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  background: #F4F1EF;
  padding: 24px;
  border-radius: 37px;
  height: 35%;
}
.about-section .container .content .about-wrapper .right .top .about-sub-title span {
  color: #050F33;
  font-family: "Gotham", sans-serif;
  font-weight: 600;
  font-size: 32px;
}
.about-section .container .content .about-wrapper .right .top .about-sub-title p {
  color: #050F33;
  font-family: "Gotham", sans-serif;
  font-weight: 300;
  font-size: 18px;
}
.about-section .container .content .about-wrapper .right .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  border-radius: 37px;
  overflow: hidden;
  height: 100%;
}
.about-section .container .content .about-wrapper .right .bottom .bottom-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  width: 100%;
  height: 100%;
  position: relative;
}
.about-section .container .content .about-wrapper .right .bottom .bottom-wrapper .curved-shape {
  position: absolute;
  z-index: 2;
  right: -4px;
  top: -3px;
  border-radius: 24px;
  width: 400px;
}
.about-section .container .content .about-wrapper .right .bottom .bottom-wrapper .curved-shape img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-section .container .content .about-wrapper .right .bottom .bottom-wrapper .bottom-img-boxe {
  width: 100%;
  height: 100%;
}
.about-section .container .content .about-wrapper .right .bottom .bottom-wrapper .bottom-img-boxe img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
.about-section .container .content .hero-cta {
  position: relative;
  z-index: 5;
  text-transform: uppercase;
  padding: 20px 16px;
  -ms-flex-item-align: center;
      align-self: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.about-section .container .content .hero-cta span {
  font-weight: 500;
}
.about-section .about-img {
  position: relative;
}
.about-section .about-img img {
  width: 330px;
  border-radius: 20px;
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.0666666667);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.0666666667);
}
@media (max-width: 700px) {
  .about-section .about-img img {
    width: 100%;
  }
}
.about-section .about-img .about-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(236, 232, 223, 0.8);
  color: #7b7b5d;
  padding: 0.5rem 1.3rem;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
}
.about-section .about-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.about-section .about-content .about-card {
  background: #ece8df;
  border-radius: 18px;
  padding: 2.3rem 2rem;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.0666666667);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.0666666667);
}
.about-section .about-content .about-card .about-tag {
  font-size: 0.96rem;
  color: #b7b769;
  background: #f8f7f5;
  padding: 0.4rem 1rem;
  border-radius: 14px;
  margin-bottom: 0.6rem;
  display: inline-block;
}
.about-section .about-content .about-card h2 {
  margin: 0.3rem 0 1rem 0;
  font-size: 1.7rem;
  color: #7b7b5d;
}
.about-section .about-content .about-card p {
  font-size: 1.08rem;
  margin-bottom: 1.5rem;
}
.about-section .about-content .about-card .about-cta {
  background: #7b7b5d;
  color: #fff;
  border: none;
  padding: 0.7rem 2rem;
  border-radius: 20px;
  font-weight: 600;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.about-section .about-content .about-card .about-cta:hover {
  background: #5e5e45;
}

.products-section {
  overflow: hidden;
  background: #fff;
  padding: 40px 0 100px;
}
.products-section .products-header {
  text-align: center;
  margin-bottom: 0;
}
.products-section .products-header .products-header-title {
  font-size: 40px;
  line-height: 50px;
  color: #1e1e1e;
  font-weight: 400;
  letter-spacing: 1.2px;
}
.products-section .products-header p {
  color: #1e1e1e;
  font-size: 18px;
  font-weight: 300;
}
.products-section .products-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
.products-section .products-slider .splide__track {
  overflow: visible;
}
.products-section .products-slider .splide__list {
  gap: 16px;
}
.products-section .products-slider .splide__list .splide__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 !important;
  -webkit-transition: all 0.42s ease-in-out;
  transition: all 0.42s ease-in-out;
}
.products-section .products-slider .splide__list .splide__slide .product-item {
  cursor: pointer;
  width: 100%;
  background: transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  -webkit-transition: all 0.42s ease-in-out;
  transition: all 0.42s ease-in-out;
}
.products-section .products-slider .splide__list .splide__slide .product-item::before {
  content: "";
  position: absolute;
  bottom: -50%;
  z-index: 4;
  left: 50%;
  width: 200%;
  height: 45%;
  background: #fff;
  -webkit-transform: translateX(-50%) scaleX(0.8);
          transform: translateX(-50%) scaleX(0.8);
  -webkit-transform-origin: center;
          transform-origin: center;
  border-radius: 50%;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.products-section .products-slider .splide__list .splide__slide .product-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#8a907d), to(rgba(5, 15, 51, 0.3019607843)));
  background: linear-gradient(180deg, #8a907d 0%, rgba(5, 15, 51, 0.3019607843) 100%);
  z-index: 1;
  opacity: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.products-section .products-slider .splide__list .splide__slide .product-item.active, .products-section .products-slider .splide__list .splide__slide .product-item:hover {
  border-color: transparent;
}
.products-section .products-slider .splide__list .splide__slide .product-item .product-img-boxe {
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.products-section .products-slider .splide__list .splide__slide .product-item .product-img-boxe::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#f5f2ed), to(#FFFFFF));
  background: linear-gradient(180deg, #f5f2ed 0%, #FFFFFF 100%);
  z-index: 1;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.products-section .products-slider .splide__list .splide__slide .product-item .product-img-boxe::before {
  content: "";
  position: absolute;
  bottom: 26px;
  left: 50%;
  width: 50%;
  height: 40px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #73796B;
  border-radius: 50px;
  -webkit-filter: blur(16px);
          filter: blur(16px);
  z-index: 2;
  pointer-events: none;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.products-section .products-slider .splide__list .splide__slide .product-item .product-img-boxe img {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: transparent;
  margin: 0;
  z-index: 2;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
  -webkit-box-shadow: 0 0 32px 0 rgba(115, 121, 107, 0.37);
          box-shadow: 0 0 32px 0 rgba(115, 121, 107, 0.37);
}
.products-section .products-slider .splide__list .splide__slide .product-item .product-info-boxe {
  position: relative;
  overflow: hidden;
  z-index: 12;
  text-align: center;
  background: transparent;
  padding: 40px 22px 20px 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.products-section .products-slider .splide__list .splide__slide .product-item .product-info-boxe::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -103%;
  width: 100%;
  height: 200px;
  background: rgba(149, 182, 210, 0.2117647059);
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.products-section .products-slider .splide__list .splide__slide .product-item .product-info-boxe .product-ref {
  color: #1e1e1e;
  font-size: 1.25rem;
  font-weight: 500;
}
.products-section .products-slider .splide__list .splide__slide .product-item .product-info-boxe .product-price {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 300;
  padding-bottom: 5px;
  color: #1e1e1e;
  line-height: 24px;
  position: relative;
  overflow: hidden;
}
.products-section .products-slider .splide__list .splide__slide .product-item .product-info-boxe .product-price span:last-of-type {
  color: #A0A0A0;
  font-weight: 300;
}
.products-section .products-slider .splide__list .splide__slide .product-item .product-info-boxe .product-price::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 4px;
  background: #050F33;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.products-section .products-slider .splide__list .splide__slide .product-item .product-info-boxe .add-to-cart {
  margin-top: 20px;
  font-family: "Gotham", sans-serif;
  background: #fff;
  color: #1e1e1e;
  border: 2px solid #1e1e1e;
  border-radius: 22px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-transform: uppercase;
  -webkit-transition: all 0.48s ease-in-out;
  transition: all 0.48s ease-in-out;
  cursor: pointer;
}
.products-section .products-slider .splide__list .splide__slide .product-item .product-info-boxe .add-to-cart svg, .products-section .products-slider .splide__list .splide__slide .product-item .product-info-boxe .add-to-cart path {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.products-section .products-slider .splide__list .splide__slide .product-item .product-info-boxe .add-to-cart span {
  display: block;
}
.products-section .products-slider .splide__list .splide__slide .product-item .product-info-boxe .add-to-cart .cart-icon {
  width: 22px;
  height: 22px;
}
.products-section .products-slider .splide__list .splide__slide .product-item .product-info-boxe .add-to-cart .addToCart-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.products-section .products-slider .splide__list .splide__slide .product-item .product-info-boxe .add-to-cart:hover {
  border-color: #1e1e1e;
}
.products-section .products-slider .splide__list .splide__slide .product-item .product-info-boxe .add-to-cart:hover svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.products-section .products-slider .splide__list .splide__slide .product-item:hover::after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.products-section .products-slider .splide__list .splide__slide .product-item:hover::before {
  bottom: -30px;
  -webkit-transform: scale(1);
  transform: scale(1.4) translateX(-50%);
}
.products-section .products-slider .splide__list .splide__slide .product-item:hover .product-img-boxe img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.products-section .products-slider .splide__list .splide__slide .product-item:hover .product-img-boxe::after {
  opacity: 0;
}
.products-section .products-slider .splide__list .splide__slide .product-item:hover .product-img-boxe::before {
  background: rgba(115, 121, 107, 0.77);
}
.products-section .products-slider .splide__list .splide__slide .product-item:hover .product-info-boxe::after {
  background: rgba(149, 182, 210, 0.2117647059);
  opacity: 0;
}
.products-section .products-slider .splide__list .splide__slide .product-item:hover .product-info-boxe .product-price::after {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.products-section .products-slider .splide__list .splide__slide .product-item:hover .product-info-boxe .add-to-cart {
  background: #1e1e1e;
  color: #fff;
}
.products-section .products-slider .splide__list .splide__slide .product-item:hover .product-info-boxe .add-to-cart .addToCart-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.products-section .products-slider .splide__list .splide__slide .product-item:hover .product-info-boxe .add-to-cart .addToCart-icon svg path[stroke="#ffffff"] {
  stroke: #1e1e1e;
}
.products-section .products-slider .splide__list .splide__slide .product-item:hover .product-info-boxe .add-to-cart .addToCart-icon svg path[stroke="#1e1e1e"] {
  stroke: #fff;
}
.products-section .products-slider .splide__list .splide__slide .product-item:hover .product-info-boxe .add-to-cart:hover {
  border-color: #1e1e1e;
}
.products-section .products-slider .splide__list .splide__slide .product-item:hover .product-info-boxe .add-to-cart:hover svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.products-section .products-slider .splide__list .splide__slide .products-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.products-section .products-slider .splide__arrows {
  position: static !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.products-section .products-slider .splide__arrows .splide__arrow--prev {
  border: none;
}
.products-section .products-slider .splide__arrows .splide__arrow {
  width: 3em;
  height: 3em;
}
.products-section .products-slider .splide__arrows button.cust-arrow {
  position: static !important;
  -webkit-transform: none !important;
          transform: none !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  margin: 0;
  padding: 8px 14px;
  width: 50px;
  height: 40px;
  background: #fff;
  border: 2px solid #949985;
  border-radius: 40px;
  color: #949985;
  font-size: 1.2rem;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.products-section .products-slider .splide__arrows button.cust-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200%;
  background: red;
  border-radius: 0 20px 0 20px;
}
.products-section .products-slider .splide__arrows button.cust-arrow:hover {
  background: #050F33;
  color: #fff;
  border-color: #050F33;
}
.products-section .products-slider .splide__arrows button.cust-arrow:hover svg path {
  fill: #ced9bd;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.products-section .products-slider .splide__arrows button.cust-arrow svg path {
  fill: #949985;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.abt-hero-sec {
  padding-top: 200px;
}
.abt-hero-sec .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
.abt-hero-sec .container .content .abt-hero-title h1 {
  font-family: "Gotham", sans-serif;
  color: #1e1e1e;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
  font-size: 58px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}
.abt-hero-sec .container .content .abt-hero-boxe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.abt-hero-sec .container .content .abt-hero-boxe .left {
  height: 500px;
}
.abt-hero-sec .container .content .abt-hero-boxe .left img {
  border-radius: 24px;
  width: 100%;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.abt-hero-sec .container .content .abt-hero-boxe .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  height: 100%;
}
.abt-hero-sec .container .content .abt-hero-boxe .right h2 {
  color: #050F33;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 48px;
  line-height: 58px;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
  margin-bottom: 24px;
}
.abt-hero-sec .container .content .abt-hero-boxe .right p {
  color: #050F33;
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
}
.abt-hero-sec .container .content .abt-hero-boxe:last-of-type {
  margin-top: 60px;
}

.apropos .values-section {
  background: #fff;
}

.categ-hero-sec {
  padding: 200px 0 80px 0;
}
.categ-hero-sec .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  width: 95%;
  margin: 0 auto;
}
.categ-hero-sec .container .content .categ-hero-title h1 {
  width: 100%;
  font-family: "Gotham", sans-serif;
  color: #1e1e1e;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
  font-size: 58px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: left;
}
.categ-hero-sec .container .content .categ-hero-boxe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.categ-hero-sec .container .content .categ-hero-boxe .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: auto;
  overflow: hidden;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fefefe;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 24px;
}
.categ-hero-sec .container .content .categ-hero-boxe .left img {
  max-width: 100%;
  height: 650px;
  border-radius: 24px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.categ-hero-sec .container .content .categ-hero-boxe .left .categ-hero-title {
  display: none;
}
.categ-hero-sec .container .content .categ-hero-boxe .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 42px;
  padding-top: 0px;
}
.categ-hero-sec .container .content .categ-hero-boxe .right p {
  color: #050F33;
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
}
.categ-hero-sec .container .content .categ-hero-boxe .right .collection-cta {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.categ-hero-sec .container .content .categ-hero-boxe .right .collection-cta span {
  text-transform: uppercase;
}

.lookbook-section .container .content .bottom .lookbook-tabs {
  border: none;
}

.products-section.category-single .container .content .products-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 52px;
}
.products-section.category-single .container .content .products-row .fenny-related-title {
  text-transform: uppercase;
}
.products-section.category-single .container .content .products-row .products-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1FR);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 50px;
}
.products-section.category-single .container .content .products-row .products-list .product-item {
  cursor: pointer;
  width: 100%;
  background: transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  -webkit-transition: all 0.42s ease-in-out;
  transition: all 0.42s ease-in-out;
}
.products-section.category-single .container .content .products-row .products-list .product-item::before {
  content: "";
  position: absolute;
  bottom: -50%;
  z-index: 4;
  left: 50%;
  width: 200%;
  height: 45%;
  background: #fff;
  -webkit-transform: translateX(-50%) scaleX(0.8);
          transform: translateX(-50%) scaleX(0.8);
  -webkit-transform-origin: center;
          transform-origin: center;
  border-radius: 50%;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.products-section.category-single .container .content .products-row .products-list .product-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#8a907d), to(rgba(5, 15, 51, 0.3019607843)));
  background: linear-gradient(180deg, #8a907d 0%, rgba(5, 15, 51, 0.3019607843) 100%);
  z-index: 1;
  opacity: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.products-section.category-single .container .content .products-row .products-list .product-item.active, .products-section.category-single .container .content .products-row .products-list .product-item:hover {
  border-color: transparent;
}
.products-section.category-single .container .content .products-row .products-list .product-item .product-img-boxe {
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.products-section.category-single .container .content .products-row .products-list .product-item .product-img-boxe::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#f5f2ed), to(#FFFFFF));
  background: linear-gradient(180deg, #f5f2ed 0%, #FFFFFF 100%);
  z-index: 1;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.products-section.category-single .container .content .products-row .products-list .product-item .product-img-boxe::before {
  content: "";
  position: absolute;
  bottom: 26px;
  left: 50%;
  width: 50%; 
  height: 40px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #73796B;
  border-radius: 50px;
  -webkit-filter: blur(36px);
          filter: blur(36px); 
  z-index: 2;
  pointer-events: none;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.products-section.category-single .container .content .products-row .products-list .product-item .product-img-boxe img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  background: transparent;
  margin: 0;
  z-index: 2;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
  -webkit-box-shadow: 0 0 32px 0 rgba(115, 121, 107, 0.37);
          box-shadow: 0 0 32px 0 rgba(115, 121, 107, 0.37);
}
.products-section.category-single .container .content .products-row .products-list .product-item .product-info-boxe {
  position: relative;
  overflow: hidden;
  z-index: 12;
  text-align: center;
  background: transparent;
  padding: 40px 22px 20px 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.products-section.category-single .container .content .products-row .products-list .product-item .product-info-boxe::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -103%;
  width: 100%;
  height: 200px;
  background: rgba(149, 182, 210, 0.2117647059);
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.products-section.category-single .container .content .products-row .products-list .product-item .product-info-boxe .product-ref {
  color: #050F33;
  font-size: 1.25rem;
  font-weight: 500;
}
.products-section.category-single .container .content .products-row .products-list .product-item .product-info-boxe .product-price {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 300;
  color: #1e1e1e;
  line-height: 24px;
}
.products-section.category-single .container .content .products-row .products-list .product-item .product-info-boxe .add-to-cart {
  margin-top: 20px;
  font-family: "Gotham", sans-serif;
  background: #fff;
  color: #1e1e1e;
  border: 2px solid #1e1e1e;
  border-radius: 22px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-transform: uppercase;
  -webkit-transition: all 0.18s ease-in-out;
  transition: all 0.18s ease-in-out;
  cursor: pointer;
}
.products-section.category-single .container .content .products-row .products-list .product-item .product-info-boxe .add-to-cart span {
  display: block;
}
.products-section.category-single .container .content .products-row .products-list .product-item .product-info-boxe .add-to-cart .cart-icon {
  width: 22px;
  height: 22px;
}
.products-section.category-single .container .content .products-row .products-list .product-item .product-info-boxe .add-to-cart:hover {
  background: #A3A37D;
  color: #fff;
  border-color: #A3A37D;
}
.products-section.category-single .container .content .products-row .products-list .product-item .product-info-boxe .add-to-cart .addToCart-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.products-section.category-single .container .content .products-row .products-list .product-item .add-to-cart svg, .products-section.category-single .container .content .products-row .products-list .product-item .add-to-cart path {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.products-section.category-single .container .content .products-row .products-list .product-item:hover::after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.products-section.category-single .container .content .products-row .products-list .product-item:hover::before {
  bottom: -30px;
  -webkit-transform: scale(1);
  transform: scale(1.4) translateX(-50%);
}
.products-section.category-single .container .content .products-row .products-list .product-item:hover .product-img-boxe img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.products-section.category-single .container .content .products-row .products-list .product-item:hover .product-img-boxe::after {
  opacity: 0;
}
.products-section.category-single .container .content .products-row .products-list .product-item:hover .product-img-boxe::before {
  background: rgba(115, 121, 107, 0.77);
}
.products-section.category-single .container .content .products-row .products-list .product-item:hover .product-info-boxe::after {
  background: rgba(149, 182, 210, 0.2117647059);
  opacity: 0;
}
.products-section.category-single .container .content .products-row .products-list .product-item:hover .product-info-boxe .product-price::after {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.products-section.category-single .container .content .products-row .products-list .product-item:hover .product-info-boxe .add-to-cart {
  background: #1e1e1e;
  color: #fff;
}
.products-section.category-single .container .content .products-row .products-list .product-item:hover .product-info-boxe .add-to-cart .addToCart-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.products-section.category-single .container .content .products-row .products-list .product-item:hover .product-info-boxe .add-to-cart .addToCart-icon svg path[stroke="#ffffff"] {
  stroke: #1e1e1e;
}
.products-section.category-single .container .content .products-row .products-list .product-item:hover .product-info-boxe .add-to-cart .addToCart-icon svg path[stroke="#1e1e1e"] {
  stroke: #fff;
}
.products-section.category-single .container .content .products-row .products-list .product-item:hover .product-info-boxe .add-to-cart:hover {
  border-color: #1e1e1e;
}
.products-section.category-single .container .content .products-row .products-list .product-item:hover .product-info-boxe .add-to-cart:hover svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.products-section.category-single .container .content .products-row .products-list:has(.product-item:nth-child(1):last-child) .product-item:nth-child(1) {
  grid-column: 2/4;
}
.products-section.category-single .container .content .products-row .products-list:has(.product-item:nth-child(2):last-child) .product-item:nth-child(1) {
  grid-column: 2;
}
.products-section.category-single .container .content .products-row .products-list:has(.product-item:nth-child(2):last-child) .product-item:nth-child(2) {
  grid-column: 3;
}
.products-section.category-single .container .content .products-row .products-list:has(.product-item:nth-child(3):last-child) .product-item:nth-child(1) {
  grid-column: 1;
}
.products-section.category-single .container .content .products-row .products-list:has(.product-item:nth-child(3):last-child) .product-item:nth-child(2) {
  grid-column: 2;
}
.products-section.category-single .container .content .products-row .products-list:has(.product-item:nth-child(3):last-child) .product-item:nth-child(3) {
  grid-column: 3;
}
.products-section.category-single .container .content .products-row .products-list.center-items {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 1048px;
  margin: 0 auto;
}
.products-section.category-single .container .content .products-list-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.products-section.category-single .container .content .products-list-cta .green-cta {
  outline: none;
}

.cllc-hero-sec {
  padding-top: 200px;
  padding-bottom: 70px;
}
.cllc-hero-sec .container .content {
  max-width: 85%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 52px;
}
.cllc-hero-sec .container .content .cllc-hero-title {
  font-family: "Gotham", sans-serif;
  color: #1e1e1e;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
  font-size: 58px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}
.cllc-hero-sec .container .content p {
  font-family: "Gotham", sans-serif;
  color: #1e1e1e;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  text-align: center;
  margin: 0 auto;
}

.collections-section .container .content .collections-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.collections-section .container .content .collections-row .collections-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 16px;
  overflow: hidden;
}
.collections-section .container .content .collections-row .collections-list .collections-item {
  cursor: pointer;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  background: transparent;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  border: 2px solid transparent;
  -webkit-transition: all 0.42s ease-in-out;
  transition: all 0.42s ease-in-out;
}
.collections-section .container .content .collections-row .collections-list .collections-item.active, .collections-section .container .content .collections-row .collections-list .collections-item:hover {
  border-color: transparent;
}
.collections-section .container .content .collections-row .collections-list .collections-item .collec-img-boxe {
  width: 100%;
  height: 50%;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.collections-section .container .content .collections-row .collections-list .collections-item .collec-img-boxe::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#f5f2ed), to(#FFFFFF));
  background: linear-gradient(180deg, #f5f2ed 0%, #FFFFFF 100%);
  z-index: 1;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.collections-section .container .content .collections-row .collections-list .collections-item .collec-img-boxe::before {
  content: "";
  position: absolute;
  bottom: 26px;
  left: 50%;
  width: 50%; /* Adjust for desired spread */
  height: 40px; /* Adjust for desired spread */
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #73796B;
  border-radius: 50px; /* soft oval corners */
  -webkit-filter: blur(16px);
          filter: blur(16px); /* creates the Figma "layer blur" effect */
  z-index: 2;
  pointer-events: none;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.collections-section .container .content .collections-row .collections-list .collections-item .collec-img-boxe img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: transparent;
  margin: 0;
  z-index: 2;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
  -webkit-box-shadow: 0 0 32px 0 rgba(115, 121, 107, 0.37);
          box-shadow: 0 0 32px 0 rgba(115, 121, 107, 0.37);
}
.collections-section .container .content .collections-row .collections-list .collections-item .collec-info-boxe {
  position: relative;
  overflow: hidden;
  z-index: 12;
  text-align: center;
  background: transparent;
  padding: 40px 22px 20px 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.collections-section .container .content .collections-row .collections-list .collections-item .collec-info-boxe::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -103%;
  width: 100%;
  height: 3px;
  background: #050F33;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.collections-section .container .content .collections-row .collections-list .collections-item .collec-info-boxe::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: calc(100% - 15px);
  background: #050F33;
  -webkit-transform: scaleX(1.1) translateY(-112%);
          transform: scaleX(1.1) translateY(-112%);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: 0.52s ease-in-out;
  transition: 0.52s ease-in-out;
}
.collections-section .container .content .collections-row .collections-list .collections-item .collec-info-boxe .collec-title {
  position: relative;
  z-index: 8;
  width: 100%;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  color: #1e1e1e;
  line-height: 34px;
  font-family: "Gotham", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  text-align: left;
  -webkit-transition: all 0.38s ease-in-out;
  transition: all 0.38s ease-in-out;
}
.collections-section .container .content .collections-row .collections-list .collections-item .collec-info-boxe .collec-title span {
  -webkit-transition: all 0.38s ease-in-out;
  transition: all 0.38s ease-in-out;
  text-align: left;
}
.collections-section .container .content .collections-row .collections-list .collections-item .collec-info-boxe .collec-title .collec-title-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 0.48s ease-in-out;
  transition: all 0.48s ease-in-out;
}
.collections-section .container .content .collections-row .collections-list .collections-item .collec-info-boxe .collec-title .collec-title-icon svg, .collections-section .container .content .collections-row .collections-list .collections-item .collec-info-boxe .collec-title .collec-title-icon path {
  z-index: 4;
  -webkit-transition: all 0.48s ease-in-out;
  transition: all 0.48s ease-in-out;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.collections-section .container .content .collections-row .collections-list .collections-item .collec-info-boxe .collec-desc {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.collections-section .container .content .collections-row .collections-list .collections-item .collec-info-boxe .add-to-cart {
  margin-top: 20px;
  font-family: "Gotham", sans-serif;
  background: #fff;
  color: #1e1e1e;
  border: 2px solid #1e1e1e;
  border-radius: 22px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-transform: uppercase;
  -webkit-transition: all 0.18s ease-in-out;
  transition: all 0.18s ease-in-out;
  cursor: pointer;
}
.collections-section .container .content .collections-row .collections-list .collections-item .collec-info-boxe .add-to-cart span {
  display: block;
}
.collections-section .container .content .collections-row .collections-list .collections-item .collec-info-boxe .add-to-cart .cart-icon {
  width: 22px;
  height: 22px;
}
.collections-section .container .content .collections-row .collections-list .collections-item .collec-info-boxe .add-to-cart:hover {
  background: #A3A37D;
  color: #fff;
  border-color: #A3A37D;
}
.collections-section .container .content .collections-row .collections-list .collections-item .collec-info-boxe .add-to-cart .addToCart-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.collections-section .container .content .collections-row .collections-list .collections-item .collec-info-boxe .collec-desc, .collections-section .container .content .collections-row .collections-list .collections-item .collec-info-boxe p {
  text-align: left;
}
.collections-section .container .content .collections-row .collections-list .collections-item:hover::after {
  opacity: 1;
  -webkit-transform: scale(1.5) rotate(145deg);
          transform: scale(1.5) rotate(145deg);
}
.collections-section .container .content .collections-row .collections-list .collections-item:hover::before {
  bottom: -30px;
  -webkit-transform: scale(1);
  transform: scale(1.4) translateX(-50%);
}
.collections-section .container .content .collections-row .collections-list .collections-item:hover .collec-info-boxe::after {
  left: 0;
}
.collections-section .container .content .collections-row .collections-list .collections-item:hover .collec-info-boxe::before {
  -webkit-transform: scaleX(1.5) translateY(10%);
          transform: scaleX(1.5) translateY(10%);
}
.collections-section .container .content .collections-row .collections-list .collections-item:hover .collec-info-boxe .collec-title {
  color: #fff;
}
.collections-section .container .content .collections-row .collections-list .collections-item:hover .collec-info-boxe .collec-title .collec-title-icon svg {
  -webkit-transform: rotate(90deg) scale(1.2);
          transform: rotate(90deg) scale(1.2);
}
.collections-section .container .content .collections-row .collections-list .collections-item:hover .collec-info-boxe .collec-title .collec-title-icon svg path {
  stroke: #fff;
}
.collections-section .container .content .collections-row .collections-list .collections-item:hover .collec-info-boxe .collec-desc {
  color: #f5f2ed;
}
.collections-section .container .content .collections-row .collections-list .collections-item:hover .collec-img-boxe img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.collections-section .container .content .collections-row .collections-list .collections-item:hover .collec-img-boxe::after {
  opacity: 0;
}
.collections-section .container .content .collections-row .collections-list .collections-item:hover .collec-img-boxe::before {
  background: rgba(115, 121, 107, 0.77);
}
.collections-section .container .content .collections-row .collections-list .collections-item:hover .product-info-boxe::after {
  background: rgba(149, 182, 210, 0.2117647059);
  opacity: 0;
}
.collections-section .container .content .collections-row .collections-list .collections-item:hover .product-info-boxe .product-price::after {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.collections-section .container .content .collections-row .collections-list .collections-item:hover .product-info-boxe .add-to-cart {
  background: #1e1e1e;
  color: #fff;
}
.collections-section .container .content .collections-row .collections-list .collections-item:hover .product-info-boxe .add-to-cart .addToCart-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.collections-section .container .content .collections-row .collections-list .collections-item:hover .product-info-boxe .add-to-cart .addToCart-icon svg path[stroke="#ffffff"] {
  stroke: #1e1e1e;
}
.collections-section .container .content .collections-row .collections-list .collections-item:hover .product-info-boxe .add-to-cart .addToCart-icon svg path[stroke="#1e1e1e"] {
  stroke: #fff;
}
.collections-section .container .content .collections-row .collections-list .collections-item:hover .product-info-boxe .add-to-cart:hover {
  border-color: #1e1e1e;
}
.collections-section .container .content .collections-row .collections-list .collections-item:hover .product-info-boxe .add-to-cart:hover svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.collections-section .container .content .products-list-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.collections-section .container .content .products-list-cta .green-cta {
  outline: none;
}

.shop-hero-sec {
  padding-top: 200px;
  padding-bottom: 20px;
}
.shop-hero-sec .container .content {
  max-width: 85%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}
.shop-hero-sec .container .content .shop-hero-title {
  font-family: "Gotham", sans-serif;
  color: #1e1e1e;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
  font-size: 58px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}
.shop-hero-sec .container .content p {
  font-family: "Gotham", sans-serif;
  color: #1e1e1e;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  text-align: center;
  margin: 0 auto;
}

.produits-sec.shop-sec {
  padding: 20px 0;
}
.produits-sec.shop-sec .container.forShop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.produits-sec.shop-sec .container.forShop .filtrage {
  position: relative;
  width: 100%;
  z-index: 12;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  background: #fff;
  padding: 4px 0px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.produits-sec.shop-sec .container.forShop .content {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.produits-sec.shop-sec .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.produits-sec.shop-sec .container .content .sidebar-filters {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#fbfbfc));
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
  border-radius: 0;
  padding: 0;
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
  -webkit-box-shadow: 0 8px 30px rgba(12, 12, 12, 0.04);
          box-shadow: 0 8px 30px rgba(12, 12, 12, 0.04);
  overflow: hidden;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 360px;
          flex: 0 0 360px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.produits-sec.shop-sec .container .content .sidebar-filters .sidebar-inner {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  will-change: transform, opacity;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fbfbfc));
  background: linear-gradient(180deg, #fff, #fbfbfc);
  border-radius: 12px;
  padding: 18px;
  -webkit-box-shadow: 0 8px 30px rgba(12, 12, 12, 0.04);
          box-shadow: 0 8px 30px rgba(12, 12, 12, 0.04);
}
.produits-sec.shop-sec .container .content .sidebar-filters.hidden {
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  opacity: 0;
  pointer-events: none;
  width: 0;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  padding-right: 0;
  border-right: none;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.produits-sec.shop-sec .container .content .sidebar-filters .filter-boxe {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.produits-sec.shop-sec .container .content .sidebar-filters .filter-boxe .accordion-toggle {
  font-family: "Gotham", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #050F33;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 8px 0;
  position: relative;
}
.produits-sec.shop-sec .container .content .sidebar-filters .filter-boxe .accordion-toggle::after {
  content: "+";
  position: absolute;
  right: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.produits-sec.shop-sec .container .content .sidebar-filters .filter-boxe .accordion-toggle.active::after {
  content: "-";
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.produits-sec.shop-sec .container .content .sidebar-filters .filter-boxe .accordion-content {
  padding: 8px 0 0 4px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-animation: fadeIn 200ms ease;
          animation: fadeIn 200ms ease;
}
.produits-sec.shop-sec .container .content .sidebar-filters .filter-boxe .accordion-content label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #444;
  cursor: pointer;
}
.produits-sec.shop-sec .container .content .sidebar-filters .filter-boxe .accordion-content label input[type=checkbox] {
  accent-color: #73796B;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.produits-sec.shop-sec .container .content .sidebar-filters .filter-boxe .accordion-toggle.active + .accordion-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.produits-sec.shop-sec .container .content .produits-row {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 80px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.34s ease-in-out;
  transition: 0.34s ease-in-out;
}
.produits-sec.shop-sec .container .content .produits-row .produits-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 16px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item {
  cursor: pointer;
  width: 100%;
  background: transparent;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  border: 2px solid transparent;
  -webkit-transition: all 0.42s ease-in-out;
  transition: all 0.42s ease-in-out;
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item::before {
  content: "";
  position: absolute;
  bottom: -50%;
  z-index: 4;
  left: 50%;
  width: 200%;
  height: 45%;
  background: #fff;
  -webkit-transform: translateX(-50%) scaleX(0.8);
          transform: translateX(-50%) scaleX(0.8);
  -webkit-transform-origin: center;
          transform-origin: center;
  border-radius: 50%;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(13, 22, 56, 0)), to(rgba(5, 15, 51, 0.07)));
  background: linear-gradient(180deg, rgba(13, 22, 56, 0) 0%, rgba(5, 15, 51, 0.07) 100%);
  z-index: 1;
  opacity: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item .produit-img-boxe {
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item .produit-img-boxe::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#f5f2ed), to(#FFFFFF));
  background: linear-gradient(180deg, #f5f2ed 0%, #FFFFFF 100%);
  z-index: 1;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item .produit-img-boxe::before {
  content: "";
  position: absolute;
  bottom: 26px;
  left: 50%;
  width: 80%;
  height: 12px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #73796B;
  opacity: 0.6;
  border-radius: 50px;
  -webkit-filter: blur(16px);
          filter: blur(16px);
  z-index: 2;
  pointer-events: none;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item .produit-img-boxe img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: scale(1);
          transform: scale(1);
  background: transparent;
  margin: 0;
  z-index: 2;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
  -webkit-box-shadow: 0 0 32px 0 rgba(115, 121, 107, 0.37);
          box-shadow: 0 0 32px 0 rgba(115, 121, 107, 0.37);
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item .produit-info-boxe {
  position: relative;
  overflow: hidden;
  z-index: 12;
  text-align: center;
  background: transparent;
  padding:16px 22px 16px 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item .produit-info-boxe::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -103%;
  width: 100%;
  height: 3px;
  background: #050F33;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: all 0.38s ease-in-out;
  transition: all 0.38s ease-in-out;
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item .produit-info-boxe .produit-title {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 500;
  color: #050F33;
  line-height: 34px;
  font-family: "Gotham", sans-serif;
  -webkit-transition: all 0.38s ease-in-out;
  transition: all 0.38s ease-in-out;
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item .produit-info-boxe .add-to-cart {
  margin-top: 12px;
  font-family: "Gotham", sans-serif;
  background: #fff;
  color: #1e1e1e;
  border: 2px solid #1e1e1e;
  border-radius: 22px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-transform: uppercase;
  -webkit-transition: all 0.18s ease-in-out;
  transition: all 0.18s ease-in-out;
  cursor: pointer;
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item .produit-info-boxe .add-to-cart span {
  display: block;
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item .produit-info-boxe .add-to-cart .cart-icon {
  width: 22px;
  height: 22px;
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item .produit-info-boxe .add-to-cart:hover {
  background: #1e1e1e;
  color: #fff;
  border-color: #1e1e1e;
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item .produit-info-boxe .add-to-cart .addToCart-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item.active, .produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item:hover {
  border-color: transparent;
  -webkit-box-shadow: 1px 1px 8px 3px rgb(115, 121, 107);
          box-shadow: 1px 1px 8px 3px rgb(115, 121, 107);
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item.active::after, .produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item:hover::after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item.active::before, .produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item:hover::before {
  bottom: -30px;
  -webkit-transform: scale(1.2) translateX(-49%);
          transform: scale(1.2) translateX(-49%);
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item.active .product-img-boxe a img, .produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item:hover .product-img-boxe a img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item.active .product-img-boxe::after, .produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item:hover .product-img-boxe::after {
  opacity: 0;
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item.active .product-img-boxe::before, .produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item:hover .product-img-boxe::before {
  background: rgba(115, 121, 107, 0.77);
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item.active .product-info-boxe::after, .produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item:hover .product-info-boxe::after {
  background: rgba(149, 182, 210, 0.2117647059);
  opacity: 0;
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item.active .product-info-boxe .product-price::after, .produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item:hover .product-info-boxe .product-price::after {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item.active .product-info-boxe .add-to-cart, .produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item:hover .product-info-boxe .add-to-cart {
  background: #1e1e1e;
  color: #fff;
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item.active .product-info-boxe .add-to-cart .addToCart-icon, .produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item:hover .product-info-boxe .add-to-cart .addToCart-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item.active .product-info-boxe .add-to-cart .addToCart-icon svg path[stroke="#ffffff"], .produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item:hover .product-info-boxe .add-to-cart .addToCart-icon svg path[stroke="#ffffff"] {
  stroke: #1e1e1e;
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item.active .product-info-boxe .add-to-cart .addToCart-icon svg path[stroke="#1e1e1e"], .produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item:hover .product-info-boxe .add-to-cart .addToCart-icon svg path[stroke="#1e1e1e"] {
  stroke: #fff;
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item.active .product-info-boxe .add-to-cart:hover, .produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item:hover .product-info-boxe .add-to-cart:hover {
  border-color: #1e1e1e;
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item.active .product-info-boxe .add-to-cart:hover svg, .produits-sec.shop-sec .container .content .produits-row .produits-list .produit-item:hover .product-info-boxe .add-to-cart:hover svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.produits-sec.shop-sec .container .content .produits-row .produits-list .products {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.produits-sec.shop-sec .container .content .products-list-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.produits-sec.shop-sec .container .content .products-list-cta .green-cta {
  outline: none;
}

.sidebar-toggle-btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  text-transform: uppercase;
  background: #1e1e1e;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 22px;
  cursor: pointer;
  font-family: "Gotham", sans-serif;
  font-size: 14px;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

#no-results {
  margin-top: 12px;
  color: #666;
}

.sidebar-overlay {
  pointer-events: none;
  border-radius: 12px;
  mix-blend-mode: normal;
  -webkit-transition: all 0.35s linear;
  transition: all 0.35s linear;
  /* background controlled by JS via rgba for smooth animation */
}

@media (max-width: 900px) {
  .produits-sec .container .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .produits-sec .container .content .sidebar-filters {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding-right: 0;
    -webkit-transition: all 0.35s linear;
    transition: all 0.35s linear;
  }
  .produits-sec .container .content .sidebar-filters.hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    border-bottom: none;
  }
  .produits-sec .container .content .sidebar-toggle-btn {
    margin-bottom: 8px;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.ctc-sec {
  padding-top: 200px;
  padding-bottom: 120px;
}
.ctc-sec .container .content {
  max-width: 95%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 52px;
}
.ctc-sec .container .content .ctc-hero-title {
  font-family: "Gotham", sans-serif;
  color: #1e1e1e;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
  font-size: 58px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}
.ctc-sec .container .content .contact-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ctc-sec .container .content .contact-boxes .contact-boxe {
  padding: 20px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #F2EFE8;
}
.ctc-sec .container .content .contact-boxes .contact-boxe .contact-boxe-title h2 {
  font-family: "Gotham", sans-serif;
  color: #1e1e1e;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: left;
}
.ctc-sec .container .content .contact-boxes .contact-boxe .contact-boxe-title.secondo {
  margin-top: 12px;
}
.ctc-sec .container .content .contact-boxes .contact-boxe .contact-boxe-desc p {
  font-family: "Gotham", sans-serif;
  color: #1E1E1E;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
  font-size: 16px;
  font-weight: 300;
  text-align: left;
}
.ctc-sec .container .content .contact-boxes .contact-boxe .contact-boxe-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.ctc-sec .container .content .contact-boxes .contact-boxe .contact-boxe-cta img {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.ctc-sec .container .content .contact-boxes .contact-boxe .contact-boxe-cta span {
  font-family: "Gotham", sans-serif;
  color: #1e1e1e;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
  font-size: 16px;
  font-weight: 300;
  text-align: left;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  position: relative;
}
.ctc-sec .container .content .contact-boxes .contact-boxe .contact-boxe-cta span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#73796B), to(rgba(5, 15, 51, 0.9098039216)));
  background: linear-gradient(180deg, #73796B 0%, rgba(5, 15, 51, 0.9098039216) 100%);
  z-index: 1;
  opacity: 1;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.ctc-sec .container .content .contact-boxes .contact-boxe .contact-boxe-cta:hover span {
  color: #050F33;
}
.ctc-sec .container .content .contact-boxes .contact-boxe .contact-boxe-cta:hover span::after {
  width: 100%;
}
.ctc-sec .container .content .contact-boxes .contact-boxe .contact-boxe-cta:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.ctc-sec .container .content .contact-boxes .contact-boxe .contact-boxe-rs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.ctc-sec .container .content .contact-boxes .contact-boxe .contact-boxe-map {
  width: 100%;
  position: relative;
}
.ctc-sec .container .content .contact-boxes .contact-boxe .contact-boxe-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  outline: none;
}
.ctc-sec .container .content .abt-hero-boxe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ctc-sec .container .content .abt-hero-boxe .left {
  height: 500px;
}
.ctc-sec .container .content .abt-hero-boxe .left img {
  border-radius: 24px;
  width: 100%;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.ctc-sec .container .content .abt-hero-boxe .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.ctc-sec .container .content .abt-hero-boxe .right h2 {
  color: #050F33;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 48px;
  line-height: 58px;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
  margin-bottom: 24px;
}
.ctc-sec .container .content .abt-hero-boxe .right p {
  color: #050F33;
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
}
.ctc-sec .container .content .abt-hero-boxe:last-of-type {
  margin-top: 60px;
}

.sgp-hero-sec {
  padding-top: 200px;
}
.sgp-hero-sec .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.sgp-hero-sec .container .content .sgp-hero-title h1 {
  font-family: "Gotham", sans-serif;
  color: #1e1e1e;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
  font-size: 58px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}
.sgp-hero-sec .container .content .sgp-hero-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sgp-hero-sec .container .content .sgp-hero-boxe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
}
.sgp-hero-sec .container .content .sgp-hero-boxe .left.fenny-gallery {
  height: 100%;
}
.sgp-hero-sec .container .content .sgp-hero-boxe .left.fenny-gallery img {
  border-radius: 24px;
  border-radius: 24px;
  width: 100%;
  display: block !important;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.sgp-hero-sec .container .content .sgp-hero-boxe .left.fenny-gallery .fenny-gallery-main img {
  height: 100%;
}
.sgp-hero-sec .container .content .sgp-hero-boxe .right.fenny-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  height: 100%;
}
.sgp-hero-sec .container .content .sgp-hero-boxe .right.fenny-summary h2 {
  color: #050F33;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 48px;
  line-height: 58px;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
}
.sgp-hero-sec .container .content .sgp-hero-boxe .right.fenny-summary .product-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.sgp-hero-sec .container .content .sgp-hero-boxe .right.fenny-summary .product-desc span {
  color: #1e1e1e;
  font-weight: 300;
  font-size: 22px;
  line-height: 28px;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
}
.sgp-hero-sec .container .content .sgp-hero-boxe .right.fenny-summary .product-desc span:first-of-type {
  font-weight: 500;
  font-size: 24px;
}
.sgp-hero-sec .container .content .sgp-hero-boxe .right.fenny-summary .product-desc p {
  color: #1e1e1e;
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
}
.sgp-hero-sec .container .content .sgp-hero-boxe .right.fenny-summary .product-price span {
  color: #1e1e1e;
  font-weight: 500;
  font-size: 44px;
  line-height: 55px;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
}

.products-section.related-single {
  overflow: hidden;
  background: #fff;
  padding: 70px 0;
}
.products-section.related-single .products-header {
  text-align: center;
  margin-bottom: 0.2rem;
}
.products-section.related-single .products-header .products-header-title {
  font-size: 40px;
  line-height: 50px;
  color: #1e1e1e;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.products-section.related-single .products-header p {
  color: #1e1e1e;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px;
}
.products-section.related-single .products-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.products-section.related-single .products-slider .splide__track {
  overflow: hidden;
}
.products-section.related-single .products-slider .splide__list {
  gap: 16px;
}
.products-section.related-single .products-slider .splide__list .splide__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 !important;
  -webkit-transition: all 0.42s ease-in-out;
  transition: all 0.42s ease-in-out;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item {
  cursor: pointer;
  width: 100%;
  background: transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  -webkit-transition: all 0.42s ease-in-out;
  transition: all 0.42s ease-in-out;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item::before {
  content: "";
  position: absolute;
  bottom: -50%;
  z-index: 4;
  left: 50%;
  width: 200%;
  height: 45%;
  background: #fff;
  -webkit-transform: translateX(-50%) scaleX(0.8);
          transform: translateX(-50%) scaleX(0.8);
  -webkit-transform-origin: center;
          transform-origin: center;
  border-radius: 50%;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#8a907d), to(rgba(5, 15, 51, 0.3019607843)));
  background: linear-gradient(180deg, #8a907d 0%, rgba(5, 15, 51, 0.3019607843) 100%);
  z-index: 1;
  opacity: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item.active, .products-section.related-single .products-slider .splide__list .splide__slide .product-item:hover {
  border-color: transparent;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item .product-img-boxe {
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item .product-img-boxe::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#f5f2ed), to(#FFFFFF));
  background: linear-gradient(180deg, #f5f2ed 0%, #FFFFFF 100%);
  z-index: 1;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item .product-img-boxe::before {
  content: "";
  position: absolute;
  bottom: 26px;
  left: 50%;
  width: 50%;
  height: 40px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #73796B;
  border-radius: 50px;
  -webkit-filter: blur(16px);
          filter: blur(16px);
  z-index: 2;
  pointer-events: none;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item .product-img-boxe img {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: transparent;
  margin: 0;
  z-index: 2;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
  -webkit-box-shadow: 0 0 32px 0 rgba(115, 121, 107, 0.37);
          box-shadow: 0 0 32px 0 rgba(115, 121, 107, 0.37);
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item .product-info-boxe {
  position: relative;
  overflow: hidden;
  z-index: 12;
  text-align: center;
  background: transparent;
  padding: 40px 22px 20px 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item .product-info-boxe::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -103%;
  width: 100%;
  height: 200px;
  background: rgba(149, 182, 210, 0.2117647059);
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item .product-info-boxe .product-ref {
  color: #1e1e1e;
  font-size: 1.25rem;
  font-weight: 700;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item .product-info-boxe .product-price {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 5px;
  color: #1e1e1e;
  line-height: 24px;
  position: relative;
  overflow: hidden;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item .product-info-boxe .product-price span:last-of-type {
  color: #A0A0A0;
  font-weight: 300;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item .product-info-boxe .product-price::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 4px;
  background: #050F33;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item .product-info-boxe .add-to-cart {
  margin-top: 20px;
  font-family: "Gotham", sans-serif;
  background: #fff;
  color: #1e1e1e;
  border: 2px solid #1e1e1e;
  border-radius: 22px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-transform: uppercase;
  -webkit-transition: all 0.48s ease-in-out;
  transition: all 0.48s ease-in-out;
  cursor: pointer;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item .product-info-boxe .add-to-cart svg, .products-section.related-single .products-slider .splide__list .splide__slide .product-item .product-info-boxe .add-to-cart path {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item .product-info-boxe .add-to-cart span {
  display: block;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item .product-info-boxe .add-to-cart .cart-icon {
  width: 22px;
  height: 22px;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item .product-info-boxe .add-to-cart .addToCart-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item .product-info-boxe .add-to-cart:hover {
  border-color: #1e1e1e;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item .product-info-boxe .add-to-cart:hover svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item:hover::after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item:hover::before {
  bottom: -30px;
  -webkit-transform: scale(1);
  transform: scale(1.4) translateX(-50%);
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item:hover .product-img-boxe img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item:hover .product-img-boxe::after {
  opacity: 0;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item:hover .product-img-boxe::before {
  background: rgba(115, 121, 107, 0.77);
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item:hover .product-info-boxe::after {
  background: rgba(149, 182, 210, 0.2117647059);
  opacity: 0;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item:hover .product-info-boxe .product-price::after {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item:hover .product-info-boxe .add-to-cart {
  background: #1e1e1e;
  color: #fff;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item:hover .product-info-boxe .add-to-cart .addToCart-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item:hover .product-info-boxe .add-to-cart .addToCart-icon svg path[stroke="#ffffff"] {
  stroke: #1e1e1e;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item:hover .product-info-boxe .add-to-cart .addToCart-icon svg path[stroke="#1e1e1e"] {
  stroke: #fff;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item:hover .product-info-boxe .add-to-cart:hover {
  border-color: #1e1e1e;
}
.products-section.related-single .products-slider .splide__list .splide__slide .product-item:hover .product-info-boxe .add-to-cart:hover svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.products-section.related-single .products-slider .splide__list .splide__slide .products-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.products-section.related-single .products-slider .splide__arrows {
  position: static !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.products-section.related-single .products-slider .splide__arrows .splide__arrow--prev {
  border: none;
}
.products-section.related-single .products-slider .splide__arrows .splide__arrow {
  width: 3em;
  height: 3em;
}
.products-section.related-single .products-slider .splide__arrows button.cust-arrow {
  position: static !important;
  -webkit-transform: none !important;
          transform: none !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  margin: 0;
  padding: 8px 14px;
  width: 50px;
  height: 40px;
  background: #fff;
  border: 2px solid #949985;
  border-radius: 40px;
  color: #949985;
  font-size: 1.2rem;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.products-section.related-single .products-slider .splide__arrows button.cust-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200%;
  background: red;
  border-radius: 0 20px 0 20px;
}
.products-section.related-single .products-slider .splide__arrows button.cust-arrow:hover {
  background: #050F33;
  color: #fff;
  border-color: #050F33;
}
.products-section.related-single .products-slider .splide__arrows button.cust-arrow:hover svg path {
  fill: #ced9bd;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.products-section.related-single .products-slider .splide__arrows button.cust-arrow svg path {
  fill: #949985;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.notfound-hero-sec {
  padding: 200px 0 80px 0;
}
.notfound-hero-sec .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  width: 95%;
  margin: 0 auto;
}
.notfound-hero-sec .container .content .notfound-hero-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.notfound-hero-sec .container .content .notfound-hero-title h1 {
  width: 100%;
  font-family: "Gotham", sans-serif;
  color: #1e1e1e;
  font-size: 42px;
  line-height: 52px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
}
.notfound-hero-sec .container .content .notfound-hero-title p {
  text-align: center;
}
.notfound-hero-sec .container .content .notfound-hero-boxe {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.notfound-hero-sec .container .content .notfound-hero-boxe .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: auto;
  overflow: hidden;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fefefe;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 24px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.notfound-hero-sec .container .content .notfound-hero-boxe .left img {
  max-width: 100%;
  height: 350px;
  border-radius: 24px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.notfound-hero-sec .container .content .notfound-hero-boxe .left img:hover {
  -webkit-transform: scale(1.08) rotate(3deg);
          transform: scale(1.08) rotate(3deg);
}
.notfound-hero-sec .container .content .notfound-hero-boxe .left .notfound-hero-title {
  display: none;
}
.notfound-hero-sec .container .content .notfound-hero-boxe .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding-top: 0px;
}
.notfound-hero-sec .container .content .notfound-hero-boxe .right p {
  color: #050F33;
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  -webkit-transition: 0.32s ease-in-out;
  transition: 0.32s ease-in-out;
}
.notfound-hero-sec .container .content .notfound-hero-boxe .right .collection-cta {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.notfound-hero-sec .container .content .notfound-hero-boxe .right .collection-cta span {
  text-transform: uppercase;
}

.cart-section {
  padding-top: 190px;
}

.content.cart-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
}

.cart-section .container main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

form.woocommerce-cart-form .shop_table,
form.woocommerce-cart-form {
  width: 100%;
}

.cart-section button.woo-btn,
.cart-section a.woo-btn {
  position: relative;
  background: transparent;
  color: #1e1e1e;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1px;
  padding: 16px 24px;
  border: 2px solid #1e1e1e;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 4;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-box-shadow: -2px -2px 30px rgba(0, 0, 0, 0.1333333333);
          box-shadow: -2px -2px 30px rgba(0, 0, 0, 0.1333333333);
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.cart-section button.woo-btn::after,
.cart-section a.woo-btn::after {
  content: "";
  z-index: -2;
  position: absolute;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#1e1e1e), to(#000));
  background: linear-gradient(90deg, #1e1e1e 0%, #000 100%);
  width: 0%;
  height: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: 0.41s ease-in-out;
  transition: 0.41s ease-in-out;
}
.cart-section button.woo-btn:hover,
.cart-section a.woo-btn:hover {
  color: #fff;
}
.cart-section button.woo-btn:hover::after,
.cart-section a.woo-btn:hover::after {
  width: 100%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media (min-width: 1250px) {
	.hero-section .container .content .hero-slider .splide__track .splide__list .splide__slide {
		width: 80% !important;
	}

}

@media (min-width: 1450px) {
  .collections-section .container .content .collections-row .collections-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1350px) {
  .about-section .container .content .right .top,
  .about-section .container .content .right .bottom {
    height: auto;
  }
}
@media (max-width: 1250px) {
  .hero-section {
    padding-top: 175px;
  }
  .hero-section .container .content .hero-slider {
    max-width: 100%;
  }
  .contact-section .container .content,
  .ctc-sec .container .content {
    max-width: 100%;
  }
  .collections-section .container .content .collections-row .collections-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .collections-section .container .content .collections-row .collections-list .collections-item .collec-info-boxe .collec-title {
    font-size: 20px;
    line-height: 30px;
  }
  .produits-sec .container .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .produits-sec.shop-sec .container .content .produits-row .produits-list,
  .produits-sec .container .content .produits-row .produits-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header .container {
    padding-left: 0;
    padding-right: 0;
  }
  .footer .container .content .middle .right,
  .footer .container .content .middle .left {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
  .about-section .container .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .values-section .container .content .values-img-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
  .categ-hero-sec {
    padding-bottom: 50px;
  }
  .categ-hero-sec .container .content {
    width: 100%;
  }
  .notfound-hero-sec .container .content .notfound-hero-boxe .categ-hero-sec .container .content .categ-hero-boxe {
    gap: 25px;
  }
  .products-section .container .content .products-row .products-list {
    grid-template-columns: repeat(3, 1FR);
  }
  .categ-hero-sec .container .content .categ-hero-title h1 {
    width: 100%;
    font-size: 46px;
  }
  .notfound-hero-sec .container .content .notfound-hero-boxe .right p,
  .categ-hero-sec .container .content .categ-hero-boxe .right p {
    font-size: 18px;
    line-height: 28px;
  }
  .products-section .container .content .products-row {
    padding-bottom: 40px;
  }
  .lookbook-section {
    padding: 40px 0 40px;
  }
  .lookbook-section .container .content .top .lb-sec-title {
    font-size: 24px;
    line-height: 34px;
  }
  .lookbook-section .container .content .top .lb-sec-desc {
    font-size: 20px;
    width: 100%;
  }
  .abt-hero-sec .container .content {
    gap: 32px;
  }
  .abt-hero-sec .container .content .abt-hero-boxe {
    gap: 32px;
  }
  .ctc-sec .container .content .contact-boxes {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 992px) {
  .footer .container .content {
    gap: 36px;
  }
  .collections-section .container .content .collections-row .collections-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .produits-sec.shop-sec .container.forShop .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 820px) {
  .header {
    height: 160px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .contact-section .container .content {
    max-width: 100%;
    gap: 55px;
  }
  .footer .container .content .middle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 24px;
  }
  .notfound-hero-sec .container .content .notfound-hero-boxe,
  .categ-hero-sec .container .content .categ-hero-boxe {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .notfound-hero-sec .container .content .notfound-hero-boxe .right,
  .categ-hero-sec .container .content .categ-hero-boxe .right {
    padding-top: 0;
    gap: 30px;
  }
  .products-section .container .content .products-row .products-list {
    row-gap: 32px;
    grid-template-columns: repeat(2, 1fr);
  }
  .notfound-hero-sec .container .content .notfound-hero-boxe .right .collection-cta,
  .categ-hero-sec .container .content .categ-hero-boxe .right .collection-cta {
    -ms-flex-item-align: center;
        align-self: center;
  }
  .notfound-hero-sec .container .content .notfound-hero-boxe .left img,
  .categ-hero-sec .container .content .categ-hero-boxe .left img {
    max-width: 100%;
    height: 420px;
  }
  .abt-hero-sec .container .content .abt-hero-title h1 {
    font-size: 40px;
    line-height: 50px;
  }
  .abt-hero-sec .container .content .abt-hero-boxe .right h2 {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 0;
  }
  .abt-hero-sec .container .content .abt-hero-boxe {
    grid-template-columns: 1fr;
  }
  .abt-hero-sec .container .content .abt-hero-boxe .left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    height: auto;
  }
  .abt-hero-sec .container .content .abt-hero-boxe:last-of-type {
    margin-top: 0;
  }
  .abt-hero-sec .container .content .abt-hero-boxe .right p {
    font-size: 18px;
    line-height: 26px;
  }
  .about-section .container .content .about-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cllc-hero-sec .container .content .cllc-hero-title,
  .ctc-sec .container .content .ctc-hero-title {
    font-size: 42px;
  }
  .produits-sec.shop-sec .container .content .produits-row .produits-list,
  .produits-sec .container .content .produits-row .produits-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .produits-sec.shop-sec .container.forShop .content,
  .produits-sec.shop-sec .container .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sgp-hero-sec .container .content .sgp-hero-boxe {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 650px) {
  .about-section {
    padding: 70px 0 40px;
  }
  .lookbook-section .container .content {
    gap: 20px;
  }
  .products-section .products-slider {
    gap: 12px;
  }
  .values-section {
    padding: 50px 0 50px 0;
  }
  .values-section .container .content .values-img-boxes {
    grid-template-columns: repeat(1, 1fr);
  }
  .products-section .products-header .products-header-title,
  .lookbook-section .container .content .top .lb-sec-title,
  .values-section .container .content .values-title h3,
  .contact-section .container .content .contact-title h3 {
    font-size: 36px;
    line-height: 46px;
  }
  .values-section .container .content .values-title h3 {
    width: 90%;
  }
  .contact-section .container .content .contact-form-wrap .contact-form .form-row label,
  .contact-section .container .content .contact-form-wrap .contact-form .form-row input, .contact-section .container .content .contact-form-wrap .contact-form .form-row textarea {
    font-size: 16px;
  }
  .footer .container .content .middle .right {
    gap: 16px;
  }
  .footer .container .content .middle .right .footer-nav-boxes {
    gap: 12px;
    grid-template-columns: initial;
  }
  .footer .container .content .middle .right .footer-nav {
    width: 100%;
  }
  .footer .container .content .middle .left .footer-ct-boxes {
    width: 100%;
  }
  .footer .container .content .middle .left .footer-ct-boxes .footer-socials ul,
  .footer .container .content .middle .left .footer-ct-boxes .footer-socials {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .container .content .middle .right .footer-nav h4,
  .footer .container .content .middle .right .footer-nav.uppercase ul li a {
    font-size: 16px;
  }
  .footer .container .content .middle .right .footer-nav.uppercase ul {
    gap: 12px;
  }
  .footer .container .content .middle .right .footer-nav ul {
    gap: 8px;
  }
  .categ-hero-sec {
    padding: 200px 0 40px 0;
  }
  .lookbook-section {
    padding: 40px 0 40px;
  }
  .products-section {
    padding: 40px 0;
  }
  .contact-section .container .content .contact-form-wrap .contact-form .form-duo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .abt-hero-sec .container .content .abt-hero-boxe .right p {
    font-size: 16px;
    line-height: 26px;
  }
  .values-cta {
    width: 90%;
    padding: 14px 12px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .contact-section .container .content .contact-title p {
    width: 100%;
  }
  .products-section.category-single .container .content .products-row .products-list,
  .products-section .container .content .products-row .products-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 520px) {
  .products-section .products-header .products-header-title, .lookbook-section .container .content .top .lb-sec-title, .values-section .container .content .values-title h3, .contact-section .container .content .contact-title h3 {
    font-size: 32px;
    line-height: 42px;
  }
  .hero-section {
    padding-bottom: 100px;
  }
  .hero-section .container .content .slider-cta-wrap .shape-wrap {
    opacity: 0;
    display: none;
  }
  .about-section .container .content .left .about-sec-img-boxe .curved-shape {
    width: 420px;
  }
  .about-section .container .content .left .about-sec-img-boxe h2 {
    font-size: 36px;
    line-height: 46px;
  }
  .footer .container .content .middle .right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .container .content .middle .right .footer-nav-boxes,
  .footer .container .content .middle .right .footer-nav.uppercase {
    width: 100%;
  }
  .footer .container .content .middle .right .footer-nav-boxes {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer .container .content .middle .right .footer-nav.uppercase ul {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .container .content .middle .right .footer-nav ul {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .container .content .middle .right .footer-nav h4 {
    text-align: center;
  }
  .footer .container .content .middle .left .footer-ct-intro h6,
  .footer .container .content .middle .right .footer-nav h4 {
/*     color: #050F33; */
  }
  .ctc-sec .container .content .contact-boxes .contact-boxe {
    padding: 18px 12px;
  }
  .ctc-sec .container .content {
    gap: 32px;
  }
  .collections-section .container .content .collections-row .collections-list {
    grid-template-columns: initial;
  }
  .shop-hero-sec .container .content .shop-hero-title,
  .sgp-hero-sec .container .content .sgp-hero-title h1,
  .abt-hero-sec .container .content .abt-hero-title h1,
  .cllc-hero-sec .container .content .cllc-hero-title,
  .ctc-sec .container .content .ctc-hero-title {
    font-size: 32px;
    line-height: 42px;
  }
  .shop-hero-sec .container .content {
    gap: 20px;
    max-width: 100%;
  }
  .abt-hero-sec .container .content .abt-hero-boxe .right {
    gap: 20px;
  }
  .cllc-hero-sec .container .content p {
    font-size: 16px;
  }
  .produits-sec.shop-sec .container .content .produits-row .produits-list,
  .produits-sec .container .content .produits-row .produits-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .products-section.category-single .container .content .products-row .products-list {
    grid-template-columns: repeat(1, 1FR);
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 16px;
  }
  .products-section.related-single .products-slider .splide__list .splide__slide .product-item .product-info-boxe .add-to-cart,
  .fenny-summary button.single_add_to_cart_button,
  .cta-wrapper button, .cta-wrapper a, .green-cta {
    padding: 8px 16px;
  }
  .categ-hero-sec .container .content .categ-hero-title h1 {
    width: 100%;
    font-size: 36px;
    line-height: 46px;
  }
  .sidebar-toggle-btn,
  form.woocommerce-ordering select.orderby {
    font-size: 13px !important;
    height: 100%;
  }
  .catalog-ordering form.woocommerce-ordering,
  .catalog-ordering {
    height: 100%;
  }
}
@media (max-width: 450px) {
  .header .container .content .top .logo img {
    max-width: 140px;
  }
  .about-section .container .content .right .bottom .bottom-wrapper .curved-shape {
    display: none;
  }
  .about-section .container .content .left .about-sec-img-boxe .curved-shape {
    width: 370px;
  }
  .about-section .container .content .left .about-sec-img-boxe .curved-shape {
    width: 100%;
    border-radius: 0;
    background: white;
    left: 0;
  }
  .about-section .container .content .right .bottom .bottom-wrapper .hero-cta {
    position: relative;
    right: 0;
    top: 0;
    z-index: 5;
    text-transform: uppercase;
    padding: 16x 12px;
  }
  .produits-sec.shop-sec .container.forShop .filtrage {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}