/*
  Studieo7 production overrides.
  Keep hand-maintained fixes here instead of adding more inline CSS to the exported theme HTML.
*/

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

:root {
  --font-base: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-headline: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  -webkit-overflow-scrolling: touch;
}

body,
button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
.hero__title,
.headline__title,
.hero__text,
.wt-announcement__text,
.wt-header,
.wt-footer {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.site-header,
.brand-video-banner,
.intro-statement,
.featured-product-tiles,
.brand-story-parallax,
.brand-logo-carousel,
.featured-video-intro,
.interactive-video-section,
.argan-oil-hero,
.popular-collections,
.self-care-message,
.interactive-lookbook,
.customer-reviews,
.social-proof-heading,
.instagram-marquee,
.brand-values,
.newsletter-signup,
.site-footer-section {
  scroll-margin-top: 96px;
}

.site-header a[href="#"],
.region-drawer-section a[href="#"] {
  cursor: pointer;
}

.site-header .wt-header__logo__link:focus-visible,
.site-header .wt-header__social-link:focus-visible,
.wt-footer a:focus-visible,
.hero__button:focus-visible,
.wt-localization-trigger:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

@media (min-width: 990px) {
  .wt-header .wt-header__menu-trigger {
    display: none !important;
  }

  .wt-header .wt-header__nav-teaser__list {
    display: flex !important;
  }
}

@media (max-width: 989px) {
  .wt-header .wt-header__nav-teaser {
    display: flex !important;
    align-items: center;
    min-width: 48px;
    z-index: 20;
  }

  .wt-header .wt-header__menu-trigger {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    color: currentColor;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .wt-header .wt-header__menu-trigger .svg-icon {
    display: block !important;
    width: 28px !important;
    height: 28px !important;
    fill: currentColor;
  }

  .wt-header .wt-header__nav-teaser__list {
    display: none !important;
  }
}

#wt-drawer-nav .mega-menu {
  display: none;
}

#wt-drawer-nav .wt-drawer-site-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 18px 32px 32px;
}

#wt-drawer-nav .wt-drawer-site-nav__link {
  display: block;
  padding: 15px 0;
  color: inherit;
  font-family: var(--font-headline);
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.1;
  border-bottom: 1px solid var(--color-border);
}

#wt-drawer-nav .wt-drawer-site-nav__link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.wt-newsletter__fieldset input[type="email"] {
  min-height: 44px;
}

#newsletter-signup .wt-newsletter__send {
  border-radius: 999px;
  padding-inline: 34px;
}

.wt-brands__image,
.hero__img,
.wt-dot__image,
.wt-keys__image {
  background-color: transparent;
}

#brand-logo-carousel .wt-brands__image {
  object-fit: contain;
}

#brand-video-banner .wt-video {
  position: relative;
}

#brand-video-banner .project-card {
  --project-card-cycle: 20s;
  position: absolute;
  top: 120px;
  right: 22px;
  z-index: 4;
  display: block;
  width: 280px;
  overflow: hidden;
  padding: 8px 8px 10px;
  color: #08080a;
  background: #f4f3f7;
  box-shadow: none;
  transform: translateZ(0);
}

#brand-video-banner .project-card:focus-visible {
  outline: 2px solid #f4f3f7;
  outline-offset: 4px;
}

#brand-video-banner .project-card img {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: cover;
}

#brand-video-banner .project-card__media {
  position: relative;
  display: block;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f4f3f7;
  border-radius: 2px;
}

#brand-video-banner .project-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.045);
  animation: project-card-fade var(--project-card-cycle) infinite cubic-bezier(0.45, 0, 0.15, 1);
  backface-visibility: hidden;
  will-change: opacity, transform;
}

#brand-video-banner .project-card__media img:nth-child(1) {
  opacity: 1;
  animation-delay: 0s;
}

#brand-video-banner .project-card__media img:nth-child(2) {
  animation-delay: 5s;
}

#brand-video-banner .project-card__media img:nth-child(3) {
  animation-delay: 10s;
}

#brand-video-banner .project-card__media img:nth-child(4) {
  animation-delay: 15s;
}

@keyframes project-card-fade {
  0%, 5% {
    opacity: 1;
    transform: scale(1.025);
  }

  22% {
    opacity: 1;
    transform: scale(1);
  }

  31%, 100% {
    opacity: 0;
    transform: scale(1.045);
  }
}

@keyframes project-card-copy-fade {
  0%, 5% {
    opacity: 1;
    transform: translateY(0);
  }

  22% {
    opacity: 1;
    transform: translateY(0);
  }

  31%, 100% {
    opacity: 0;
    transform: translateY(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  #brand-video-banner .project-card__media img {
    animation: none;
    opacity: 0;
    transform: none;
  }

  #brand-video-banner .project-card__media img:first-child {
    opacity: 1;
  }

  #brand-video-banner .project-card__copy-item {
    animation: none;
    opacity: 0;
    transform: none;
  }

  #brand-video-banner .project-card__copy-item:first-child {
    opacity: 1;
  }
}

#brand-video-banner .project-meta,
#brand-video-banner .project-title {
  position: static;
  text-shadow: none;
}

#brand-video-banner .project-card__copy {
  position: relative;
  display: block;
  min-height: 74px;
}

#brand-video-banner .project-card__copy-item {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transform: translateY(6px);
  animation: project-card-copy-fade var(--project-card-cycle) infinite cubic-bezier(0.45, 0, 0.15, 1);
  will-change: opacity, transform;
}

#brand-video-banner .project-card__copy-item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  animation-delay: 0s;
}

#brand-video-banner .project-card__copy-item:nth-child(2) {
  animation-delay: 5s;
}

#brand-video-banner .project-card__copy-item:nth-child(3) {
  animation-delay: 10s;
}

#brand-video-banner .project-card__copy-item:nth-child(4) {
  animation-delay: 15s;
}

#brand-video-banner .project-meta {
  display: block;
  padding: 15px 0 8px;
  color: #68666b;
  font-family: Satoshi, "Satoshi Placeholder", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  line-height: 1.2;
  white-space: nowrap;
}

#brand-video-banner .project-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 4px;
  font-family: Satoshi, "Satoshi Placeholder", sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.1;
}

#brand-video-banner .project-title span:first-child {
  min-width: 0;
}

#brand-video-banner .project-title span[aria-hidden="true"] {
  display: inline-flex;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(8, 8, 10, 0.16);
  border-radius: 50%;
  color: #f4f3f7;
  background: #08080a;
  font-size: 15px;
  line-height: 1;
  transform: translate3d(0, 0, 0);
  transition:
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    color 300ms ease,
    background-color 300ms ease,
    border-color 300ms ease;
}

@media (hover: hover) {
  #brand-video-banner .project-card:hover .project-title span[aria-hidden="true"] {
    color: #08080a;
    background: #f4f3f7;
    border-color: rgba(8, 8, 10, 0.28);
    transform: translate3d(3px, -3px, 0);
  }
}

@media (max-width: 749px) {
  #brand-video-banner .project-card {
    display: none;
  }
}

#popular-collections .headline__title {
  color: rgb(252, 215, 24);
  font-family: Satoshi, "Satoshi Placeholder", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
}

#featured-product-tiles .hero__pic-container {
  position: relative;
}

#featured-product-tiles .hero__pic-container::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.02) 0%,
      rgba(0, 0, 0, 0.12) 42%,
      rgba(0, 0, 0, 0.42) 100%
    );
}

#featured-product-tiles .hero__overlay {
  z-index: 2;
}

#featured-product-tiles .hero__title,
#featured-product-tiles .hero__text {
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

#featured-product-tiles .featured-product-tiles__franchise {
  background:
    linear-gradient(
      115deg,
      #ffffff 0%,
      #ffffff 24%,
      rgba(255, 255, 255, 0.88) 29%,
      rgba(19, 73, 57, 0.96) 43%,
      rgba(13, 42, 42, 0.98) 100%
    ),
    #134939;
  color: #ffffff;
}

#featured-product-tiles .featured-product-tiles__franchise-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px 36px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 62px) 0;
}

#featured-product-tiles .featured-product-tiles__franchise-kicker {
  grid-column: 1 / -1;
  color: #fcd718;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

#featured-product-tiles .featured-product-tiles__franchise-title {
  margin: 0;
  max-width: 820px;
  color: #ffffff;
  background:
    linear-gradient(
      115deg,
      #073d37 0%,
      #073d37 38%,
      #ffffff 48%,
      #ffffff 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-headline);
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  font-weight: 700;
  line-height: 0.98;
}

#featured-product-tiles .featured-product-tiles__franchise-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  color: #134939;
  background: #fcd718;
  border: 1px solid #fcd718;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

#featured-product-tiles .featured-product-tiles__franchise-link:hover,
#featured-product-tiles .featured-product-tiles__franchise-link:focus-visible {
  color: #ffffff;
  background: transparent;
  transform: translateY(-1px);
}

@media (max-width: 749px) {
  #featured-product-tiles .featured-product-tiles__franchise-inner {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 520px);
  }

#featured-product-tiles .featured-product-tiles__franchise-link {
    width: 100%;
  }
}

#social-proof-heading,
#instagram-marquee {
  --social-proof-yellow: #ffcc43;
  --color-background: transparent;
  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      #ffffff 25%,
      rgba(255, 255, 255, 0.9) 26%,
      var(--social-proof-yellow) 38%,
      var(--social-proof-yellow) 100%
    ) !important;
}

#instagram-marquee {
  padding-bottom: clamp(28px, 4vw, 64px);
  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      #ffffff 25%,
      rgba(255, 255, 255, 0.9) 26%,
      var(--social-proof-yellow) 38%,
      var(--social-proof-yellow) 100%
    ) !important;
}

#social-proof-heading [data-area-id],
#social-proof-heading .hero,
#social-proof-heading .hero__wrapper,
#social-proof-heading .hero__overlay,
#instagram-marquee [data-area-id],
#instagram-marquee .wt-slider,
#instagram-marquee .wt-brands__container,
#instagram-marquee .wt-slider__container--featured,
#instagram-marquee .wt-brands__marquee {
  background: transparent !important;
}

#argan-feature-spacer,
#argan-oil-hero {
  --argan-shared-background: #134939;
}

#argan-feature-spacer {
  background-color: var(--argan-shared-background) !important;
}

#argan-feature-spacer [data-area-id="argan-feature-spacer"],
#argan-feature-spacer .wt-button-section {
  --argan-texture-noise: url("https://framerusercontent.com/images/rR6HYXBrMmX4cRpXfXUOvpvpB0.png");
  --argan-texture-opacity: 0.12;
  --argan-texture-size: 180px 180px;
  background: var(--argan-shared-background) !important;
  position: relative;
  isolation: isolate;
}

#argan-feature-spacer [data-area-id="argan-feature-spacer"]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--argan-texture-noise);
  background-position: center;
  background-repeat: repeat;
  background-size: var(--argan-texture-size);
  opacity: var(--argan-texture-opacity);
}

#argan-feature-spacer [data-area-id="argan-feature-spacer"] > * {
  position: relative;
  z-index: 1;
}

#argan-oil-hero {
  --argan-hero-texture-noise: url("https://framerusercontent.com/images/rR6HYXBrMmX4cRpXfXUOvpvpB0.png");
  --argan-hero-texture-opacity: 0.12;
  --argan-hero-texture-size: 180px 180px;
  background-color: var(--argan-shared-background) !important;
}

#argan-oil-hero [data-area-id="argan-oil-hero"] {
  background-color: var(--argan-shared-background) !important;
}

#argan-oil-hero .hero__pic-container,
#argan-oil-hero .wt-video__movie__video-hosted-wrapper {
  background: var(--argan-shared-background) !important;
  position: relative;
  isolation: isolate;
}

#argan-oil-hero .hero,
#argan-oil-hero .hero__pic,
#argan-oil-hero .hero__pic--no-img {
  background: var(--argan-shared-background) !important;
}

#argan-oil-hero .hero__pic-container::after,
#argan-oil-hero .wt-video__movie__video-hosted-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: var(--argan-hero-texture-noise);
  background-position: center;
  background-repeat: repeat;
  background-size: var(--argan-hero-texture-size);
  opacity: var(--argan-hero-texture-opacity);
}

#argan-oil-hero .hero__overlay,
#argan-oil-hero .interactive-video__control-button {
  position: relative;
  z-index: 2;
}

#argan-oil-hero .hero__overlay {
  background: var(--argan-shared-background) !important;
  isolation: isolate;
}

#argan-oil-hero .hero__overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--argan-hero-texture-noise);
  background-position: center;
  background-repeat: repeat;
  background-size: var(--argan-hero-texture-size);
  opacity: var(--argan-hero-texture-opacity);
}

#argan-oil-hero .hero__overlay > * {
  position: relative;
  z-index: 1;
}

#argan-oil-hero .hero__overlay__content {
  max-width: min(760px, calc(100% - 32px));
}

#argan-oil-hero .hero__title {
  line-height: 0.95;
}

#argan-oil-hero .hero__text {
  max-width: 680px;
  margin-inline: auto;
  line-height: 1.55;
}

#intro-statement [data-area-id="intro-statement"] {
  --intro-texture-noise: url("https://framerusercontent.com/images/rR6HYXBrMmX4cRpXfXUOvpvpB0.png");
  --intro-texture-opacity: 0.22;
  --intro-texture-size: 180px 180px;
  --intro-texture-light: rgba(15, 95, 73, 0.75);
  --intro-texture-shadow: rgba(2, 35, 30, 0.85);
  position: relative;
  isolation: isolate;
}

#intro-statement [data-area-id="intro-statement"]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 45% 18%, var(--intro-texture-light), transparent 45%),
    radial-gradient(circle at 80% 35%, var(--intro-texture-shadow), transparent 45%),
    var(--intro-texture-noise);
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, repeat;
  background-size: auto, auto, var(--intro-texture-size);
  mix-blend-mode: overlay;
  opacity: var(--intro-texture-opacity);
}

#intro-statement [data-area-id="intro-statement"] > * {
  position: relative;
  z-index: 1;
}
