/* =========================================
   REMIFY PRODUCT PAGE FOUNDATION
   ========================================= */

:root {
  --black: #080808;
  --white: #ffffff;

  --violet: #5b2d82;
  --violet-light: #7540a2;
  --violet-soft: rgba(91, 45, 130, 0.08);

}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Satoshi", sans-serif;
  background: #f7f5f8;
  color: #171717;
  font-weight: 400;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
}

/* Everything else */
p,
span,
li,
a,
button,
input,
textarea,
select {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
}


/* =========================================
   HIDE NATIVE SCROLLBAR
   ========================================= */

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}


/* =========================================
   REMIFY CUSTOM SCROLL PROGRESS
   ========================================= */

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;

  width: 6px;
  height: 100vh;

  background: rgba(41, 0, 82, 0.07);

  pointer-events: none;

  z-index: 99999;
}

.scroll-progress-fill {
  width: 100%;
  height: 100%;

  background:
    linear-gradient(
      180deg,
      #6d32a8 0%,
      #5b2d82 55%,
      #17002e 100%
    );

  transform:
    scaleY(0);

  transform-origin: top;

  will-change: transform;

  box-shadow:
    0 0 6px rgba(41, 0, 82, 0.45),
    0 0 14px rgba(41, 0, 82, 0.18);

  border-radius:
    0 0 4px 4px;
}


/* =========================================
   REMIFY CUSTOM CURSOR
   ========================================= */

.cursor-trail {
  position: fixed;

  inset: 0;

  width: 100vw;
  height: 100vh;

  pointer-events: none;

  z-index: 100000;

  display: block;
}


/* =========================================
   DESKTOP / FINE POINTER ONLY
   ========================================= */

@media (hover: hover) and (pointer: fine) {

  * {
    cursor: none !important;
  }


  /* -----------------------------------------
     SPARK
     ----------------------------------------- */

  .cursor-spark {
    position: fixed;

    top: 0;
    left: 0;

    width: 16px;
    height: 16px;

    pointer-events: none;

    z-index: 100001;

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

    display: flex;

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

    transition:
      transform .2s cubic-bezier(.22,1,.36,1),
      filter .2s ease;
  }


  /* -----------------------------------------
     FOUR-POINT SPARK
     ----------------------------------------- */

  .cursor-spark::before,
  .cursor-spark::after,
  .cursor-spark span::before,
  .cursor-spark span::after {

    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    background:
      var(--violet, #5b2d82);

    transform-origin: center;

    border-radius: 999px;

    box-shadow:
      0 0 5px rgba(41, 0, 82, .35);
  }


  /* Vertical */

  .cursor-spark::before {
    width: 2px;
    height: 16px;

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


  /* Horizontal */

  .cursor-spark::after {
    width: 16px;
    height: 2px;

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


  /* Diagonal */

  .cursor-spark span::before {
    width: 1.5px;
    height: 12px;

    transform:
      translate(-50%, -50%)
      rotate(45deg);
  }


  .cursor-spark span::after {
    width: 1.5px;
    height: 12px;

    transform:
      translate(-50%, -50%)
      rotate(-45deg);
  }


  /* -----------------------------------------
     HOVER
     ----------------------------------------- */

  .cursor-spark.cursor-spark--active {

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

    filter:
      drop-shadow(
        0 0 5px
        rgba(41, 0, 82, .35)
      )
      drop-shadow(
        0 0 14px
        rgba(92, 45, 145, .35)
      );
  }


  /* -----------------------------------------
     CLICK
     ----------------------------------------- */

  .cursor-spark.cursor-spark--click {

    transform:
      translate(-50%, -50%)
      scale(.72);
  }

}


/* =========================================
   TOUCH DEVICES
   ========================================= */

@media (hover: none), (pointer: coarse) {

  .cursor-trail,
  .cursor-spark {
    display: none;
  }

  .scroll-progress {
    width: 4px;
  }

}




/* =========================================
   RESET
   ========================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;

  background: var(--white);
  color: var(--black);


  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}


/* =========================================
   PRODUCT NAVBAR
   ========================================= */

.product-navbar {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  padding:
    16px 22px;

  z-index: 1000;

  pointer-events: none;
}


/* =========================================
   NAVBAR INNER
   ========================================= */
.product-navbar-inner {

  position: relative;

  width: min(1400px, 100%);

  min-height: 68px;

  margin: 0 auto;

  padding: 9px 14px 9px 20px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  border:
    1px solid rgba(91, 45, 130, 0.07);

  border-radius: 18px;

  background:
    linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.58),
      rgba(255, 255, 255, 0.38)
    );

  backdrop-filter:
    blur(16px)
    saturate(125%);

  -webkit-backdrop-filter:
    blur(16px)
    saturate(125%);

  box-shadow:
    0 10px 40px rgba(91, 45, 130, 0.035);

  pointer-events: auto;

  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* =========================================
   SUBTLE VIOLET ATMOSPHERE
   ========================================= */

.product-navbar::before {
  content: "";

  position: absolute;

  top: -30px;
  left: 50%;

  width: min(900px, 90vw);
  height: 130px;

  transform:
    translateX(-50%);

  background:
    radial-gradient(
      ellipse,
      rgba(91, 45, 130, 0.11),
      transparent 70%
    );

  filter: blur(20px);

  pointer-events: none;

  z-index: -1;
}


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

.product-nav-back {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding:
    10px 12px;

  border-radius: 10px;

  color:
    rgba(8, 8, 8, 0.65);


  font-size: 12px;

  font-weight: 600;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.product-nav-back:hover {
  color: var(--violet);

  background:
    rgba(91, 45, 130, 0.06);

  transform:
    translateX(-2px);
}

.back-arrow {
  color: var(--violet);

  font-size: 17px;

  line-height: 1;

  transition:
    transform 0.3s ease;
}

.product-nav-back:hover .back-arrow {
  transform:
    translateX(-3px);
}


/* =========================================
   RIGHT NAV AREA
   ========================================= */

.product-nav-right {
  display: flex;

  align-items: center;

  gap: 18px;
}


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

.product-nav-logo {
  position: absolute;

  left: 50%;
  top: 50%;

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

  display: flex;

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

  height: 52px;

  padding: 4px 2px;
}

.product-nav-logo img {
  display: block;

  width: auto;

  height: 53px;

  max-width: 145px;

  object-fit: contain;

  transition:
    transform 0.3s ease;
}

.product-nav-logo:hover img {
  transform:
    scale(1.045);
}


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

.product-nav-toggle {
  width: 43px;
  height: 43px;

  padding: 0;

  display: flex;

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

  flex-direction: column;

  gap: 5px;

  border:
    1px solid rgba(91, 45, 130, 0.13);

  border-radius: 50%;

  background:
    rgba(91, 45, 130, 0.045);

  color: var(--black);

  cursor: pointer;

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

.product-nav-toggle:hover {
  background:
    rgba(91, 45, 130, 0.10);

  border-color:
    rgba(91, 45, 130, 0.25);

  transform:
    scale(1.04);
}

.product-nav-toggle span {
  width: 15px;
  height: 1.5px;

  background:
    var(--violet);

  border-radius: 999px;

  transition:
    transform 0.3s ease;
}


/* =========================================
   MOBILE MENU
   ========================================= */
.product-mobile-menu {
  position: fixed;
  inset: 0;

  width: 100%;
  height: 100vh;

  padding: 22px;

  border: 0;
  border-radius: 0;

  background:
    linear-gradient(
      145deg,
      rgba(0, 0, 0, 0.38),
      rgba(6, 6, 6, 0.3)
    );

  backdrop-filter:
    blur(30px)
    saturate(150%);

  -webkit-backdrop-filter:
    blur(30px)
    saturate(150%);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45);

  opacity: 0;
  visibility: hidden;

  transform: translateY(-8px);

  pointer-events: none;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.4s cubic-bezier(.22,1,.36,1);
}
/* =========================================
   MOBILE MENU OPEN
   ========================================= */

.product-navbar.menu-open
.product-mobile-menu {

  opacity: 1;

  visibility: visible;

  transform:
    scale(1)
    translateY(0);

  pointer-events: auto;
}


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

.product-mobile-menu-inner {
  width: 100%;
  height: 100%;

  display: flex;

  flex-direction: column;
}


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

.mobile-menu-header {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;
}


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

.mobile-menu-logo {
  display: flex;

  align-items: center;

  height: 52px;
  transform: scale(2);
  filter: invert(1);

  padding:
    2px 0;
}

.mobile-menu-logo img {
  width: auto;

  height: 45px;

  max-width: 145px;

  object-fit: contain;

  transition:
    transform 0.3s ease;
}


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

.mobile-menu-close {
  width: 43px;
  height: 43px;

  padding: 0;

  display: flex;

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

  position: relative;

  border:
    1px solid rgba(255, 255, 255, 0.14);

  border-radius: 50%;

  background:
    rgba(250, 250, 250, 0.05);

  cursor: pointer;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.mobile-menu-close:hover {
  background:
    rgba(91, 45, 130, 0.10);

  transform:
    rotate(4deg);
}

.mobile-menu-close span {
  position: absolute;

  width: 17px;
  height: 1.5px;

  background: white;

  border-radius: 999px;
}

.mobile-menu-close span:first-child {
  transform:
    rotate(45deg);
}

.mobile-menu-close span:last-child {
  transform:
    rotate(-45deg);
}


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

.mobile-menu-links {
  flex: 1;

  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 5px;

  padding:
    40px 0;
}

.mobile-menu-links a {
  display: flex;

  align-items: center;

  justify-content: space-between;

  padding:
    15px 4px;

  border-bottom:
    1px solid rgba(91, 45, 130, 0.10);


  font-size:
    clamp(28px, 7vw, 42px);

  font-weight:
    100;

  letter-spacing:
    -0.01em;

  color: white;

  transition:
    color 0.3s ease,
    padding 0.3s ease;
}

.mobile-menu-links a span:last-child {
  color: white;


  font-size:
    18px;

  font-weight:
    400;

  letter-spacing:
    0;

  transition:
    transform 0.3s ease;
}

.mobile-menu-links a:hover {
  color:
    var(--violet);

  padding-left:
    8px;
}

.mobile-menu-links a:hover span:last-child {
  transform:
    translate(4px, -4px);
}


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

.mobile-menu-footer {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 20px;

  padding-top:
    18px;

  border-top:
    1px solid rgba(91, 45, 130, 0.10);
}

.mobile-menu-footer p {
  max-width: 210px;

  margin: 0;

  font-size: 12px;

  line-height: 1.5;

  color: white;
}

.mobile-menu-footer span {
  white-space: nowrap;

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 0.10em;

  color: white;
}


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

@media (max-width: 700px) {

  .product-navbar {
    padding:
      12px;
  }

  .product-navbar-inner {
    min-height:
      62px;

    padding:
      7px 10px 7px 14px;

    border-radius:
      17px;
  }

  .product-nav-back {
    padding:
      9px 6px;
  }

  .product-nav-right {
    gap:
      10px;
  }

  .product-nav-logo {
    height:
      49px;
  }

  .product-nav-logo img {
    height:
      40px;

    max-width:
      135px;
  }

  .product-nav-toggle {
    width:
      41px;

    height:
      41px;
  }

.product-mobile-menu {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  height: 100dvh;

  padding: 18px;

  border-radius: 0;
}

}


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

@media (max-width: 380px) {

  .product-navbar {
    padding:
      9px;
  }

  .product-navbar-inner {
    min-height:
      58px;
  }

  .product-nav-back {
    font-size:
      11px;
  }

  .product-nav-logo img {
    height:
      37px;

    max-width:
      120px;
  }

  .product-nav-toggle {
    width:
      38px;

    height:
      38px;
  }

  .mobile-menu-links a {
    font-size:
      27px;
  }

  .mobile-menu-footer {
    flex-direction:
      column;

    align-items:
      flex-start;
  }

}


/* =========================================================
   REMIFY PRODUCT HERO
   Clean / editorial / minimal
   ========================================================= */

.product-hero {

  position: relative;

  min-height: calc(100svh - 76px);

  margin-top: 65px;

  padding:
    28px
    clamp(20px, 5vw, 76px)
    70px;

  background: #fff;

  overflow: hidden;

}
/* =========================================================
   HERO INNER
   ========================================================= */

.product-hero-inner {
  position: relative;

  width: min(1320px, 100%);

  min-height:
    calc(100svh - 174px);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(360px, 0.82fr);

  column-gap:
    clamp(45px, 7vw, 110px);

  align-items: stretch;
}


/* =========================================================
   PRODUCT IMAGE
   NO CARD
   NO BACKGROUND
   NO BORDER RADIUS
   ========================================================= */

.product-visual {
  position: relative;

  min-height: 620px;

  display: flex;

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

  background: transparent;

  border-radius: 0;

  overflow: visible;
}


/* remove the previous glow completely */

.product-visual-glow {
  display: none;
}


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

.product-image-wrap {
  position: relative;

  width: 100%;
  height: 100%;

  display: flex;

  align-items: center;
  justify-content: center;
}


.product-image-wrap img {
  display: block;

  width: 88%;
  height: 88%;

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

  filter:
    drop-shadow(
      0 30px 35px rgba(20, 10, 25, 0.12)
    );

  transform: scale(1);

  transition:
    transform .7s
    cubic-bezier(.22,1,.36,1);
}


.product-visual:hover
.product-image-wrap img {
  transform:
    scale(1.025)
    translateY(-4px);
}


/* =========================================================
   REMOVE THE OLD 01 / PRODUCT INDEX
   ========================================================= */

.product-visual-index {
  display: none;
}


/* =========================================================
   PRODUCT INFORMATION
   ========================================================= */

.product-information {
  position: relative;

  min-height: 620px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding:
    10px 0;
    margin-top: 80px;
}


/* =========================================================
   REMIFY
   Small / understated
   ========================================================= */

.product-brand-mark {
  display: flex;

  align-items: center;

  width: fit-content;

  margin-bottom:
    clamp(28px, 4vw, 42px);

  line-height: 1;
}

.brand-word {
  color: #5b2d82;


  font-size:
    clamp(52px, 6vw, 82px);

  font-weight:
    100;

  line-height:
    0.85;

  letter-spacing:
    -0.02em;

  text-transform:
    lowercase;

  background: none;

  -webkit-background-clip: initial;
  background-clip: initial;

  -webkit-text-fill-color:
    #5b2d82;
}


.brand-dot {
  width: 4px;
  height: 4px;

  margin-left: 5px;

  border-radius: 50%;

  background:
    #5b2d82;

  box-shadow: none;
}


/* =========================================================
   PRODUCT HEADING
   ========================================================= */

.product-eyebrow {
  display: none;
}


.product-heading h1 {
  margin: 0;

  color: #090909;


  font-size:
    clamp(38px, 4.5vw, 62px);

  font-weight:
    100;

  line-height:
    .95;

  letter-spacing:
    -0.01em;
}


.product-tagline {
  margin:
    13px 0 0;

  color:
    rgb(8, 8, 8);


  font-size:
    13px;

  font-weight:
    500;

  letter-spacing:
    .01em;
}


/* =========================================================
   SIZE
   ========================================================= */

.product-size-row {
  display: flex;

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

  margin-top:
    31px;

  padding:
    14px 0;

  border-top:
    1px solid rgba(8,8,8,.10);

  border-bottom:
    1px solid rgba(8,8,8,.10);
}


.product-size-row span {
  color:
    rgb(8, 8, 8);

  font-size:
    9px;

  font-weight:
    700;

  letter-spacing:
    .15em;
}


.product-size-row strong {
  color:
    #090909;

  font-size:
    12px;

  font-weight:
    600;

  letter-spacing:
    .03em;
}


/* =========================================================
   PURCHASE
   ========================================================= */

.product-purchase {
  display: flex;

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

  gap: 30px;

  margin-top:
    23px;
}


/* =========================================================
   QUANTITY
   ========================================================= */

.quantity-block {
  display: flex;

  align-items: center;

  gap: 15px;
}


.quantity-label {
  color:
    rgb(8, 8, 8);

  font-size:
    9px;

  font-weight:
    700;

  letter-spacing:
    .14em;
}


.quantity-control {
  display: flex;

  align-items: center;

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

  border-radius:
    999px;
}


.quantity-btn {
  width: 34px;
  height: 34px;

  display: flex;

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

  border: 0;

  background: transparent;

  color: #080808;

  font-size: 16px;

  cursor: pointer;

  transition:
    background .25s ease,
    color .25s ease;
}


.quantity-btn:hover {
  background:
    #5b2d82;

  color:
    #fff;
}


.quantity-value {
  min-width: 27px;

  text-align: center;

  color: #080808;

  font-size: 12px;

  font-weight: 600;
}


/* =========================================================
   PRICE
   ========================================================= */

.product-price {
  display: flex;

  align-items: baseline;

  gap: 6px;
}


.price-label {
  color:
    #5b2d82;

  font-size:
    9px;

  font-weight:
    700;

  letter-spacing:
    .12em;
}


.product-price strong {
  color:
    #080808;
  font-size:
    clamp(22px, 2.4vw, 31px);

  font-weight:
    100;

  letter-spacing:
    -.01em;
}


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

.product-description {
  max-width:
    470px;

  margin-top:
    24px;
}


.product-description p {
  margin: 0;

  color:
    rgb(8, 8, 8);

  font-size:
    12px;

  line-height:
    1.75;
}


/* =========================================================
   CHECKOUT
   ========================================================= */
.product-checkout {
  margin-top: 28px;
}


/* =========================================
   REMIFY — PREMIUM CHECKOUT BUTTON
   ========================================= */

.checkout-button {
  position: relative;
  width: 100%;
  min-height: 62px;
  padding: 0 7px 0 24px;

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

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;

  background:
    radial-gradient(
      120% 180% at 0% 50%,
      rgba(91, 45, 130, 0.22),
      transparent 48%
    ),
    #090909;

  color: #fff;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;

  overflow: hidden;
  isolation: isolate;

  box-shadow:
    0 1px 0 rgba(255,255,255,.06) inset,
    0 -1px 0 rgba(0,0,0,.5) inset,
    0 8px 24px rgba(0,0,0,.08);

  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    box-shadow .45s ease,
    border-color .45s ease;
}


/* =========================================
   PURPLE ATMOSPHERE
   ========================================= */

.checkout-button::before {
  content: "";
  position: absolute;
  inset: -80% -20%;

  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(91,45,130,.65),
      transparent 34%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(255,255,255,.12),
      transparent 28%
    );

  opacity: .18;

  transform: translateX(-18%) rotate(-8deg);

  transition:
    opacity .7s ease,
    transform .9s cubic-bezier(.22,1,.36,1);

  z-index: -2;
}


/* =========================================
   GLASS / LIGHT SWEEP
   ========================================= */

.checkout-button::after {
  content: "";
  position: absolute;

  top: -100%;
  left: -35%;

  width: 35%;
  height: 300%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.16),
      transparent
    );

  transform: rotate(18deg) translateX(-180%);

  transition:
    transform .9s cubic-bezier(.22,1,.36,1);

  pointer-events: none;
  z-index: 1;
}


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

.checkout-button > span:first-child {
  position: relative;
  z-index: 3;

  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    letter-spacing .45s ease;
}


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

.checkout-arrow {
  position: relative;
  z-index: 4;

  width: 48px;
  height: 48px;

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

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f4f0f8
    );

  color: #5b2d82;

  font-size: 17px;
  font-weight: 500;

  box-shadow:
    0 3px 10px rgba(0,0,0,.18),
    0 0 0 1px rgba(255,255,255,.5) inset;

  transition:
    transform .55s cubic-bezier(.22,1,.36,1),
    box-shadow .55s ease,
    background .45s ease;
}


/* tiny purple glow behind orb */

.checkout-arrow::before {
  content: "";
  position: absolute;
  inset: -5px;

  border-radius: inherit;

  background: rgba(91,45,130,.45);

  filter: blur(10px);

  opacity: 0;

  z-index: -1;

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


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

.checkout-button:hover {
  transform: translateY(-3px);

  border-color:
    rgba(91,45,130,.42);

  box-shadow:
    0 18px 45px rgba(38,12,55,.16),
    0 0 0 1px rgba(91,45,130,.08);
}


.checkout-button:hover::before {
  opacity: .7;
  transform: translateX(12%) rotate(-8deg);
}


.checkout-button:hover::after {
  transform:
    rotate(18deg)
    translateX(500%);
}


.checkout-button:hover
.checkout-button > span:first-child {
  letter-spacing: .16em;
}


.checkout-button:hover
.checkout-arrow {
  transform:
    translateX(-1px)
    rotate(8deg)
    scale(1.08);

  background: #fff;

  box-shadow:
    0 8px 22px rgba(91,45,130,.22),
    0 0 0 1px rgba(255,255,255,.7) inset;
}


.checkout-button:hover
.checkout-arrow::before {
  opacity: .8;
  transform: scale(1.15);
}


/* =========================================
   ACTIVE
   ========================================= */

.checkout-button:active {
  transform: translateY(-1px) scale(.985);
}

.checkout-button:active
.checkout-arrow {
  transform: scale(.96);
}


/* =========================================
   ACCESSIBILITY
   ========================================= */

@media (prefers-reduced-motion: reduce) {
  .checkout-button,
  .checkout-button::before,
  .checkout-button::after,
  .checkout-button > span:first-child,
  .checkout-arrow {
    transition: none;
  }
}

/* =========================================================
   SHIPPING / AVAILABILITY
   ========================================================= */

.product-purchase-note {
  display: flex;

  align-items: center;

  gap: 8px;

  margin-top:
    13px;

  color:
    rgb(8, 8, 8);

  font-size:
    9px;

  letter-spacing:
    .02em;
}


.purchase-note-dot {
  width: 5px;
  height: 5px;

  flex: 0 0 auto;

  border-radius: 50%;

  background:
    #5b2d82;
}


.shipping-policy-link {
  margin-left:
    5px;

  color:
    rgba(8,8,8,.55);

  text-decoration:
    underline;

  text-decoration-color:
    rgba(91,45,130,.35);

  text-underline-offset:
    3px;

  transition:
    color .25s ease;
}


.shipping-policy-link:hover {
  color:
    #5b2d82;
}

@media (max-width: 800px) {

  .product-hero {
    min-height: auto;

    padding:
      18px
      16px
      55px;
  }


  .product-hero-inner {
    min-height: auto;

    display: flex;

    flex-direction: column;

    gap: 34px;
  }


  .product-visual {
    width: 100%;

    min-height:
      min(105vw, 520px);

    height:
      min(105vw, 520px);
  }



  .product-information {
    min-height: auto;

    padding: 0;
  }


  .product-brand-mark {
    margin-bottom:
      27px;
  }


  .brand-word {
    font-size: clamp(46px, 15vw, 68px);
    letter-spacing: -0.075em;
  }


  .product-heading h1 {
    font-size:
      clamp(38px, 11vw, 54px);
  }


  .product-size-row {
    margin-top:
      27px;
  }


  .product-purchase {
    margin-top:
      21px;
  }


  .product-description {
    margin-top:
      21px;

    max-width:
      100%;
  }


  .product-checkout {
    margin-top:
      25px;
  }

}

@media (max-width: 600px) {

  .product-image-wrap {
    width: 90vw;
    height: auto;
    margin: 0 auto;
    margin-bottom: 10px;
  }

  .product-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

}

@media (max-width: 500px) {

  .product-hero {
    padding:
      12px
      13px
      45px;
      margin-top: 80px;
  }


  .product-hero-inner {
    gap:
      28px;
  }


  .product-visual {
    min-height:
      430px;

    height:
      430px;
  }


  .product-purchase {
    flex-direction:
      column;

    align-items:
      stretch;

    gap:
      20px;
  }


  .product-price {
    justify-content:
      flex-end;
  }


  .checkout-button {
    min-height:
      58px;
  }

}

/* =========================================================
   REMIFY PRODUCT DETAILS
   ========================================================= */

.product-details {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: clamp(90px, 10vw, 150px) 20px;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fbfaff 48%,
      #f7f4fa 100%
    );
  color: #111;
}


/* -----------------------------------------
   SUBTLE ATMOSPHERE
   ----------------------------------------- */

.product-details::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: 8%;
  right: -240px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(91, 45, 130, .08) 0%,
      rgba(91, 45, 130, 0) 70%
    );
  pointer-events: none;
}


.product-details::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  bottom: 10%;
  left: -240px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(41, 0, 82, .045) 0%,
      rgba(41, 0, 82, 0) 70%
    );
  pointer-events: none;
}


.product-details-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  margin: 0 auto;
}


/* =========================================================
   INTRO
   ========================================================= */

.product-details-intro {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
  margin-bottom: clamp(55px, 7vw, 90px);
}


.product-details-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  color: #5b2d82;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}


.product-details-kicker-line {
  width: 26px;
  height: 1px;
  background: #5b2d82;
}


.product-details-heading {
  max-width: 780px;
}


.product-details-heading h2 {
  margin: 0;

  font-size: clamp(42px, 6vw, 78px);

  line-height: .98;

  letter-spacing: -.02em;

  font-weight: 100;

  color: #111;
}


.product-details-heading h2 span {
  display: block;
  color: #5b2d82;
}


.product-details-heading p {
  max-width: 470px;
  margin: 26px 0 0;
  color: rgba(17, 17, 17, .56);
  font-size: 14px;
  line-height: 1.7;
}


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

.product-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}


/* =========================================================
   CARDS
   ========================================================= */

.product-detail-card {
  position: relative;
  min-height: 360px;
padding: clamp(6px, 0.8vw, 12px) clamp(26px, 3vw, 38px) clamp(26px, 3vw, 38px);
  border: 1px solid rgba(41, 0, 82, .09);
  border-radius: 4px;
  background:
    rgba(255, 255, 255, .78);
  box-shadow:
    0 20px 70px rgba(41, 0, 82, .045);
  overflow: hidden;
  transition:
    transform .45s cubic-bezier(.22, 1, .36, 1),
    box-shadow .45s ease,
    border-color .45s ease;
}


.product-detail-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.8),
      rgba(255,255,255,0)
    );
  pointer-events: none;
}


.product-detail-card:hover {
  transform: translateY(-5px);
  border-color: rgba(91, 45, 130, .16);
  box-shadow:
    0 28px 80px rgba(41, 0, 82, .08);
}


.product-detail-card-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 42px;
}


.product-detail-card-index {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(91, 45, 130, .15);
  border-radius: 50%;
  color: #5b2d82;
  font-size: 9px;
  font-weight: 100;
  letter-spacing: .08em;
}


.product-detail-card-eyebrow {
  display: block;
  margin-bottom: 5px;
  color: rgb(17, 17, 17);
  font-size: 8px;
  font-weight: 100;
  letter-spacing: .15em;
  text-transform: uppercase;
}


.product-detail-card h3 {
  margin: 0;
  color: #111;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.1;
  letter-spacing: -.01em;
  font-weight: 100;
}


/* =========================================================
   INGREDIENTS
   ========================================================= */

.product-ingredients {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}


.product-ingredient {
  display: flex;
  gap: 17px;
  align-items: center;
  padding: 17px 0;
  border-top: 1px solid rgba(17,17,17,.08);
}


.product-ingredient:first-child {
  border-top: 0;
  padding-top: 0;
}


.product-ingredient-number {
  flex: 0 0 auto;
  color: rgba(91,45,130,.48);
  font-size: 9px;
  font-weight: 700;
}


.product-ingredient-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}


.product-ingredient-content strong {
  color: #111;
  font-size: 14px;
  font-weight: 100;
}


.product-ingredient-content span {
  color: rgba(17,17,17,.46);
  font-size: 11px;
  letter-spacing: -0.2em;
  line-height: 1.5;
}


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

.product-benefits {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}


.product-benefit {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 15px 0;
  border-top: 1px solid rgba(17,17,17,.08);
}


.product-benefit:first-child {
  border-top: 0;
  padding-top: 0;
}


.product-benefit-check {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(91,45,130,.08);
  color: #5b2d82;
  font-size: 11px;
  font-weight: 100;
}


.product-benefit > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}


.product-benefit strong {
  font-size: 13px;
  
  font-weight: 100;
}


.product-benefit span:not(.product-benefit-check) {
  color: rgba(17,17,17,.48);
    letter-spacing: -0.2em;
  font-size: 11px;
  line-height: 1.5;
}


/* =========================================================
   USAGE
   ========================================================= */

.product-usage {
  position: relative;
  z-index: 2;
}


.product-usage-copy p {
  max-width: 470px;
  margin: 0;
  color: rgba(17,17,17,.63);
  font-size: 14px;
  line-height: 1.75;
}


.product-usage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 28px;
}


.product-usage-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(91,45,130,.12);
  border-radius: 999px;
  background: rgba(91,45,130,.045);
  color: #5b2d82;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
}


/* =========================================================
   FRESHNESS
   ========================================================= */

.product-freshness {
  position: relative;
  z-index: 2;
}


.product-freshness-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(17,17,17,.08);
}


.product-freshness-label {
  color: rgba(17,17,17,.38);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}


.product-shelf-life {
  color: #5b2d82;
  font-size: clamp(27px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -.01em;
  font-weight: 100;
}


.product-storage {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding-top: 25px;
}


.product-storage-icon {
  position: relative;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(91,45,130,.16);
  border-radius: 50%;
}


.product-storage-icon::before,
.product-storage-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #5b2d82;
  transform: translate(-50%, -50%);
}


.product-storage-icon::before {
  width: 11px;
  height: 1px;
}


.product-storage-icon::after {
  width: 1px;
  height: 11px;
}


.product-storage-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}


.product-storage-copy > span {
  color: #111;
  font-size: 12px;
  font-weight: 700;
}


.product-storage-copy p {
  max-width: 430px;
  margin: 0;
  color: rgba(17,17,17,.5);
  font-size: 11px;
  line-height: 1.65;
}


/* =========================================================
   NATURAL NOTE
   ========================================================= */

.product-details-note {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  align-items: start;
  margin-top: 16px;
  padding: 28px clamp(24px, 4vw, 40px);
  border: 1px solid rgba(91,45,130,.09);
  border-radius: 24px;
  background: rgba(91,45,130,.035);
}


.product-details-note-mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #5b2d82;
  color: #fff;
  font-size: 15px;
}


.product-details-note-content {
  display: flex;
  flex-direction: column;
  gap: 7px;
}


.product-details-note-content > span {
  color: #5b2d82;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}


.product-details-note-content p {
  max-width: 800px;
  margin: 0;
  color: rgb(17, 17, 17);
  font-size: 12px;
  line-height: 1.7;
}


/* =========================================================
   CLOSING
   ========================================================= */

.product-details-closing {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 30px;
  padding-top: clamp(70px, 9vw, 120px);
}


.product-details-closing span {
  color: rgba(17,17,17,.3);
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -.03em;
}


.product-details-closing strong {
  color: #111;
  font-size: clamp(20px, 3vw, 34px);
  letter-spacing: -.01em;
  font-weight: 100;
}


/* =========================================================
   HIDDEN DATA CARDS
   ========================================================= */

.product-detail-card[hidden] {
  display: none;
}


/* =========================================================
   REVEAL
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .75s ease,
    transform .75s cubic-bezier(.22,1,.36,1);
}


.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}


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

@media (max-width: 900px) {

  .product-details {
    padding-left: 18px;
    padding-right: 18px;
  }


  .product-details-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }


  .product-details-kicker {
    padding-top: 0;
  }


  .product-details-heading h2 {
    max-width: 700px;
  }


  .product-detail-card {
    min-height: 340px;
  }


  .product-details-closing {
    flex-direction: column;
    align-items: flex-start;
  }

}


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

@media (max-width: 700px) {

  .product-details {
    padding:
      78px 15px
      90px;
  }


  .product-details::before {
    width: 340px;
    height: 340px;
    right: -190px;
  }


  .product-details::after {
    width: 300px;
    height: 300px;
    left: -180px;
  }


  .product-details-intro {
    gap: 20px;
    margin-bottom: 42px;
  }


  .product-details-heading h2 {
    font-size: clamp(39px, 12vw, 57px);
    line-height: .98;
    letter-spacing: -.06em;
  }


  .product-details-heading p {
    margin-top: 20px;
    font-size: 13px;
  }


  .product-details-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }


  .product-detail-card {
    min-height: auto;
    padding: 25px 22px 28px;
    border-radius: 22px;
  }


  .product-detail-card:hover {
    transform: none;
  }


  .product-detail-card-header {
    margin-bottom: 30px;
  }


  .product-detail-card-index {
    width: 34px;
    height: 34px;
    font-size: 8px;
  }


  .product-detail-card h3 {
    font-size: 22px;
  }


  .product-ingredient {
    padding: 14px 0;
  }


  .product-ingredient-content strong {
    font-size: 13px;
  }


  .product-ingredient-content span {
    font-size: 10px;
  }


  .product-benefit {
    padding: 13px 0;
  }


  .product-benefit-check {
    width: 23px;
    height: 23px;
    font-size: 10px;
  }


  .product-benefit strong {
    font-size: 12px;
  }


  .product-benefit span:not(.product-benefit-check) {
    font-size: 10px;
  }


  .product-usage-copy p {
    font-size: 13px;
    line-height: 1.7;
  }


  .product-usage-tags {
    margin-top: 23px;
  }


  .product-usage-tags span {
    padding: 7px 10px;
    font-size: 8px;
  }


  .product-freshness-main {
    align-items: center;
  }


  .product-shelf-life {
    font-size: 30px;
  }


  .product-details-note {
    grid-template-columns: 38px 1fr;
    gap: 14px;
    margin-top: 12px;
    padding: 22px 18px;
    border-radius: 20px;
  }


  .product-details-note-mark {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }


  .product-details-note-content p {
    font-size: 10px;
    line-height: 1.65;
  }


  .product-details-closing {
    gap: 7px;
    padding-top: 70px;
  }


  .product-details-closing span {
    font-size: 17px;
  }


  .product-details-closing strong {
    font-size: 23px;
  }

}


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

@media (max-width: 380px) {

  .product-details {
    padding-left: 12px;
    padding-right: 12px;
  }


  .product-detail-card {
    padding-left: 18px;
    padding-right: 18px;
  }


  .product-details-heading h2 {
    font-size: 38px;
  }


  .product-details-note {
    grid-template-columns: 1fr;
  }


  .product-details-note-mark {
    margin-bottom: 2px;
  }

}


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

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

  .product-detail-card,
  .reveal {
    transition: none;
  }


  .reveal {
    opacity: 1;
    transform: none;
  }

}


/* =========================================================
   FOOTER TOP LINE
   ========================================================= */

.remify-footer-top-line {

  width:
    90%;

  height:
    1px;

  margin:
    0 auto;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.18),
      transparent
    );

}

/* =========================================================
   REMIFY — FOOTER
   ========================================================= */

.remify-footer {

  position: relative;

  overflow: hidden;

background: #5b2d82;

  color: #fff;

  isolation: isolate;

}



/* =========================================================
   CONTAINER
   ========================================================= */

.remify-footer-container {

  width:
    min(1380px,100%);

  margin:
    0 auto;

  padding:
    0 clamp(24px,6vw,90px);

}


/* =========================================================
   TOP
   ========================================================= */

.remify-footer-top {

  display:
    grid;

  grid-template-columns:
    .8fr 1.2fr;

  gap:
    clamp(70px,10vw,160px);

  padding:
    85px 0 90px;

}


/* =========================================================
   BRAND
   ========================================================= */

.remify-footer-brand {

  display:
    flex;

  flex-direction:
    column;

  align-items:
    flex-start;

}


.remify-footer-logo {

  display:
    inline-block;

}


.remify-footer-logo img {

  width:
    clamp(125px,12vw,165px);

  display:
    block;

  filter:
    brightness(0) invert(1);

}


.remify-footer-brand p {

  margin:
    28px 0 24px;

  color:
    rgba(255,255,255,.42);


  font-size:
    clamp(17px,1.6vw,21px);

  line-height:
    1.3;

  letter-spacing:
    -.025em;

}


.remify-footer-email {

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

  font-size:
    11px;

  letter-spacing:
    .04em;

  text-decoration:
    none;

  border-bottom:
    1px solid rgba(255,255,255,.18);

  padding-bottom:
    5px;

  transition:
    .3s ease;

}


.remify-footer-email:hover {

  color:
    #fff;

  border-color:
    rgba(255,255,255,.5);

}


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

.remify-footer-nav {

  display:
    grid;

  grid-template-columns:
    repeat(3,1fr);

  gap:
    35px;

}


.remify-footer-group {

  display:
    flex;

  flex-direction:
    column;

  align-items:
    flex-start;

  gap:
    13px;

}


.remify-footer-label {

  margin-bottom:
    9px;

  color:
    rgba(255,255,255,.28);

  font-size:
    8px;

  font-weight:
    800;

  letter-spacing:
    .2em;

}


.remify-footer-group a {

  color:
    rgba(255,255,255,.62);

  font-size:
    12px;

  text-decoration:
    none;

  transition:
    color .25s ease,
    transform .25s ease;

}


.remify-footer-group a:hover {

  color:
    #fff;

  transform:
    translateX(4px);

}


.remify-footer-location {

  color:
    rgba(255,255,255,.28);

  font-size:
    11px;

}


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

.remify-footer-line {

  width:
    100%;

  height:
    1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.13),
      transparent
    );

}


/* =========================================================
   MIDDLE
   ========================================================= */

.remify-footer-middle {

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    40px;

  padding:
    48px 0;

}


.remify-footer-message {

  display:
    flex;

  align-items:
    baseline;

  gap:
    13px;

}


.remify-footer-message span {

  color:
    rgba(255,255,255,.3);

  font-size:
    8px;

  font-weight:
    800;

  letter-spacing:
    .18em;

}


.remify-footer-message strong {

  font-size:
    clamp(22px,2.3vw,32px);

  font-weight:
    400;

  letter-spacing:
    -.04em;

}


/* =========================================================
   FOOTER CTA
   ========================================================= */

.remify-footer-cta {

  display:
    inline-flex;

  align-items:
    center;

  gap:
    18px;

  padding:
    6px 6px 6px 20px;

  color:
    #16061f;

  background:
    #fff;

  border-radius:
    999px;

  text-decoration:
    none;

  transition:
    transform .4s cubic-bezier(.22,1,.36,1),
    box-shadow .4s ease;

}


.remify-footer-cta:hover {

  transform:
    translateY(-3px);

  box-shadow:
    0 18px 45px rgba(0,0,0,.3);

}


.remify-footer-cta > span {

  font-size:
    9px;

  font-weight:
    800;

  letter-spacing:
    .08em;

  text-transform:
    uppercase;

}


.remify-footer-cta i {

  width:
    40px;

  height:
    40px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  border-radius:
    50%;

  background:
    #5f277b;

  color:
    #fff;

  font-style:
    normal;

}


.remify-footer-cta svg {

  width:
    15px;

  height:
    15px;

  fill:
    none;

  stroke:
    currentColor;

  stroke-width:
    1.7;

  stroke-linecap:
    round;

  stroke-linejoin:
    round;

}


/* =========================================================
   BOTTOM
   ========================================================= */

.remify-footer-bottom {

  display:
    grid;

  grid-template-columns:
    1fr 1fr 1fr;

  align-items:
    center;

  padding:
    25px 0 30px;

  border-top:
    1px solid rgba(255,255,255,.07);

  color:
    rgba(255,255,255,.22);

  font-size:
    8px;

  letter-spacing:
    .08em;

}


.remify-footer-bottom span:nth-child(2) {

  text-align:
    center;

}


.remify-footer-bottom span:last-child {

  text-align:
    right;

}


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

@media (max-width: 900px) {

  .remify-footer-top {

    grid-template-columns:
      1fr;

    gap:
      65px;

    padding:
      70px 0 75px;

  }


  .remify-footer-nav {

    grid-template-columns:
      repeat(3,1fr);

  }


}


/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 600px) {

  .remify-footer-container {
    padding: 0 20px;
  }

  .remify-footer-top {
    padding: 60px 0 55px;
    gap: 55px;
  }

  .remify-footer-logo img {
    width: 135px;
  }

  .remify-footer-brand p {
    margin-top: 22px;
    font-size: 17px;
  }

  .remify-footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 42px 25px;
  }

  .remify-footer-group:last-child {
    grid-column: 1 / -1;
  }

  .remify-footer-middle {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 40px 0;
  }

  .remify-footer-message {
    flex-direction: column;
    gap: 8px;
  }

  .remify-footer-message strong {
    font-size: 27px;
  }

  .remify-footer-cta {
    width: 100%;
    justify-content: space-between;
  }


  .remify-footer-bottom {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 20px 0 25px;
    line-height: 1.5;
  }

  .remify-footer-bottom span {
    text-align: left !important;
  }

}


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

@media (max-width: 400px) {

  .remify-footer-top {

    padding-top:
      50px;

  }


  .remify-footer-nav {

    grid-template-columns:
      1fr;

    gap:
      30px;

  }


  .remify-footer-group:last-child {

    grid-column:
      auto;

  }


}


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

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

  .remify-footer * {

    animation:
      none !important;

    transition:
      none !important;

  }

}

/* =========================================================
   REMIFY — GIANT WATERMARK
   ========================================================= */

.remify-giant-wordmark {
  position: relative;

  width: 100%;
  max-width: 100%;

  margin: 0;
  padding: clamp(55px, 6vw, 85px) 0 0;

  overflow: hidden;

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

  text-align: center;

  pointer-events: none;
  user-select: none;

  isolation: isolate;
}


/* soft atmospheric glow behind the word */

.remify-giant-wordmark::before {
  content: "";

  position: absolute;

  left: 50%;
  bottom: -180px;

  width: min(900px, 90vw);
  height: 300px;

  transform: translateX(-50%);

  background:
    radial-gradient(
      ellipse,
      rgba(132, 63, 164, 0.12) 0%,
      rgba(132, 63, 164, 0.04) 38%,
      transparent 72%
    );

  filter: blur(35px);

  pointer-events: none;

  z-index: -1;
}


/* =========================================================
   ACTUAL WATERMARK
   ========================================================= */

.remify-giant-wordmark span {
  display: block;

  width: max-content;
  max-width: none;

  margin: 0;
  font-size:
    clamp(150px, 21vw, 310px);

  font-weight: 400;

  line-height: .72;

  letter-spacing:
    -.02em;

  white-space: nowrap;

  color:
    rgba(255, 255, 255, 0.025);

  -webkit-text-stroke:
    1px rgba(255, 255, 255, 0.19);

  text-shadow:
    0 0 50px rgba(132, 63, 164, 0.08);

  transform:
    translateY(2px);

  pointer-events: none;
}


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

@media (max-width: 900px) {

  .remify-giant-wordmark {
    padding-top: 60px;
  }

  .remify-giant-wordmark span {
    font-size:
      clamp(125px, 21vw, 220px);

    -webkit-text-stroke:
      .9px rgba(255, 255, 255, 0.18);
  }

}


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

@media (max-width: 600px) {

  .remify-giant-wordmark {
    padding-top: 50px;
  }

  .remify-giant-wordmark span {
    font-size: 31vw;

    line-height: .72;

    letter-spacing:
      -.01em;

    -webkit-text-stroke:
      .75px rgba(255, 255, 255, 0.18);

    transform:
      translateY(1px);
  }

}


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

@media (max-width: 400px) {

  .remify-giant-wordmark {
    padding-top: 42px;
  }

  .remify-giant-wordmark span {
    font-size: 30vw;
  }

}


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

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

  .remify-giant-wordmark,
  .remify-giant-wordmark span {
    transition: none !important;
    animation: none !important;
  }

}
