#fw-section-custom-html-e9e16d34-bacb-4081-8501-cec28813c218 {

/* =========================================================
   ZEVANTTE ABOUT & CONTACT STYLESHEET (CSS)
   ========================================================= */

.zevantte-about,
.zevantte-contact {
  --zevantte-font-heading: 'Archivo Black', Arial, Helvetica, sans-serif;
  --zevantte-font-base: 'Inter', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 85px 32px 90px;
  box-sizing: border-box;
  overflow: hidden;
}

.zevantte-about *,
.zevantte-about *::before,
.zevantte-about *::after,
.zevantte-contact *,
.zevantte-contact *::before,
.zevantte-contact *::after {
  box-sizing: border-box;
}

.zevantte-intro {
  text-align: center;
  margin-bottom: 50px;
}

.zevantte-heading {
  margin: 0;
  padding: 0;
  font-family: var(--zevantte-font-heading);
  font-size: clamp(24px, 3vw, 40px);
  line-height: .95;
  font-weight: 700;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.zevantte-word {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 0 5px;
  vertical-align: top;
  padding-bottom: .08em;
}

.zevantte-word__inner {
  display: inline-block;
  color: #141414;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateY(115%);
  transition: transform 0.85s cubic-bezier(.22,.61,.36,1);
}

.is-animated .zevantte-word:nth-child(1) .zevantte-word__inner {
  transform: translateY(0%);
  transition-delay: 0.1s;
}

.is-animated .zevantte-word:nth-child(2) .zevantte-word__inner {
  transform: translateY(0%);
  transition-delay: 0.24s;
}

.zevantte-subtitle {
  margin: 14px auto 0;
  max-width: 560px;
  font-family: var(--zevantte-font-base);
  color: #55534d;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .04em;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.9s cubic-bezier(.22,.61,.36,1) 0.32s, opacity 0.3s ease 0.32s;
}

.is-animated .zevantte-subtitle {
  opacity: 1;
  clip-path: inset(0 0% 0 0);
}

/* ABOUT SECTION STYLES */
.zevantte-about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.zevantte-about__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / .85;
  overflow: hidden;
  background: #111;
  isolation: isolate;
  clip-path: inset(0 100% 0 0);
  transform: scale(1.05);
  transition: clip-path 1.1s cubic-bezier(.22, .61, .36, 1) 0.3s, 
              transform 1.2s cubic-bezier(.22, .61, .36, 1) 0.3s;
}

.zevantte-about.is-animated .zevantte-about__media {
  clip-path: inset(0 0% 0 0);
  transform: scale(1);
}

@keyframes zevantteAboutDrift {
  0% { transform: scale(1.06) translate(0px, 0px); }
  33% { transform: scale(1.14) translate(-24px, -18px); }
  66% { transform: scale(1.10) translate(20px, 22px); }
  100% { transform: scale(1.06) translate(0px, 0px); }
}

.zevantte-about__image-wrapper {
  position: absolute;
  inset: -40px;
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  will-change: transform;
}

.zevantte-about.is-animated .zevantte-about__image-wrapper {
  animation: zevantteAboutDrift 16s ease-in-out infinite;
}

.zevantte-about__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.zevantte-about__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.2) 40%,
    rgba(0,0,0,0) 100%
  );
}

.zevantte-about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zevantte-about__tag {
  display: block;
  margin-bottom: 10px;
  font-family: var(--zevantte-font-base);
  color: #777;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(.22,.61,.36,1) 0.5s, transform 0.7s cubic-bezier(.22,.61,.36,1) 0.5s;
}

.zevantte-about.is-animated .zevantte-about__tag {
  opacity: 1;
  transform: translateY(0);
}

.zevantte-about__story-heading {
  margin: 0 0 20px;
  font-family: var(--zevantte-font-heading);
  color: #141414;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -.025em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(.22,.61,.36,1) 0.6s, transform 0.8s cubic-bezier(.22,.61,.36,1) 0.6s;
}

.zevantte-about.is-animated .zevantte-about__story-heading {
  opacity: 1;
  transform: translateY(0);
}

.zevantte-about__text {
  margin: 0 0 16px;
  font-family: var(--zevantte-font-base);
  color: #44423c;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: .02em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(.22,.61,.36,1) 0.7s, transform 0.8s cubic-bezier(.22,.61,.36,1) 0.7s;
}

.zevantte-about__text:nth-of-type(2) {
  transition-delay: 0.82s;
}

.zevantte-about.is-animated .zevantte-about__text {
  opacity: 1;
  transform: translateY(0);
}

.zevantte-about__action {
  margin-top: 10px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s cubic-bezier(.22,.61,.36,1) 0.95s, transform 0.8s cubic-bezier(.22,.61,.36,1) 0.95s;
}

.zevantte-about.is-animated .zevantte-about__action {
  opacity: 1;
  transform: translateY(0);
}

/* CONTACT SECTION STYLES */
.zevantte-contact__container {
  max-width: 720px;
  margin: 0 auto;
  background: #fcfbfa;
  border: 1px solid rgba(20, 20, 20, 0.08);
  padding: 48px;
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s cubic-bezier(.22,.61,.36,1) 0.35s, transform 0.9s cubic-bezier(.22,.61,.36,1) 0.35s;
}

.zevantte-contact.is-animated .zevantte-contact__container {
  opacity: 1;
  transform: translateY(0);
}

.zevantte-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.zevantte-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.zevantte-form__label {
  font-family: var(--zevantte-font-base);
  color: #141414;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.zevantte-form__input,
.zevantte-form__textarea {
  width: 100%;
  padding: 16px 18px;
  font-family: var(--zevantte-font-base);
  color: #141414;
  background: #ffffff;
  border: 1px solid rgba(20, 20, 20, 0.15);
  font-size: 14px;
  line-height: 1.5;
  outline: none;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.zevantte-form__input:focus,
.zevantte-form__textarea:focus {
  border-color: #141414;
  box-shadow: 0 0 0 1px #141414;
}

.zevantte-form__textarea {
  resize: vertical;
  min-height: 140px;
}

.zevantte-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding: 18px 32px;
  font-family: var(--zevantte-font-base);
  color: #fcfbfa;
  background: #141414;
  border: 1px solid #141414;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
  margin-top: 8px;
}

/* SHARED BUTTON STYLES */
.zevantte-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 19px 38px;
  font-family: var(--zevantte-font-base);
  color: #fcfbfa;
  background: #141414;
  border: 1px solid #141414;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
}

.zevantte-btn-arrow {
  font-size: 17px;
  line-height: 1;
  transition: transform .3s ease;
}

/* HOVER EFFECTS */
@media (hover: hover) and (pointer: fine) {
  .zevantte-btn:hover,
  .zevantte-form__submit:hover {
    background: #282828;
    border-color: #282828;
    color: #fcfbfa;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
  }
  .zevantte-btn:hover .zevantte-btn-arrow,
  .zevantte-form__submit:hover .zevantte-btn-arrow {
    transform: translate(3px, -3px);
  }
}

/* RESPONSIVE */
@media screen and (max-width: 850px) {
  .zevantte-about,
  .zevantte-contact {
    padding: 70px 16px;
  }
  .zevantte-about__container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .zevantte-contact__container {
    padding: 24px 20px;
  }
  .zevantte-btn,
  .zevantte-form__submit {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }
}
}



#fw-section-custom-html-811dc0e4-69d6-40c4-a92d-3697eb4748f4 {

#zvGalleryHero .zv-stage{isolation:isolate;contain:layout paint;}#zvGalleryHero .zv-card{contain:layout paint;transform-style:preserve-3d;backface-visibility:hidden;transition:transform 1.2s cubic-bezier(.22,1,.36,1),opacity 1.2s cubic-bezier(.22,1,.36,1) !important;}#zvGalleryHero .zv-copy{color:#fff !important;mix-blend-mode:difference;}#zvGalleryHero .zv-copy h1,#zvGalleryHero .zv-copy .zv-brand,#zvGalleryHero .zv-copy .zv-button{color:#fff !important;}#zvGalleryHero .zv-copy .zv-button{border-color:#fff !important;}#zvGalleryHero .zv-dot{width:40px !important;transform:scaleX(.55);transform-origin:right center;transition:transform .35s cubic-bezier(.22,1,.36,1),background-color .35s ease !important;pointer-events:none !important;cursor:default !important;}#zvGalleryHero .zv-dot.active{width:40px !important;transform:scaleX(1);}@media (max-width:700px){#zvGalleryHero .zv-dot{width:30px !important;}#zvGalleryHero .zv-dot.active{width:30px !important;}}@media (min-width:701px){#zvGalleryHero .zv-card{transition:transform 1.2s cubic-bezier(.22,1,.36,1),opacity 1.2s cubic-bezier(.22,1,.36,1) !important;}}
}



#fw-section-custom-html-91b60198-e0e1-4c8d-8a9b-47c95bdd91bc {

/* =========================================================
   ZEVANTTE — JUST DROPPED
   ========================================================= */

.zv-new-drop {
  width: 100%;
  position: relative;
  overflow: hidden;
  color: #000;
  background: transparent;
  padding: 55px 0 70px;
}


/* =========================================================
   JUST DROPPED HEADING
   ========================================================= */

.zv-drop-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 12px;
  padding: 0 20px;
}

.zv-drop-heading span {
  height: 1px;
  width: 70px;
  background: rgba(0,0,0,.18);
}

.zv-drop-heading h2 {
  margin: 0;
  color: #000 !important;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
  letter-spacing: .07em;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
}


/* =========================================================
   VIEW ALL
   ========================================================= */

.zv-view-all {
  display: block;
  width: fit-content;
  margin: 0 auto 30px;

  color: #000 !important;

  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .16em;

  text-decoration: underline !important;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;

  opacity: 1;

  transition:
    opacity .25s ease,
    transform .25s ease;
}

.zv-view-all:hover {
  opacity: .6;
  transform: translateY(-1px);
}


/* =========================================================
   MARQUEE
   ========================================================= */

.zv-marquee {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 8px 0 15px;
}

.zv-track {
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translate3d(0,0,0);
}

.zv-group {
  display: flex;
  align-items: stretch;
  gap: 18px;
  padding-right: 18px;
  flex-shrink: 0;
}


/* =========================================================
   PRODUCT CARD
   ========================================================= */

.zv-card {
  width: 270px;
  height: 335px;
  flex: 0 0 270px;
  position: relative;
  display: block;
  color: #000 !important;
  text-decoration: none !important;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   PRODUCT CARD VISUAL
   ========================================================= */

.zv-card-visual {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 2px;

  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(255,255,255,.055),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      rgba(255,255,255,.035) 0%,
      rgba(255,255,255,.012) 50%,
      rgba(0,0,0,.025) 100%
    );

  border: 1px solid rgba(0,0,0,.075);

  box-shadow:
    0 8px 25px rgba(0,0,0,.08),
    inset 0 0 0 1px rgba(255,255,255,.012);

  transition:
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}

.zv-card:hover .zv-card-visual {
  transform: translateY(-3px);

  border-color:
    rgba(0,0,0,.16);

  box-shadow:
    0 14px 32px rgba(0,0,0,.15),
    inset 0 0 0 1px rgba(255,255,255,.02);
}


/* =========================================================
   SOFT LIGHT
   ========================================================= */

.zv-card-light {
  position: absolute;
  inset: -30%;
  pointer-events: none;

  background:
    radial-gradient(
      circle at 50% 38%,
      rgba(255,255,255,.065),
      transparent 32%
    );

  opacity: .6;
}


/* =========================================================
   SUBTLE GRID
   ========================================================= */

.zv-card-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;

  opacity: .018;

  background-image:
    linear-gradient(
      rgba(0,0,0,.3) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(0,0,0,.3) 1px,
      transparent 1px
    );

  background-size: 38px 38px;
}


/* =========================================================
   SUBTLE GRAIN
   ========================================================= */

.zv-card-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;

  opacity: .012;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}


/* =========================================================
   CARD NUMBER
   ========================================================= */

.zv-card-number {
  position: absolute;
  top: 15px;
  left: 16px;
  z-index: 5;

  color: rgba(0,0,0,.58);

  font-size: 8px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .15em;
}


/* =========================================================
   NEW DROP BADGE
   ========================================================= */

.zv-card-badge {
  position: absolute;
  top: 15px;
  right: 16px;
  z-index: 5;

  color: rgba(0,0,0,.65);

  font-size: 8px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .14em;
}


/* =========================================================
   ZEVANTTE SIDE BRAND
   ========================================================= */

.zv-card-brand {
  position: absolute;

  left: 12px;
  top: 50%;

  transform:
    translateY(-50%)
    rotate(-90deg);

  transform-origin: center;

  z-index: 5;

  color: rgba(0,0,0,.18);

  font-size: 7px;
  font-weight: 800;
  letter-spacing: .28em;

  pointer-events: none;
}


/* =========================================================
   PRODUCT IMAGE
   SAME SIZE FOR ALL PRODUCTS
   ========================================================= */

.zv-product-stage {
  position: absolute;

  left: 50%;
  top: 48%;

  transform:
    translate(-50%, -50%);

  width: 82%;
  height: 60%;

  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  pointer-events: none;
}

.zv-product-stage img {
  position: absolute;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  display: block;

  transition:
    opacity .35s ease,
    transform .45s ease;

  user-select: none;
  -webkit-user-drag: none;
}

.zv-product-stage .zv-front {
  opacity: 1;
}

.zv-product-stage .zv-back {
  opacity: 0;
}


/* =========================================================
   FRONT / BACK HOVER
   ========================================================= */

.zv-card:hover .zv-product-stage .zv-front {
  opacity: 0;
}

.zv-card:hover .zv-product-stage .zv-back {
  opacity: 1;
}


/* =========================================================
   PRODUCT DOTS
   ========================================================= */

.zv-product-dots {
  position: absolute;

  left: 17px;
  bottom: 72px;

  z-index: 5;

  display: flex;
  gap: 4px;
}

.zv-product-dot {
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background:
    rgba(0,0,0,.3);
}

.zv-product-dot:first-child {
  background:
    rgba(0,0,0,.85);
}


/* =========================================================
   EXPLORE
   ========================================================= */

.zv-explore {
  position: absolute;

  right: 16px;
  bottom: 71px;

  z-index: 5;

  color: #000;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;

  opacity: 0;

  transform:
    translateX(5px);

  transition:
    opacity .3s ease,
    transform .3s ease;
}

.zv-card:hover .zv-explore {
  opacity: .85;

  transform:
    translateX(0);
}


/* =========================================================
   PRODUCT INFO
   PRODUCT NAME + PRICE STAY WHITE
   ========================================================= */

.zv-card-info {
  position: absolute;

  left: 13px;
  right: 13px;
  bottom: 13px;

  z-index: 6;

  min-height: 48px;

  padding: 10px 11px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 10px;

  background:
    rgba(8,8,8,.62);

  border:
    1px solid rgba(255,255,255,.075);

  backdrop-filter:
    blur(8px);

  -webkit-backdrop-filter:
    blur(8px);
}


/* =========================================================
   PRODUCT NAME — KEEP WHITE
   ========================================================= */

.zv-product-title {
  min-width: 0;
  overflow: hidden;

  color: #fff !important;

  font-size: 10px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: .025em;

  text-overflow: ellipsis;
  white-space: nowrap;
}


/* =========================================================
   PRODUCT PRICE — KEEP WHITE
   ========================================================= */

.zv-product-price {
  flex: 0 0 auto;

  color: #fff !important;

  font-size: 10px;
  line-height: 1;
  font-weight: 700;

  white-space: nowrap;
}


/* =========================================================
   NAVIGATION BUTTONS
   ========================================================= */

.zv-nav {
  position: absolute;

  top: 50%;
  z-index: 20;

  width: 44px;
  height: 44px;

  padding: 0;

  border:
    1px solid rgba(0,0,0,.14);

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #000;

  background:
    rgba(255,255,255,.60);

  backdrop-filter:
    blur(10px);

  -webkit-backdrop-filter:
    blur(10px);

  box-shadow:
    0 8px 25px rgba(0,0,0,.16);

  cursor: pointer;

  transform:
    translateY(-50%);

  transition:
    background .25s ease,
    border-color .25s ease,
    transform .25s ease;

  font-size: 27px;
  line-height: 1;
}

.zv-nav:hover {
  background:
    rgba(255,255,255,.90);

  border-color:
    rgba(0,0,0,.25);
}

.zv-nav:active {
  transform:
    translateY(-50%)
    scale(.94);
}

.zv-nav-left {
  left: 18px;
}

.zv-nav-right {
  right: 18px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .zv-new-drop {
    padding: 42px 0 55px;
  }

  .zv-drop-heading {
    width: 100%;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 0 15px;
    text-align: center;
  }

  .zv-drop-heading span {
    width: 28px;
    flex: 0 0 28px;
  }

  .zv-drop-heading h2 {
    font-size: 24px;
    letter-spacing: .055em;
    text-align: center;
    white-space: nowrap;
  }

  .zv-view-all {
    margin: 0 auto 22px;
    font-size: 10px;
    letter-spacing: .15em;
    text-align: center;
    text-underline-offset: 4px;
  }

  .zv-marquee {
    padding-bottom: 10px;
  }

  .zv-group {
    gap: 12px;
    padding-right: 12px;
  }

  .zv-card {
    width: 205px;
    height: 285px;
    flex-basis: 205px;
  }

  .zv-card-info {
    left: 10px;
    right: 10px;
    bottom: 10px;

    min-height: 43px;

    padding: 8px 9px;

    background:
      rgba(8,8,8,.60);
  }

  .zv-product-title,
  .zv-product-price {
    font-size: 9px;
  }

  .zv-product-stage {
    width: 82%;
    height: 58%;
  }

  .zv-product-dots {
    bottom: 62px;
    left: 12px;
  }

  .zv-explore {
    bottom: 61px;
    right: 12px;
  }

  .zv-card-number {
    top: 12px;
    left: 12px;
  }

  .zv-card-badge {
    top: 12px;
    right: 12px;
  }

  .zv-nav {
    width: 38px;
    height: 38px;
    font-size: 23px;
  }

  .zv-nav-left {
    left: 8px;
  }

  .zv-nav-right {
    right: 8px;
  }

}
}
#fw-section-custom-html-510097da-0a9c-44c4-8cc2-5f7c4517fc86 {

/* =========================================
   ZEVANTTE HERO
   ========================================= */

.zevantte-hero-banner {

  position: relative;

  width: 100%;

  height: 85vh;

  min-height: 600px;

  overflow: hidden;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #f5f5f2;
}


/* =========================================
   CINEMATIC IMAGE
   ========================================= */

.zevantte-hero-image {

  position: absolute;

  top: -14%;

  left: -14%;

  width: 128%;

  height: 128%;

  max-width: none;

  display: block;

  object-fit: cover;

  object-position: center center;

  transform:
    translate3d(0,0,0)
    scale(1.08)
    rotate(0deg);

  transform-origin: center center;

  will-change: transform;

  pointer-events: none;

  user-select: none;
}


/* =========================================
   IMAGE OVERLAY
   ========================================= */

.zevantte-hero-overlay {

  position: absolute;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 1;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.02) 45%,
      rgba(0,0,0,0.16)
    );

  pointer-events: none;
}


/* =========================================
   CONTENT
   ========================================= */

.zevantte-hero-content {

  position: relative;

  z-index: 2;

  width: 90%;

  max-width: 950px;

  margin: 0 auto;

  padding: 40px 20px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;
}


/* =========================================
   KINETIC TITLE
   ========================================= */

.zevantte-kinetic-title {

  margin: 0;

  max-width: 950px;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: center;

  column-gap: 0.28em;

  row-gap: 0.02em;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  font-size: 52px;

  line-height: 1.05;

  font-weight: 800;

  letter-spacing: -1.5px;

  text-transform: uppercase;

  color: #ffffff;

  text-shadow:
    0 2px 4px rgba(0,0,0,0.95),
    0 5px 18px rgba(0,0,0,0.65);
}


/* =========================================
   KINETIC WORDS
   ========================================= */

.kinetic-word {

  display: inline-block;

  opacity: 0;

  transform:
    translate3d(0,55px,0)
    rotateX(-35deg)
    scale(0.92);

  transform-origin: center bottom;

  transition:
    opacity 0.8s cubic-bezier(0.22,1,0.36,1),
    transform 0.9s cubic-bezier(0.22,1,0.36,1);

  will-change:
    opacity,
    transform;
}


/* =========================================
   VISIBLE WORD
   ========================================= */

.kinetic-word-visible {

  opacity: 1;

  transform:
    translate3d(0,0,0)
    rotateX(0deg)
    scale(1);
}


/* =========================================
   SUBTITLE
   ========================================= */

.zevantte-kinetic-subtitle {

  max-width: 680px;

  margin: 23px 0 0;

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: center;

  column-gap: 0.3em;

  row-gap: 0.2em;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  font-size: 17px;

  line-height: 1.5;

  font-weight: 400;

  letter-spacing: 0.1px;

  color: #ffffff;

  text-shadow:
    0 2px 4px rgba(0,0,0,0.95),
    0 4px 14px rgba(0,0,0,0.55);
}


/* =========================================
   SUBTITLE WORDS
   ========================================= */

.kinetic-subtitle-word {

  display: inline-block;

  opacity: 0;

  transform:
    translate3d(0,22px,0);

  transition:
    opacity 0.55s ease,
    transform 0.65s cubic-bezier(0.22,1,0.36,1);

  will-change:
    opacity,
    transform;
}


/* =========================================
   SUBTITLE VISIBLE
   ========================================= */

.kinetic-subtitle-visible {

  opacity: 1;

  transform:
    translate3d(0,0,0);
}


/* =========================================
   DASH
   ========================================= */

.kinetic-subtitle-dash {

  display: inline-block;

  opacity: 0;

  transform:
    scaleX(0);

  transition:
    opacity 0.5s ease,
    transform 0.6s ease;
}


/* =========================================
   DASH VISIBLE
   ========================================= */

.kinetic-subtitle-dash-visible {

  opacity: 1;

  transform:
    scaleX(1);
}


/* =========================================
   BUTTON
   ========================================= */

.zevantte-hero-button-wrap {

  margin-top: 32px;

  opacity: 0;

  transform:
    translate3d(0,25px,0)
    scale(0.96);

  transition:
    opacity 0.8s cubic-bezier(0.22,1,0.36,1),
    transform 0.8s cubic-bezier(0.22,1,0.36,1);

  will-change:
    opacity,
    transform;
}


/* =========================================
   BUTTON VISIBLE
   ========================================= */

.hero-button-visible {

  opacity: 1;

  transform:
    translate3d(0,0,0)
    scale(1);
}


/* =========================================
   ACTUAL BUTTON
   ========================================= */

.zevantte-hero-button {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  min-height: 50px;

  padding: 15px 24px;

  border:
    1px solid #ffffff;

  border-radius: 999px;

  background: #000000;

  color: #ffffff;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  font-size: 12px;

  line-height: 1;

  font-weight: 700;

  letter-spacing: 1px;

  text-decoration: none;

  text-transform: uppercase;

  box-shadow:
    0 6px 25px rgba(0,0,0,0.28);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


/* =========================================
   BUTTON HOVER
   ========================================= */

.zevantte-hero-button:hover {

  background: #ffffff;

  color: #000000;

  transform:
    translateY(-4px);

  box-shadow:
    0 12px 30px rgba(0,0,0,0.3);
}


/* =========================================
   ARROW
   ========================================= */

.zevantte-button-arrow {

  flex: 0 0 auto;

  transition:
    transform 0.3s ease;
}


/* =========================================
   ARROW HOVER
   ========================================= */

.zevantte-hero-button:hover
.zevantte-button-arrow {

  transform:
    translateX(5px);
}


/* =========================================
   TABLET
   ========================================= */

@media screen and (max-width: 900px) {

  .zevantte-hero-banner {

    height: 70vh;

    min-height: 520px;
  }


  .zevantte-kinetic-title {

    font-size: 42px;

    column-gap: 0.25em;
  }


  .zevantte-kinetic-subtitle {

    font-size: 16px;
  }

}


/* =========================================
   MOBILE
   ========================================= */

@media screen and (max-width: 600px) {

  .zevantte-hero-banner {

    height: 72vh;

    min-height: 500px;
  }


  .zevantte-hero-image {

    top: -17%;

    left: -21%;

    width: 142%;

    height: 134%;
  }


  .zevantte-hero-content {

    width: 100%;

    max-width: none;

    min-height: 72vh;

    padding:
      35px 18px;
  }


  /* MOBILE TITLE */

  .zevantte-kinetic-title {

    max-width: 370px;

    font-size: 33px;

    line-height: 1.06;

    letter-spacing: -1px;

    column-gap: 0.24em;

    row-gap: 0.08em;
  }


  /* MOBILE SUBTITLE */

  .zevantte-kinetic-subtitle {

    max-width: 340px;

    margin-top: 19px;

    font-size: 14px;

    line-height: 1.5;

    column-gap: 0.25em;

    row-gap: 0.15em;
  }


  /* MOBILE BUTTON */

  .zevantte-hero-button-wrap {

    margin-top: 27px;
  }


  .zevantte-hero-button {

    min-height: 48px;

    padding:
      14px 20px;

    font-size: 11px;

    gap: 10px;
  }

}


/* =========================================
   SMALL PHONES
   ========================================= */

@media screen and (max-width: 380px) {

  .zevantte-kinetic-title {

    max-width: 330px;

    font-size: 29px;

    letter-spacing: -0.8px;
  }


  .zevantte-kinetic-subtitle {

    max-width: 310px;

    font-size: 13px;
  }


  .zevantte-hero-button {

    padding:
      13px 17px;

    font-size: 10px;
  }

}
}
#fw-section-custom-html-fd2c64f4-8297-48d9-a02c-9cf30372b839 {

/* =========================================
   ZEVANTTE BENEFITS
   ========================================= */

.zv-features {

  background: transparent;

  color: inherit;

  padding: 90px 40px;

  font-family: inherit;

  overflow: hidden;
}


/* =========================================
   INNER
   ========================================= */

.zv-features__inner {

  width: 100%;

  max-width: 1300px;

  margin: 0 auto;

  display: flex;

  align-items: stretch;

  justify-content: center;
}


/* =========================================
   FEATURE
   ========================================= */

.zv-feature {

  position: relative;

  flex: 1 1 0;

  min-width: 0;

  padding: 8px 48px 12px;

  text-align: center;

  opacity: 0;

  transform:
    translate3d(0,24px,0);

  transition:
    opacity 0.8s ease,
    transform 0.8s
      cubic-bezier(0.22,1,0.36,1);
}


/* =========================================
   STAGGER
   ========================================= */

.zv-feature:nth-of-type(1) {
  transition-delay: 0s;
}

.zv-feature:nth-of-type(3) {
  transition-delay: 0.12s;
}

.zv-feature:nth-of-type(5) {
  transition-delay: 0.24s;
}


/* =========================================
   VISIBLE
   ========================================= */

.zv-feature.is-visible {

  opacity: 1;

  transform:
    translate3d(0,0,0);
}


/* =========================================
   VISUAL
   ========================================= */

.zv-feature__icon {

  width: 128px;

  height: 128px;

  margin: 0 auto 27px;

  display: flex;

  align-items: center;

  justify-content: center;

  transition:
    transform 0.6s
      cubic-bezier(0.22,1,0.36,1);
}


/* =========================================
   IMAGE
   ========================================= */

.zv-feature__icon img {

  width: 100%;

  height: 100%;

  object-fit: contain;

  display: block;

  filter:
    drop-shadow(
      0 8px 18px
      rgba(0,0,0,0.10)
    );

  transition:
    transform 0.7s
      cubic-bezier(0.22,1,0.36,1),
    filter 0.7s ease;
}


/* =========================================
   HOVER
   ========================================= */

.zv-feature:hover
.zv-feature__icon {

  transform:
    translate3d(0,-4px,0);
}

.zv-feature:hover
.zv-feature__icon img {

  transform:
    scale(1.06)
    rotate(1deg);

  filter:
    drop-shadow(
      0 13px 24px
      rgba(0,0,0,0.16)
    );
}


/* =========================================
   TITLE
   ========================================= */

.zv-feature__title {

  margin: 0;

  color: inherit;

  font-family: inherit;

  font-size: 1.45rem;

  line-height: 1.2;

  font-weight: 700;

  letter-spacing: 0.01em;

  text-transform: uppercase;
}


/* =========================================
   DESCRIPTION
   ========================================= */

.zv-feature__text {

  max-width: 30ch;

  margin: 13px auto 0;

  color: inherit;

  opacity: 0.68;

  font-family: inherit;

  font-size: 0.98rem;

  line-height: 1.65;

  font-weight: 400;
}


/* =========================================
   DIVIDER
   ========================================= */

.zv-features__divider {

  flex: 0 0 1px;

  width: 1px;

  margin: 12px 0;

  background: currentColor;

  opacity: 0.10;
}


/* =========================================
   TABLET
   ========================================= */

@media screen and (max-width: 900px) {

  .zv-features {

    padding: 75px 25px;
  }

  .zv-feature {

    padding: 8px 25px 12px;
  }

  .zv-feature__icon {

    width: 112px;

    height: 112px;

    margin-bottom: 24px;
  }

  .zv-feature__title {

    font-size: 1.25rem;
  }

  .zv-feature__text {

    font-size: 0.94rem;
  }

}


/* =========================================
   MOBILE
   ========================================= */

@media screen and (max-width: 760px) {

  .zv-features {

    padding: 70px 20px;
  }

  .zv-features__inner {

    flex-direction: column;

    gap: 0;
  }

  .zv-feature {

    padding:
      10px 16px 38px;
  }

  .zv-feature + .zv-features__divider {

    display: block;

    width: 100%;

    max-width: 180px;

    height: 1px;

    margin:
      0 auto 38px;

    flex: none;
  }

  .zv-feature__icon {

    width: 105px;

    height: 105px;

    margin-bottom: 22px;
  }

  .zv-feature__title {

    font-size: 1.18rem;

    line-height: 1.25;
  }

  .zv-feature__text {

    max-width: 32ch;

    margin-top: 11px;

    font-size: 0.94rem;

    line-height: 1.6;
  }

}


/* =========================================
   SMALL PHONES
   ========================================= */

@media screen and (max-width: 380px) {

  .zv-features {

    padding: 60px 16px;
  }

  .zv-feature {

    padding-left: 10px;

    padding-right: 10px;
  }

  .zv-feature__icon {

    width: 95px;

    height: 95px;
  }

  .zv-feature__title {

    font-size: 1.08rem;
  }

  .zv-feature__text {

    font-size: 0.9rem;
  }

}


/* =========================================
   REDUCED MOTION
   ========================================= */

@media (prefers-reduced-motion: reduce) {

  .zv-feature {

    opacity: 1;

    transform: none;

    transition: none;
  }

  .zv-feature__icon,
  .zv-feature__icon img {

    transition: none;
  }

}
}





#fw-section-header {
--color-primary: #f9f5f5;
--color-primary-rgb: 249, 245, 245;
--color-background: #070202;
--color-background-rgb: 7, 2, 2;
--color-on-background: #f5eded;
--color-on-background-rgb: 245, 237, 237;
--color-on-primary: #000000;
--color-on-primary-rgb: 0, 0, 0;
--color-product-image-background: #e9e9e7;
--color-background-brightness: 3;
background-color: var(--color-background);
color: var(--color-on-background);
--primary-btn-bg: #f9f5f5;
--primary-btn-text: #000000;
--primary-btn-border-color: #f5eded;
--secondary-btn-bg: transparent;
--secondary-btn-text: #f5eded;
--secondary-btn-border-color: #f5eded;
/* =========================================================
   ZEVANTTE — CLEAN PROFESSIONAL HEADER
   ========================================================= */


/* =========================================================
   HEADER COLORS
   ========================================================= */

header .header__nav .header__link,
header .header__nav .header__list-item > .header__link,
header .header__logo-link,
header .header__logo .text-logo,
header .header__icons .header__link,
header .header__icons svg,
header .header__icons path,
header .header__mobile-menu .header__icon,
header .header__mobile-menu svg,
header .header__mobile-menu path {
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
  fill: #000 !important;
  stroke: #000 !important;
  opacity: 1 !important;
  visibility: visible !important;
}


/* =========================================================
   ZEVANTTE LOGO
   ========================================================= */

/* Text logo */

header .header__logo,
header .header__logo-link,
header .header__logo .text-logo {
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
  fill: #000 !important;
  opacity: 1 !important;
}


/* If ZEVANTTE is an image/SVG logo */

header .header__logo img,
header .header__logo-link img {
  filter: brightness(0) !important;
  opacity: 1 !important;
}


/* =========================================================
   MAIN NAVIGATION
   ========================================================= */

header .header__nav .header__list {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  column-gap: 30px !important;

  margin: 0 !important;
  padding: 0 !important;
}


/* Every navigation item behaves identically */

header .header__nav .header__list-item {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin: 0 !important;
  padding: 0 !important;
}


/* Every navigation link */

header .header__nav .header__list-item > .header__link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: auto !important;
  height: auto !important;

  margin: 0 !important;
  padding: 0 !important;

  line-height: 1 !important;
  vertical-align: middle !important;

  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
}


/* =========================================================
   SHOP
   ========================================================= */

/* Hide original SHOP text but keep navigation link */

header .header__nav .header__list-item:first-child > .header__link {
  position: relative !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 34px !important;
  min-width: 34px !important;
  height: auto !important;

  margin: 0 !important;
  padding: 0 !important;

  line-height: 1 !important;

  text-indent: -9999px !important;
  overflow: visible !important;
}


/* Create SHOP */

header .header__nav .header__list-item:first-child > .header__link::after {
  content: "SHOP" !important;

  position: absolute !important;

  left: 50% !important;
  top: 50% !important;

  transform: translate(-50%, -50%) !important;

  display: block !important;

  width: max-content !important;
  white-space: nowrap !important;

  color: #000 !important;
  -webkit-text-fill-color: #000 !important;

  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  letter-spacing: inherit !important;
  line-height: 1 !important;

  text-indent: 0 !important;

  opacity: 1 !important;
  visibility: visible !important;
}


/* =========================================================
   HOVER
   ========================================================= */

header .header__nav .header__link:hover,
header .header__logo-link:hover,
header .header__icons .header__link:hover {
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
  opacity: 1 !important;
}


header .header__nav .header__link:hover::after {
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
}


/* =========================================================
   ICONS
   ========================================================= */

header .header__icons svg,
header .header__icons path {
  fill: #000 !important;
  stroke: #000 !important;
  color: #000 !important;
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.mobile-menu .mobile-menu__link,
.mobile-menu .mobile-menu__link-icon,
.mobile-menu svg,
.mobile-menu path,
.mobile-menu .mobile-menu__link:hover,
.mobile-menu .mobile-menu__link:hover svg,
.mobile-menu .mobile-menu__link:hover path {
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
  fill: #000 !important;
  stroke: #000 !important;
  opacity: 1 !important;
  visibility: visible !important;
}


/* =========================================================
   CURRENCY DROPDOWN
   ========================================================= */

/* Currency dropdown panel */

header .header__list-item:has(
  > .header__link[aria-label*="Currency selector"]
) .header__dropdown {
  background: #fff !important;
  color: #000 !important;

  opacity: 1 !important;
  visibility: visible !important;

  z-index: 999999 !important;

  border: 1px solid #e5e5e5 !important;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}


/* Currency dropdown inner list */

header .header__list-item:has(
  > .header__link[aria-label*="Currency selector"]
) .header__dropdown-inner {
  background: #fff !important;
  color: #000 !important;

  opacity: 1 !important;
  visibility: visible !important;

  margin: 0 !important;
  padding: 6px 0 !important;
}


/* Currency rows */

header .header__list-item:has(
  > .header__link[aria-label*="Currency selector"]
) .header__dropdown-item {
  background: #fff !important;
  color: #000 !important;

  opacity: 1 !important;
  visibility: visible !important;

  margin: 0 !important;
  padding: 0 !important;
}


/* Currency links
   USD / EUR / CAD / GBP / AUD / NZD / SEK / NOK /
   DKK / PLN / INR / JPY / MYR / SGD / MXN / BRL / CHF
*/

header .header__list-item:has(
  > .header__link[aria-label*="Currency selector"]
) .header__dropdown-link {
  display: block !important;

  background: #fff !important;

  color: #000 !important;
  -webkit-text-fill-color: #000 !important;

  opacity: 1 !important;
  visibility: visible !important;

  padding: 8px 14px !important;

  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: 1.4 !important;

  white-space: nowrap !important;
}


/* Currency hover */

header .header__list-item:has(
  > .header__link[aria-label*="Currency selector"]
) .header__dropdown-link:hover {
  background: #f2f2f2 !important;

  color: #000 !important;
  -webkit-text-fill-color: #000 !important;

  opacity: 1 !important;
  visibility: visible !important;
}


/* Keep currency selector above everything */

header .header__list-item:has(
  > .header__link[aria-label*="Currency selector"]
) {
  position: relative !important;
  z-index: 999999 !important;
}


/* =========================================================
   CURRENCY DROPDOWN SCROLLBAR
   ========================================================= */

/* Firefox */

header .header__list-item:has(
  > .header__link[aria-label*="Currency selector"]
) .header__dropdown-inner {
  scrollbar-width: auto !important;
  scrollbar-color: #777 #e5e5e5 !important;
}


/* Chrome / Edge / Safari */

header .header__list-item:has(
  > .header__link[aria-label*="Currency selector"]
) .header__dropdown-inner::-webkit-scrollbar {
  width: 8px !important;
}


/* Scrollbar track */

header .header__list-item:has(
  > .header__link[aria-label*="Currency selector"]
) .header__dropdown-inner::-webkit-scrollbar-track {
  background: #e5e5e5 !important;

  border-radius: 10px !important;
}


/* Scrollbar thumb */

header .header__list-item:has(
  > .header__link[aria-label*="Currency selector"]
) .header__dropdown-inner::-webkit-scrollbar-thumb {
  background: #777 !important;

  border-radius: 10px !important;

  border: 2px solid #e5e5e5 !important;
}


/* Scrollbar hover */

header .header__list-item:has(
  > .header__link[aria-label*="Currency selector"]
) .header__dropdown-inner::-webkit-scrollbar-thumb:hover {
  background: #333 !important;
}


/* =========================================================
   HIDE YOUTUBE
   ========================================================= */

header a[href*="youtube" i],
aside a[href*="youtube" i],
[aria-label*="youtube" i],
[title*="youtube" i],
[class*="youtube" i] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
}