/* ============================================================
   Endless #goodmood - Landing Page Styles
   Design reference: Adobe XD 1920×12290px
   ============================================================ */

/* -- RESET & BASE --------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand colours */
  --c-bg: #d8ebf5;
  /* main page background - light powder blue */
  --c-header-bg: #5db5c8;
  /* teal header */
  --c-navy: #1c2670;
  --c-darkblue: #2d3a8c;
  --c-blue: #2195be;
  --c-teal: #2e9b9b;
  --c-pink: #d27ba3;
  --c-purple: #7b4fa0;
  --c-olive: #7b9650;
  --c-green: #4c8c2c;
  --c-red: #c23030;
  --c-yellow: #f5d400;
  --c-dream-text: #8fa5e8;
  --c-text: #393ba4;
  --c-musk: #7880b0;
  --c-tp-2ply: #d02b2f;
  --c-tp-3ply: #00aeb8;
  --c-tp-4ply: #d270a6;
  --c-tp-anniversary: #223176;
  /* body text */
  --c-text-dark: #222244;
  --c-white: #ffffff;

  /* Label pill colours */
  --label-blue: #5db5c8;
  --label-pink: #d27ba3;
  --label-olive: #7b9650;
  --label-teal: #4dbcb0;
  --label-green: #4c8c2c;
  --label-navy: #1c2670;
  --label-purple: #ab5198;

  /* Typography */
  --font-main: "Helvetica Neue", Helvetica, sans-serif;
  --font-display: "Helvetica Neue", Helvetica, sans-serif;

  /* Spacing */
  --max-w: 1140px;
  --section-gap: 120px;
  --row-gap: 140px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

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

picture {
  display: contents;
}

/* -- HEADER --------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-header-bg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 48px;
}

.header-back-link {
  color: var(--c-white);
  text-decoration: none;
  font-family: "Helvetica Neue", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: center;
  border: 2px solid var(--c-white);
  border-radius: 999px;
  padding: 6px 20px;
  transition: opacity 0.2s;
  font-size: clamp(10px, 2vw, 22px);
  line-height: 1.2;
}

.header-back-link:hover {
  opacity: 0.8;
}

.back-arrow {
  font-size: 1rem;
  line-height: 1;
}

/* -- HERO ----------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(165deg, #b8d8ec 0%, #d8ebf5 50%, #e5f0f8 100%);
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.hero-brand {
  text-align: center;
  z-index: 2;
}

.hero-brand-endless {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--c-text-dark);
  letter-spacing: 0.08em;
  text-transform: lowercase;
  display: block;
  margin-bottom: -8px;
}

.hero-hashtag {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6rem);
  color: var(--c-text-dark);
  line-height: 1.05;
  font-weight: 900;
}

.hero-kalo {
  font-family: "Nunito", cursive;
  font-style: italic;
  font-weight: 900;
  color: var(--c-yellow);
  -webkit-text-stroke: 2px var(--c-text-dark);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* -- INTRO MESSAGE ---------------------------------------- */
.intro-message {
  padding: 0 48px;
}

.intro-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.intro-message p {
  text-align: center;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 40px;
  line-height: 48px;
  color: #000000;
  font-weight: 300;
  letter-spacing: 0;
  padding-bottom: 50px;
}

.intro-highlight {
  color: var(--label-blue);
}

/* -- PRODUCT CATEGORIES --------------------------------- */
.product-category {
  padding: 0 0 var(--section-gap);
}

.category-label {
  display: flex;
  align-items: center;
  margin: 0 0 var(--row-gap) 0;
  overflow: hidden;
  --label-scroll-progress: 0;
}

.category-label span {
  display: inline-block;
  padding: 18px 42px 18px 243px;
  background: var(--label-blue);
  color: var(--c-white);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 39px;
  font-weight: 700;
  line-height: 47px;
  letter-spacing: 0;
  text-transform: uppercase;
  border-radius: 0 100px 100px 0;
  min-height: 84px;
  min-width: 760px;
  display: inline-flex;
  align-items: center;
  transform: translateX(calc((-100% + 84px) + var(--label-scroll-progress) * (100% - 84px)));
  transition: transform 0.1s linear;
}

.label-blue span {
  background: var(--label-blue);
}

/* -- PRODUCT ROW ---------------------------------------- */
.product-row {
  /* display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px; */
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto 52px;
  padding: 50px;
  justify-content: center;
}

.product-row--left-img {
  direction: ltr;
}

.product-row--left-img .product-visual {
  order: 1;
}

.product-row--left-img .product-info {
  order: 2;
}

.product-row--right-img .product-info {
  order: 1;
}

.product-row--right-img .product-visual {
  order: 2;
}

/* -- PRODUCT INFO --------------------------------------- */
.product-info {
  padding-top: 100px;
  text-align: center;
  font-size: 24px;
  color: var(--c-text);
  line-height: 1.2;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .product-info {
    padding-top: 20px;
  }
}

.product-sub {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-blue);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.product-name {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--c-text);
}

.product-name--musk {
  color: var(--c-musk);
}

.product-name--darkblue {
  color: var(--c-darkblue);
}

.product-name--purple {
  color: var(--c-purple);
}

.product-name--teal {
  color: var(--c-teal);
}

.product-name--pink {
  color: var(--c-pink);
}

.product-name--olive {
  color: var(--c-olive);
}

.product-name--green {
  color: var(--c-green);
}

.product-name--blue {
  color: var(--c-blue);
}

.product-name--navy {
  color: var(--c-navy);
}

.product-name--red {
  color: var(--c-red);
}

product-name--purple {
  color: var(--label-purple);
}

.product-tagline--pink {
  color: var(--c-pink);
}

.product-tagline--dream {
  color: var(--c-dream-text);
}

.product-subtitle-bold {
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 800;
  color: var(--c-olive);
  margin-bottom: 12px;
}

/* -- PRODUCT SPECS -------------------------------------- */
.product-specs {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.spec-big {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--c-darkblue);
  line-height: 1;
}

.spec-big small {
  font-size: 55%;
  vertical-align: baseline;
}

.spec-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text);
  opacity: 0.75;
}

.spec-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--c-pink);
  color: var(--c-pink);
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-right: 12px;
}

.spec-circle--purple {
  border-color: var(--c-purple);
  color: var(--c-purple);
}

/* Paper product specs row layout */
.paper-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spec-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  flex-wrap: wrap;
}

.spec-row strong {
  font-size: 1.5rem;
  font-family: var(--font-display);
  color: var(--c-darkblue);
}

.spec-row strong small {
  font-size: 60%;
}

.spec-icon-text {
  font-size: 1.3rem;
}

/* -- PRODUCT ICON NAME ROW ------------------------------ */
.product-icon-name {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.product-icon-svg {
  font-size: 2.4rem;
  color: var(--c-pink);
}

/* -- REFILL BADGE --------------------------------------- */
.refill-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 4px;
  flex-wrap: wrap;
}

.refill-measure {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-darkblue);
}

.refill-arrow {
  font-size: 1.5rem;
  color: var(--c-darkblue);
}

.refill-result strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--c-darkblue);
}

.refill-badge {
  background: var(--c-darkblue);
  color: var(--c-white);
  border-radius: 30px;
  padding: 4px 16px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.refill-badge--purple {
  background: var(--c-purple);
}

.refill-hint {
  font-size: 0.9rem;
  color: var(--c-text);
  opacity: 0.7;
}

/* -- PRODUCT VISUAL / PEDESTAL -------------------------- */
.product-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.product-pedestal {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 800px;
}

.product-info--dream-plus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  color: var(--c-dream-text);
}

.dream-plus-title {
  width: min(100%, 420px);
  height: auto;
}

.dream-plus-specs {
  width: min(100%, 420px);
  height: auto;
}

.dream-plus-text {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 42px;
  text-align: center;
  color: var(--c-dream-text);
  margin: 0;
}

/* Product images (original 3D renders from XD) */
.product-img {
  position: relative;
  z-index: 1;
  max-height: 500px;
  width: auto;
  margin: 0 auto;
  transition: transform 0.35s ease;
  object-fit: contain;
}

.product-img:hover {
  transform: translateY(-8px) scale(1.03);
}

.product-img--hue-teal {
  filter: hue-rotate(160deg) saturate(1.3);
}

/* -- SPEC IMAGE from XD --------------------------------- */
.spec-img {
  display: block;
  max-width: 320px;
  width: 100%;
  height: auto;
  margin: 8px 0 16px;
}

/* -- PRODUCT ICON LOGO (Image57, Image54â€¦) -------------- */
.product-icon-logo {
  display: block;
  max-width: 260px;
  height: auto;
  margin-bottom: 16px;
}

/* -- ALL IN 1 FEATURE ICONS BAR ------------------------- */
.allin1-features-img {
  display: block;
  max-width: 360px;
  width: 100%;
  height: auto;
  margin: 16px 0 4px;
}

/* -- SIDE MASCOTS --------------------------------------- */
.side-mascots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: visible;
}

.side-mascot {
  position: absolute;
  height: auto;
  opacity: 0;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.14));
  /* transition drives the entrance; JS adds .mascot-visible */
  transition:
    opacity 1.15s ease-out,
    transform 1.15s ease-out,
    margin-top 1.15s ease-out;
  transform: translateX(var(--mascot-x-start)) rotate(var(--mascot-rotate-start)) scale(var(--mascot-scale), 1);
}

/* State set by IntersectionObserver when mascot enters viewport */
.side-mascot.mascot-visible {
  opacity: 0.96;
  transform: translateX(var(--mascot-x-end)) rotate(var(--mascot-rotate-end)) scale(var(--mascot-scale), 1);
}

/* Tentacle: LEFT side, in ÎœÎ‘Î›Î‘ÎšÎ¤Î™ÎšÎ‘ section (~1700px page Y)            */
/* Design: curls in from left edge, pointing up-right, slight -8deg       */
.side-mascot--tentacle {
  left: -60px;
  /* top is set dynamically by JS (data-align-to="product-aura-plus") */
  width: clamp(160px, 14vw, 280px);
  transform-origin: bottom right;
  --mascot-x-start: -10px;
  --mascot-x-end: -30px;
  --mascot-rotate-start: 0;
  --mascot-rotate-end: 10deg;
  --mascot-scale: 1;
}

/* Llama: LEFT side, in Î¡ÎŸÎ›Î‘ Î¥Î“Î•Î™Î‘Î£ section (~7000px page Y)             */
/* Design: alpaca head peeking in from left, facing right, mostly upright  */
.side-mascot--llama {
  left: -200px;
  margin-top: 0;
  /* top is set dynamically by JS (data-align-to="product-tp-3ply") */
  width: clamp(180px, 16vw, 320px);
  transform-origin: bottom right;
  --mascot-x-start: -160px;
  --mascot-x-end: -140px;
  --mascot-rotate-start: 0deg;
  --mascot-rotate-end: 50deg;
  --mascot-scale: 1;
}

.side-mascot--seagull {
  right: 180px;
  left: auto;
  margin-top: 150px;
  /* top is set dynamically by JS (data-align-to="aporryp-rouchon") */
  width: clamp(180px, 17vw, 320px);
  transform-origin: center left;
  --mascot-x-start: 600px;
  --mascot-x-end: 400px;
  --mascot-rotate-start: -10deg;
  --mascot-rotate-end: -30deg;
  --mascot-scale: 1;
}

@media (max-width: 767px) {
  .side-mascot--seagull {
    margin-top: 0;
  }
}

/* Owl: RIGHT side, near Î¡ÎŸÎ›Î‘ ÎšÎŸÎ¥Î-Î™ÎÎ‘Î£ / Î§Î•Î™Î¡ÎŸÎ Î•Î¤Î£Î•Î¤Î•Î£ (~8900px page Y)  */
/* Design: snowy owl diving in from right, head tilted ~35deg clockwise    */
.side-mascot--owl {
  right: var(--owl-right, 0px);
  left: auto;
  margin-top: var(--owl-margin-top, 0px);
  /* top is set dynamically by JS (data-align-to="xeiropetsetes") */
  width: clamp(180px, 28vw, 360px);
  transform-origin: center center;
  --mascot-x-start: 150px;
  --mascot-x-end: 55.55%;
  --mascot-rotate-start: -35deg;
  --mascot-rotate-end: -35deg;
  --mascot-scale: 1;
}

/*
 * Î¤Î± animations Î¾ÎµÎºÎ¹Î½Î¿ÏÎ½ ÎœÎŸÎÎŸ Î±Ï†Î¿Ï Î¿Î»Î¿ÎºÎ»Î·ÏÏ‰Î¸ÎµÎ¯ Î· entrance transition (1.15s).
 * ÎˆÏ„ÏƒÎ¹ Î±Ï€Î¿Ï†ÎµÏÎ³ÎµÏ„Î±Î¹ ÏƒÏÎ³ÎºÏÎ¿Ï…ÏƒÎ· transform Î¼ÎµÏ„Î±Î¾Ï entrance ÎºÎ±Î¹ loop animation.
 * animation-delay = Î´Î¹Î¬ÏÎºÎµÎ¹Î± entrance transition.
 */
.side-mascot--tentacle.mascot-visible {
  animation: mascot-tentacle-sway 5s ease-in-out 1.15s infinite;
}

.side-mascot--seagull.mascot-visible {
  animation: mascot-seagull-glide 4.5s ease-in-out 1.15s infinite;
}

.side-mascot--llama.mascot-visible {
  margin-top: var(--llama-margin-top, 0px);
  animation: mascot-llama-bounce 3.8s ease-in-out 1.15s infinite;
}

.side-mascot--owl.mascot-visible {
  animation: mascot-owl-tilt 6s ease-in-out 1.15s infinite;
}

/* -- MASCOT INFINITE-LOOP ANIMATIONS -------------------- */

/* Tentacle: Î±Î¹Ï‰ÏÎµÎ¯Ï„Î±Î¹ ÏƒÎ±Î½ ÎµÎºÎºÏÎµÎ¼Î­Ï‚ Î±Ï€ÏŒ Î±ÏÎ¹ÏƒÏ„ÎµÏÎ¬ â€“ Î±ÏÎ³Î® ÏƒÏ„ÏÎ¿Î³Î³Ï…Î»Î® ÎºÎ¯Î½Î·ÏƒÎ· */
@keyframes mascot-tentacle-sway {

  0%,
  100% {
    transform: translateX(var(--mascot-x-end)) rotate(var(--mascot-rotate-end)) scale(var(--mascot-scale), 1) translateY(0px);
  }

  25% {
    transform: translateX(var(--mascot-x-end)) rotate(calc(var(--mascot-rotate-end) + 8deg)) scale(var(--mascot-scale), 1) translateY(-12px);
  }

  75% {
    transform: translateX(var(--mascot-x-end)) rotate(calc(var(--mascot-rotate-end) - 6deg)) scale(var(--mascot-scale), 1) translateY(8px);
  }
}

/* Seagull: Î¿Î»Î¹ÏƒÎ¸Î±Î¯Î½ÎµÎ¹ / Ï€Î»Î­ÎµÎ¹ ÏƒÏ„Î¿Î½ Î±Î­ÏÎ± â€“ up-down Î¼Îµ ÎµÎ»Î±Ï†ÏÎ¬ ÏƒÏ„ÏÎ¿Ï†Î® */
@keyframes mascot-seagull-glide {

  0%,
  100% {
    transform: translateX(var(--mascot-x-end)) rotate(var(--mascot-rotate-end)) scale(var(--mascot-scale), 1) translateY(0px);
  }

  30% {
    transform: translateX(var(--mascot-x-end)) rotate(calc(var(--mascot-rotate-end) - 5deg)) scale(var(--mascot-scale), 1) translateY(-18px);
  }

  70% {
    transform: translateX(var(--mascot-x-end)) rotate(calc(var(--mascot-rotate-end) + 4deg)) scale(var(--mascot-scale), 1) translateY(10px);
  }
}

/* Llama: ÏƒÎºÎ±Î¼Ï€Î±Î½ÎµÎ²Î¬Î¶ÎµÎ¹ ÏƒÎ±Î½ Î½Î± Ï‡Î¿ÏÎ¿Ï€Î·Î´Î¬ â€“ Ï€Î¹Î¿ Î¶Ï‰Î·ÏÎ® ÎºÎ¯Î½Î·ÏƒÎ· */
@keyframes mascot-llama-bounce {

  0%,
  100% {
    transform: translateX(var(--mascot-x-end)) rotate(var(--mascot-rotate-end)) scale(var(--mascot-scale), 1) translateY(0px);
  }

  20% {
    transform: translateX(var(--mascot-x-end)) rotate(calc(var(--mascot-rotate-end) - 4deg)) scale(var(--mascot-scale), 1) translateY(-20px);
  }

  45% {
    transform: translateX(var(--mascot-x-end)) rotate(calc(var(--mascot-rotate-end) + 3deg)) scale(var(--mascot-scale), 1) translateY(4px);
  }

  65% {
    transform: translateX(var(--mascot-x-end)) rotate(calc(var(--mascot-rotate-end) - 2deg)) scale(var(--mascot-scale), 1) translateY(-12px);
  }

  85% {
    transform: translateX(var(--mascot-x-end)) rotate(calc(var(--mascot-rotate-end) + 2deg)) scale(var(--mascot-scale), 1) translateY(2px);
  }
}

/* Owl: Î±ÏÎ³Î®, ÏƒÎ¿Ï†Î® ÎºÎ»Î¯ÏƒÎ· ÎºÎµÏ†Î±Î»Î¹Î¿Ï â€“ "ÏƒÏ„Î¿Ï‡Î±ÏƒÏ„Î¹ÎºÎ®" ÎºÎ¯Î½Î·ÏƒÎ· */
@keyframes mascot-owl-tilt {

  0%,
  100% {
    transform: translateX(var(--mascot-x-end)) rotate(var(--mascot-rotate-end)) scale(var(--mascot-scale), 1) translateY(0px);
  }

  40% {
    transform: translateX(var(--mascot-x-end)) rotate(calc(var(--mascot-rotate-end) - 10deg)) scale(var(--mascot-scale), 1) translateY(-14px);
  }

  60% {
    transform: translateX(var(--mascot-x-end)) rotate(calc(var(--mascot-rotate-end) + 6deg)) scale(var(--mascot-scale), 1) translateY(6px);
  }
}

/* -- FOOTER --------------------------------------------- */
.site-footer {
  margin-top: 24px;
  padding: 0;
  background: transparent;
  overflow: hidden;
}

.footer-stack {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
}

.footer-svg {
  max-width: 800px;
  width: 80vw;
  margin: auto;
  height: auto;
}

.footer-mountain-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  transform: translateY(140px);
  will-change: transform;
}

.footer-cloud {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  height: auto;
  will-change: transform;
}

.footer-cloud--bottom-left {
  z-index: 3;
  animation: footer-cloud-rotate-1 7s ease-in-out infinite;
}

.footer-cloud--mid-left {
  animation: footer-cloud-rotate-2 6.2s ease-in-out 0.6s infinite;
}

.footer-cloud--right {
  animation: footer-cloud-rotate-3 8s ease-in-out 1.2s infinite;
}

/* -- FOOTER CLOUD ROTATE & FLOAT ANIMATIONS ------------- */
@keyframes footer-cloud-rotate-1 {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-8px) rotate(-4deg);
  }

  66% {
    transform: translateY(6px) rotate(3deg);
  }
}

@keyframes footer-cloud-rotate-2 {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  40% {
    transform: translateY(-10px) rotate(4deg);
  }

  75% {
    transform: translateY(5px) rotate(-3deg);
  }
}

@keyframes footer-cloud-rotate-3 {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  30% {
    transform: translateY(-12px) rotate(-3deg);
  }

  70% {
    transform: translateY(8px) rotate(5deg);
  }
}

.footer-mountain {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  margin-top: -2px;
}

/* -- SCROLL-ENTRANCE ANIMATION -------------------------- */
[data-aos] {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* -- CLOUD FLOATING ANIMATION -------------------------- */
@keyframes cloud-float {

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

  50% {
    transform: translateY(-8px);
  }
}

.cloud-img {
  animation: cloud-float 4s ease-in-out infinite;
}

/* -- INTRO MESSAGE SCROLL OFFSET ----------------------- */
#intro-message {
  will-change: transform;
}

#product-tp-musk {
  --c-text: var(--c-musk);
}

#product-tp-2ply {
  --c-text: var(--c-tp-2ply);
}

#product-tp-3ply {
  --c-text: var(--c-tp-3ply);
}

#product-tp-4ply {
  --c-text: var(--c-tp-4ply);
}

#product-tp-anniversary {
  --c-text: var(--c-tp-anniversary);
}

#product-kr-2ply {
  --c-text: #47a347;
}

#product-kr-3ply {
  --c-text: #2195be;
}

#product-zik-zak {
  --c-text: var(--c-purple);
}

#product-allin1-general {
  --c-text: #2e2f5c;
}

#product-allin1-general .product-info,
#product-allin1-salt .product-info {
  text-align: left;
}

#product-allin1-general .product-info {
  padding-left: 50px;
}

#product-allin1-salt .product-info {
  padding-right: 50px;
}

@media screen and (max-width: 767px) {
  #product-allin1-general .product-info {
    padding-left: 0px;
  }
}

#product-allin1-salt {
  --c-text: #2e2f5c;
}

#product-power-plus {
  --c-text: #2e2f5c;
}

.product-row {
  margin-top: calc(var(--label-scroll-progress, 1) * -160px);
  --animated-delta-x: 10vw;
}

.product-row--left-img .product-visual {
  transform: translateX(calc(calc(var(--label-scroll-progress, 1) - 1) * var(--animated-delta-x)));
}

.product-row--left-img .product-info {
  transform: translateX(calc(calc(var(--label-scroll-progress, 1) - 1) * -1 * var(--animated-delta-x)));
}

.product-row--right-img .product-visual {
  transform: translateX(calc(calc(var(--label-scroll-progress, 1) - 1) * -1 * var(--animated-delta-x)));
}

.product-row--right-img .product-info {
  transform: translateX(calc(calc(var(--label-scroll-progress, 1) - 1) * var(--animated-delta-x)));
}

.product-specs.centered {
  align-items: center;
  justify-content: center;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  gap: 10px;
  width: 100%;
  max-width: 710px;
  font-size: 16px;
  color: var(--c-text);
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  padding-top: 20px;
}

.specs-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.specs-grid span {}

html {
  overflow-x: hidden;
}

/* Desktop Version */
@media (min-width: 768px) {
  #product-dream-plus-softener .product-img {
    transform: scale(1.2);
  }

  #product-dream-plus-softener .product-img:hover {
    transform: translateY(-8px) scale(1.236);
  }

  #product-wave .product-icon-logo {
    width: 100%;
    height: auto;
    margin-bottom: 0;
  }

  #product-wave.product-row {
    --product-image-aspect-ratio: 2159 / 2009;
    --product-image-width: 70vw;
    --product-image-height: calc(var(--product-image-aspect-ratio) * var(--product-image-width));
    --product-info-width: calc(min(300px, 23vw));
    --product-info-left: calc(((var(--product-image-width) / 70vw) * 25vw) - var(--product-info-width));
    margin-top: calc(var(--label-scroll-progress, 1) * -160px - 0.15 * var(--product-image-height));
  }

  /* Custom size of specific items */
  #product-wave .product-info {
    padding-top: 0;
    position: absolute;
    left: var(--product-info-left);
    width: var(--product-info-width);
  }

  #product-wave .product-tagline {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #product-wave .product-img {
    aspect-ratio: var(--product-image-aspect-ratio);
    width: var(--product-image-width);
    height: auto !important;
    max-height: unset;
  }
}

@media (min-width: 1140px) {
  #product-wave.product-row {
    --product-image-width: 1100px;
  }
}

/* Mobile Version */
@media (min-width: 768px) {

  /* Hide mobile specific elements */
  .product-info .product-img,
  .mobile-show {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --section-gap: 0 !important;
  }

  /* Disable the desktop animations and define mobile specific in this piece of code | BEGIN */
  html {
    scroll-behavior: auto !important;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }

  .side-mascot {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .footer-mountain-wrapper,
  #intro-message,
  .product-row,
  .product-row .product-visual,
  .product-row .product-info,
  .category-label span,
  .hero-image,
  .product-img,
  .cloud-img,
  .footer-cloud {
    transform: none !important;
    animation: none !important;
    transition: none !important;
    margin-top: 0 !important;
  }

  /* Disable the desktop animations and define mobile specific in this piece of code | END */

  .hero {
    min-height: auto;
    height: auto;
  }

  .intro-message p {
    font-size: 1.2em;
    line-height: 1.1;
  }

  .hero-brand {
    padding-top: 50px;
  }

  .category-label span {
    font-size: 13px;
    min-width: 60vw;
    min-height: 1.3em;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 80px;
    padding-right: 15px;
    display: inline-block;
    text-align: right;
    line-height: 1.5em;
  }

  .product-row {
    padding: 0;
    margin-bottom: 0 !important;
  }

  .product-row h2,
  .product-row .product-title,
  .product-row .product-img,
  .product-row .product-specs-img,
  .product-row .specs-grid,
  .product-row .product-specs {
    width: 80vw;
    margin: auto;
  }

  .product-row .product-info {
    margin: auto;
  }

  /* Custom size of specific items */
  #product-wave .product-img {
    width: 100vw;
  }

  .product-category {
    margin-top: 2em;
  }

  .specs-grid {
    font-size: 8px;
  }

  /* Animate tentacle to move (translateY between 0 and 5vw for 2seconds infinitely */
  @keyframes tentacle-move {
    0% {
      transform: rotate(80deg) translateY(0vw);
    }

    50% {
      transform: rotate(90deg) translateY(5vw);
    }

    100% {
      transform: rotate(80deg) translateY(0vw);
    }
  }

  @keyframes seagull-move {
    0% {
      transform: rotate(-45deg) translate(30vw, 20vw);
    }

    50% {
      transform: rotate(-40deg) translate(30vw, 20vw);
    }

    100% {
      transform: rotate(-45deg) translate(30vw, 20vw);
    }
  }

  @keyframes alpaca-move {
    0% {
      transform: rotate(45deg) translateY(20vw);
    }

    50% {
      transform: rotate(47deg) translateY(25vw);
    }

    100% {
      transform: rotate(45deg) translateY(20vw);
    }
  }

  @keyframes owl-move {
    0% {
      transform: rotate(-45deg) translate(30vw, 20vw);
    }

    50% {
      transform: rotate(-43deg) translate(28vw, 20vw);
    }

    100% {
      transform: rotate(-45deg) translate(30vw, 20vw);
    }
  }

  @keyframes cloud-move {
    0% {
      transform: translateX(0vw) translateY(0vw);
    }

    25% {
      transform: translateX(2.5vw) translateY(2vw);
    }

    50% {
      transform: translateX(0vw) translateY(0vw);
    }

    25% {
      transform: translateX(2.5vw) translateY(2vw);
    }

    100% {
      transform: translateX(0vw) translateY(0vw);
    }
  }

  /* Mascots */
  .horizontal-tentacle {
    margin-top: -35vw;
    margin-bottom: -30vw;
    height: 110vw;
    width: auto;
    object-fit: contain;
    animation: tentacle-move 2s ease-in-out infinite !important;
  }

  .mobile-seagull {
    margin-top: 0vw;
    margin-bottom: -30vw;
    height: 110vw;
    width: auto;
    object-fit: contain;
    animation: seagull-move 2s ease-in-out infinite !important;
  }

  .mobile-lama {
    margin-top: -25vw;
    margin-bottom: -5vw;
    height: 130vw;
    width: auto;
    object-fit: contain;
    animation: alpaca-move 2s ease-in-out infinite !important;
  }

  .mobile-owl {
    margin-top: -80vw;
    margin-bottom: 4vw;
    width: 150vw;
    max-width: 200vw;
    height: auto;
    object-fit: contain;
    animation: owl-move 2s ease-in-out infinite !important;
    margin-left: 20vw;
  }

  /* Hide desktop specific elements */
  .side-mascots,
  .product-row .product-visual,
  .mobile-hide {
    display: none;
  }

  /* Extra Clouds for mobile */
  .side_clouds_wrapper {
    margin-top: -50px;
    margin-bottom: -50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    z-index: 1;
    pointer-events: none;
  }

  .side_clouds_wrapper img {
    width: 50vw !important;
    height: auto !important;
    object-fit: contain !important;
    animation: cloud-move 4s linear infinite !important;
    max-width: 50vw !important;
  }

  .side_clouds_wrapper img:nth-child(1) {
    margin-left: -30vw;
  }

  .side_clouds_wrapper img:nth-child(2) {
    margin-right: -30vw;
  }

  .mobile-cloud-4ply {
    position: relative;
    margin-left: 65vw;
    margin-top: -140vw;
    margin-bottom: 60vw;
    width: 100vw !important;
    height: auto !important;
    object-fit: contain !important;
    animation: cloud-move 4s linear infinite !important;
    max-width: 100vw !important;
  }

  .mobile-cloud-rola-kouzinas {
    position: relative;
    margin-left: -45vw;
    margin-top: -10vw;
    margin-bottom: -25vw;
    width: 100vw !important;
    height: auto !important;
    object-fit: contain !important;
    animation: cloud-move 4s linear infinite !important;
    max-width: 100vw !important;
  }

  .product-info p {
    font-size: 21px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 24px;
  }

  @media (max-width: 767px) {
    .product-row .product-info {
      display: flex !important;
      flex-direction: column;
      justify-content: center !important;
      align-items: center !important;
      text-align: center !important;
    }

    .product-tagline {
      order: 10;
    }
  }

  .product-tagline--pink {
    max-width: 80vw;
  }

  .product-tagline {
    padding-top: 20px;
  }

  .footer-mountain {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    width: 260vw;
    max-width: 260vw;
    margin-left: -80vw;
    margin-top: -5vw;
  }

  #product-power-plus .product-img {
    margin-top: -6vw !important;
    margin-bottom: -6vw !important;
  }

  #product-allin1-general .product-img {
    margin-top: 0 !important;
    margin-bottom: 7.5vw !important;
    transform: translateX(12vw) scale(1.45) !important;
  }

  #product-allin1-general .product-info {
    align-items: flex-start !important;
    justify-items: start !important;
    place-items: start !important;
    text-align: left !important;
  }

  #product-allin1-general .product-info>* {
    align-self: flex-start !important;
    justify-self: start !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
  }

  /* Mobile: ÎºÎ­Î½Ï„ÏÎ¿ */
  @media (max-width: 767px) {
    #product-allin1-general .product-info {
      align-items: center !important;
      text-align: center !important;
    }

    #product-allin1-general .product-info>*,
    #product-allin1-general .product-name,
    #product-allin1-general .product-tagline,
    #product-allin1-general .specs-grid,
    #product-allin1-general .specs-grid .txt,
    #product-allin1-salt,
    #product-allin1-salt .product-info,
    #product-allin1-salt .product-info>*,
    #product-allin1-salt .product-name,
    #product-allin1-salt .product-tagline,
    #product-allin1-salt .specs-grid,
    #product-allin1-salt .specs-grid .txt {
      align-self: center !important;
      justify-self: center !important;
      text-align: center !important;
    }
  }

  #product-allin1-general .specs-grid {
    justify-content: start !important;
    justify-items: start !important;
    text-align: left !important;
  }

  #product-allin1-general .specs-grid .txt {
    width: 100% !important;
  }

  #product-allin1-general .product-info {
    padding-bottom: 20px;
  }

  #product-allin1-salt .product-img {
    margin-top: 0 !important;
    margin-bottom: 7.5vw !important;
    transform: translateX(2vw) scale(1.45) !important;
  }

  #malaktika-rouchon .product-img {
    width: 120vw !important;
  }

  #polykatharistika-sprei .product-img,
  #rola-ygeias .product-img,
  #rola-kouzinas .product-img {
    width: 80vw !important;
    padding-top: 20px;
  }

  @media (max-width: 767px) {
    #product-allin1-general {
      display: block !important;
    }

    #product-allin1-general .product-info {
      width: 100% !important;
      max-width: none !important;
      flex: 0 0 100% !important;
      margin: 0 !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
      align-items: center !important;
      text-align: center !important;
    }

    #product-allin1-general .product-img.mobile-show {
      display: block !important;
      margin-left: auto !important;
      margin-right: auto !important;
      align-self: center !important;
    }

    #polykatharistika-sprei #product-allin1-general {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
    }

    #polykatharistika-sprei #product-allin1-general .product-info,
    #polykatharistika-sprei #product-allin1-salt .product-info {
      position: relative !important;
      left: auto !important;
      right: auto !important;
      transform: none !important;

      width: 100% !important;
      max-width: 100% !important;
      flex-basis: 100% !important;

      margin: 0 auto !important;
      padding-left: 0 !important;
      padding-right: 0 !important;

      align-items: center !important;
      text-align: center !important;
    }

    #polykatharistika-sprei #product-allin1-general .product-img.mobile-show,
    #polykatharistika-sprei #product-allin1-salt .product-img.mobile-show {
      position: relative !important;
      left: auto !important;
      right: auto !important;
      transform: none !important;

      display: block !important;
      align-self: center !important;
      margin: 0 auto !important;
    }
  }

  .category-label {
    margin: 0;
  }

  #product-wave .product-img {
    margin-top: -20vw !important;
    margin-bottom: -16vw;
  }

  .spec-img {
    margin: auto;
    padding-top: 20px;
  }

  #product-tp-musk .product-info p {
    width: 60vw;
    max-width: 250px;
  }

  .product-name {
    font-size: 21px;
    font-weight: 700;
  }

  #product-tp-2ply {
    padding-top: 50px;
  }
}

.product-tagline {
  max-width: 250px;
  width: 100%;
  text-align: center;
  margin-inline: auto;
  align-self: center;
}

@media (min-width: 768px) {

  #product-allin1-general .product-tagline,
  #product-allin1-salt .product-tagline {
    align-self: flex-start;
    text-align: left;
    max-width: 450px;
    margin-left: 0;
    margin-right: auto;
  }
}

#product-kr-3ply .product-tagline {
  max-width: 280px;
}

#product-zik-zak .product-tagline {
  max-width: 310px;
}

#product-zik-zak {
  --c-text: #ab5198;
}