@layer reset {

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

  /* https://kilianvalkhof.com/2022/css-html/your-css-reset-needs-text-size-adjust-probably/ */
  html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
  }

  body,
  h1,
  h2,
  h3,
  h4,
  p,
  figure,
  blockquote,
  dl,
  dd {
    margin: 0;
  }

  /* https://www.scottohara.me/blog/2019/01/12/lists-and-safari.html */
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  body {
    min-block-size: 100vh;
    line-height: 1.6;
  }

  h1,
  h2,
  h3,
  button,
  input,
  label {
    line-height: 1.1;
    font-size: 1.6em;
  }

  h1,
  h2,
  h3,
  h4 {
    font-optical-sizing: auto;
    font-style: normal;
  }

  p,
  li {
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1rem;
    margin: 1rem 0;
  }

  img,
  picture {
    max-inline-size: 100%;
    display: block;
  }
}

@layer base {
  :root {
    --black: #28251D;
    --white: #FBF8F4;
    --primary: #4F7C68;
    --secondary: #C98C5C;
    --dark-gray: #6F6A62;
    --gray: #9C968D;
    --light-gray: #EBE3DA;
    --background-color: #F6F2EC;
    --primary-highlight: #cedcd8;
    --border: #dbd8d2;
    --gradient-primary: linear-gradient(to right, #C98C5C, #D7B7B0);
    --gradient-secondary: linear-gradient(#90ce00, #e1ff4d);

    --category01-primary: #4F7C68;
    --category02-primary: #C98C5C;
    --category03-primary: #7F9272;
    --category04-primary: #A897BC;
    --category05-primary: #B9A4C8;
    --category06-primary: #D7B7B0;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', Inter, sans-serif;

    --text-base: 1rem;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;

    --border-radius-1: 0.5rem;
    --border-radius-2: 1.25rem;
    --border-radius-3: 2rem;
    --border-radius-4: 3rem;
  }

  @view-transition {
    navigation: auto;
  }

  @media (prefers-reduced-motion: no-preference) {
    html {
      scroll-behavior: smooth;
    }
  }

  html {
    scroll-padding: 2rem;
    overflow-x: hidden;
  }

  body {
    font-family: var(--font-body);
    font-size: 10px;
    line-height: 1.3;
    color: var(--black);
    background: var(--background-color);
    position: relative;
    line-height: normal;
    width: 100%;
    overflow-x: hidden;
  }

  h1 {
    font-family: var(--font-display);
    font-size: 4em;
    font-weight: 400;
    margin: 0;

    span {
      color: var(--primary);
    }

    strong {
      font-weight: 540;
    }

    @media screen and (max-width: 767px) {
      font-size: 2.5rem;
    }
  }

  h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    margin: 0;

    @media screen and (max-width: 767px) {
      font-size: 2rem;
    }

    span {
      color: var(--primary);
    }
  }

  h3 {
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 300;
    margin: 0;

    @media screen and (max-width: 767px) {
      font-size: 1.5rem;
    }
  }

  a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1rem;
  }

  .btn {
    font-weight: 500;
    color: var(--black);
    background-color: transparent;
    border-radius: var(--border-radius-3);
    border: 1.5px solid var(--black);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 2rem;
    font-size: 1.125rem;
    transition: all 0.2s ease-out;
    width: fit-content;
    min-width: 240px;
    text-transform: uppercase;

    &:hover {
      transform: scale(1.1);
    }

    &.large {
      margin: 0;
      font-size: 2rem;
      padding: 1.25rem 3rem;
    }

    &.btn-secondary {
      background: var(--light-gray);
      color: var(--primary);
      font-weight: 500;
      font-size: 1rem;
      border: none;
      padding: .5rem 1.5rem;
      min-width: fit-content;
    }
  }

  .btn-img {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: var(--border-radius-3);
    overflow: hidden;
    transition: .2s ease-in-out;

    &:hover {
      transform: scale(1.05);
    }
  }

  .subtitle {
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: var(--text-sm);
  }
}

@layer layout {
  .wrapper {
    --wrapper-max-width: 1280px;
    --wrapper-padding: 1rem;

    max-width: var(--wrapper-max-width);
    margin-inline: auto;
    padding-inline: var(--wrapper-padding);

    /* helps to match the Figma file */
    box-sizing: border-box;
    width: 100%;
  }

  .wrapper[data-width="narrow"] {
    --wrapper-max-width: 720px;
  }

  .wrapper[data-width="medium"] {
    --wrapper-max-width: 900px;
  }

  .wrapper[data-width="large"] {
    --wrapper-max-width: 1440px;
  }

  .section {
    padding-block: 4rem;

    @media (max-width: 767px) {
      padding-block: 3rem;
    }

    +.section {
      padding-top: 0;
    }

    &.background-light {
      padding-top: 4rem;

      @media (max-width: 767px) {
        padding-top: 3rem;
      }

      +.section {
        padding-block: 4rem;

        @media (max-width: 767px) {
          padding-top: 3rem;
        }
      }
    }
  }
}


@layer components {

  /* Categories assignation */
   .fitness {color: var(--category01-primary);}
   .nutrition {color: var(--category02-primary);}
   .wellness {color: var(--category03-primary);}
   .mindfulness {color: var(--category04-primary);}
   .yoga {color: var(--category05-primary);}
   .beauty {color: var(--category06-primary);}

  /* Navigation  */
  .top_bar {
    display: flex;
    padding: 0.5rem 2.5rem;
    justify-content: space-between;
    background: var(--primary);
    gap: 1.5rem;
    align-items: center;

    @media screen and (max-width: 767px) {
      padding: 0.5rem 1rem;
      gap: 0;
    }

    @media screen and (max-width: 374px) {
      flex-direction: column;
    }

    a {
      color: var(--white);
      font-size: 1rem;
      letter-spacing: -.5px;
      line-height: 1.4;
      font-weight: 600;
    }

    .support-icon {
      width: 25px;
      height: 25px;
    }
  }

  .site_header {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem 2.5rem;
    align-items: center;
    position: relative;
    z-index: 999;

    @media screen and (max-width: 1199px) {
      padding: 1rem;
    }

    .logo_header {
      height: 50px;
      width: auto;
      overflow: hidden;
      padding: 0 !important;

      @media screen and (max-width: 1199px) {
        max-width: 43px;
        height: 36px;
      }

      img {
        height: 30px;
        width: auto;
        max-inline-size: none;

        @media screen and (max-width: 1199px) {
          width: auto;
          height: 36px;
        }
      }
    }

    .site_navigation {
      grid-column: 3;
      justify-self: end;

      @media screen and (max-width: 767px) {
        position: fixed;
        inset: 0;
        background: var(--dark-gray);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 90%;
        z-index: 2;
        right: 0;
        left: auto;
        height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        -webkit-transform: translateX(100%);

        &.active {
          transform: translateX(0);
          -webkit-transform: translateX(0);
          /* For iOS compatibility */
        }
      }

      ul {
        display: flex;
        gap: 1.25rem;

        @media (min-width: 767px) and (max-width: 1199px) {
          gap: 1rem;
        }

        a {
          text-decoration: none;
          font-weight: 500;
          color: var(--black);

          @media (min-width: 767px) and (max-width: 1199px) {
            font-size: .9rem;
          }

          @media screen and (max-width: 767px) {
            font-size: 20px;
          }
        }

        @media screen and (max-width: 767px) {
          flex-direction: column;
          gap: 1.5rem;
          padding: 2rem 0;
        }
      }
    }

    .header-right {
      position: relative;
      display: flex;
      gap: 1rem;
      align-items: center;

      .dropdown-trigger {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        padding: 5px;
        cursor: pointer;
        justify-content: center;
      }

      a {
        font-weight: 600;
      }

      .dropdown-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        background: var(--black);
        width: 25%;
        padding: 4rem 1.5rem;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 9;

        @media screen and (min-width: 768px) and (max-width: 1199px) {
          width: 60%;
        }

        @media screen and (max-width: 767px) {
          width: 85%;
        }

        &.active {
          right: 0;
        }

        ul {
          display: flex;
          flex-direction: column;
          gap: .5rem;

          li {
            margin: 0;

            a {
              display: block;
              padding: 0.5rem;
              font-size: 1.125rem;
              font-weight: 600;
              color: var(--primary);
              transition: color 0.2s;
              background: transparent !important;
              backdrop-filter: unset;

              &:hover {
                color: var(--primary);
              }
            }
          }
        }
      }
    }

    .desktop-nav {
      display: flex;
      gap: 1.25rem;

      @media screen and (max-width: 767px) {
        display: none;
      }

      a {
        text-decoration: none;
        font-weight: 700;
      }
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      padding: 5px;
      background: none;
      border: none;
      z-index: 10;

      span {
        display: block;
        width: 30px;
        height: 3px;
        background-color: var(--primary);
        transition: 0.3s ease-in-out;
      }

      &.active {
        position: fixed;
        right: 40px;

        @media screen and (max-width: 767px) {
          right: 18px;
        }

        span:first-child {
          transform: translateY(9px) rotate(45deg);
        }

        span:nth-child(2) {
          opacity: 0;
        }

        span:last-child {
          transform: translateY(-9px) rotate(-45deg);
        }
      }

      &[aria-expanded="true"] {
        position: fixed;
        right: 40px;
        font-weight: 700;

        @media screen and (max-width: 767px) {
          right: 10px;
          top: 15px;
        }

        span:first-child {
          transform: translateY(9px) rotate(45deg);
        }

        span:nth-child(2) {
          opacity: 0;
        }

        span:last-child {
          transform: translateY(-5px) rotate(-45deg);
        }
      }

      @media screen and (max-width: 767px) {
        display: flex;
        align-items: flex-end;
      }
    }

    .mobile-nav {
      @media screen and (min-width: 768px) {
        display: none;
      }
    }
  }

  /* Hero Section */

  .page_hero {
/*     position: relative;
    padding: 5rem 3rem;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-3); */

    @media screen and (max-width: 1199px) {
      padding: 3rem 1rem;
    }

    .hero-bck {
      position: absolute;
      right: 5%;
      height: 105%;
      top: -2.5%;
      z-index: 0;
      object-fit: contain;

      @media screen and (max-width: 1199px) {
        margin-top: 20px;
        height: fit-content;
        position: relative;
        right: inherit;
        transform: translateX(-50%);
        left: 50%;
        width: 80%;
        top: 0;
      }
    }

    .hero-content {
      text-align: left;
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 30px;
      color: var(--white);

      @media (min-width: 768px) and (max-width: 1199px) {
        align-items: center;
        text-align: center;
        min-height: auto;
      }

      @media screen and (max-width: 767px) {
        align-items: center;
        text-align: center;
        min-height: auto;
      }

      span {
        font-size: 1rem;
      }

      h1 {
        font-size: 2rem;
        font-weight: 600;

        @media screen and (max-width: 1199px) {
          font-size: 4rem;
        }

        @media screen and (max-width: 767px) {
          font-size: 2.5rem;
        }
      }

      p {
        font-size: 1.25rem;
        margin: 0;
        max-width: 500px;
      }

      .btn {
        background: var(--white);
        color: var(--primary);
        font-weight: 600;
        font-size: 1.25rem;
        border: none;
        padding: 1rem 3rem;
        margin-top: 20px;
      }
    }

    &.login {
      .hero-bck {
        right: 0;
        height: 105%;
        top: inherit;
        bottom: 0;
        border-radius: var(--border-radius-3);
      }
    }
  }

  .login-text {
    h2 {
      font-size: 2.5rem;
      font-weight: 200;
      margin: 0 0 30px;

      @media screen and (max-width: 767px) {
        font-size: 2rem;
      }

      span {
        font-size: 1.25rem;
        margin-bottom: 10px;
        color: var(--primary);
        text-transform: uppercase;
        display: block;
      }
    }
  }

  .highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    margin-top: 30px;

    li {
      display: flex;
      align-items: center;
      gap: 15px;
      border-bottom: 1px solid var(--light-gray);
      font-size: 1.25rem;
      font-weight: 500;
      padding-bottom: 20px;
      margin: 0 0 20px;

      span {
        color: var(--primary);
        font-size: 1.5rem;
        font-weight: 600;
      }
    }
  }

  .banner {
    .banner-text {
      text-align: center;
      font-size: 3.25rem;
      font-family: var(--font-body);
      font-weight: 300;

      @media screen and (max-width: 1199px) {
        font-size: 2.5rem;
      }

      @media screen and (max-width: 767px) {
        font-size: 2rem;
      }

      span {
        display: block;
        font-size: 4rem;
        color: var(--primary);
        font-weight: 200;

        @media screen and (max-width: 1199px) {
          font-size: 3.5rem;
        }

        @media screen and (max-width: 767px) {
          font-size: 3rem;
        }
      }
    }
  }

  .banner-section {
    background: var(--gradient-secondary);
    padding-block: 8rem;
    position: relative;

    @media screen and (max-width: 767px) {
      padding-block: 5rem 0;
    }

    .banner-content {
      color: var(--black);
      position: relative;
      z-index: 1;

      @media screen and (max-width: 1199px) {
        text-align: center;
        margin-inline: auto;
      }

      span {
        font-size: 1.25rem;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 10px;
        display: block;
      }

      h3 {
        font-size: 3rem;
        font-weight: 600;

        @media screen and (max-width: 1199px) {
          font-size: 2.5rem;
        }

        @media screen and (max-width: 767px) {
          font-size: 1.75rem;
        }
      }

      p {
        font-size: 1.125rem;
        margin-top: 1.5rem;
        max-width: 600px;
      }

      .btn {
        border: none;
        background: var(--white);
        font-weight: 600;
        color: var(--secondary);
      }
    }

    img {
      position: absolute;
      z-index: 0;
      right: 0;
      bottom: 0;
      height: 105%;
      width: auto;

      @media screen and (min-width: 767px) and (max-width: 1199px) {
        display: none;
      }

      @media screen and (max-width: 767px) {
        position: relative;
        width: 100%;
        height: auto;
        margin-top: 30px;
      }
    }
  }

  /* Login*/
  /* ═══════════════════════════════════════
   LOGIN PAGE — Split Layout
═══════════════════════════════════════ */

.login-page-wrap {
  display: block; 
  min-height: 100dvh;
  align-items: stretch;
}

/* LEFT PANEL */
.login-panel-left {
  position: fixed;
  top: 0;
  width: 38%;
  height: 100dvh;
  flex-shrink: 0;
  overflow: hidden;
}

.login-panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.login-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(40,37,29,0.72) 40%, rgba(40,37,29,0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem 2.5rem;
  color: var(--white);
}

.login-panel-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.login-panel-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
  font-style: italic;
}

.login-panel-sub {
  font-size: var(--text-sm);
  opacity: 0.75;
  max-width: 28ch;
  line-height: 1.6;
}

/* RIGHT PANEL */
.login-panel-right {
  flex: 1;
  margin-left: 38%;
  min-height: 100dvh;
  background: var(--background-color);
}

/* SHARED SECTION STYLES */
.login-section {
  padding: 4rem 3rem;
  border-bottom: 1px solid var(--border);
}

/* HERO SECTION */
.login-hero-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 5rem;
}

.login-hero-section h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
}

.login-hero-section h1 em {
  font-style: italic;
  color: var(--secondary);
}

.login-hero-section p {
  max-width: 52ch;
  color: var(--dark-gray);
  line-height: 1.7;
  font-size: var(--text-base);
}

.btn-primary-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.85rem 2.5rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--border-radius-4);
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  transition: all 0.2s ease-out;
  cursor: pointer;
}

.btn-primary-solid:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* BANNER SECTION */
.login-banner-section {
  background: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.login-banner-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--gray);
}

.login-banner-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--primary);
}

/* TIPS SECTION */
.login-tips-section {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.login-tips-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-tips-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
}

.login-tips-text p {
  color: var(--dark-gray);
  font-size: var(--text-sm);
  line-height: 1.65;
}

.login-tips-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.login-tips-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--border-radius-1);
}

/* DISCOVER SECTION */
.login-discover-section {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.login-discover-img {
  flex: 0 0 40%;
}

.login-discover-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--border-radius-2);
}

.login-discover-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-discover-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--black);
}

.login-discover-text p {
  color: var(--dark-gray);
  font-size: var(--text-sm);
  line-height: 1.65;
}

.discover-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.discover-list li {
  font-size: var(--text-sm);
  color: var(--dark-gray);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.85rem;
  line-height: 1.5;
}

.discover-list li strong {
  color: var(--black);
}

/* IMAGE STRIP SECTION */
.login-strip-section {
  padding: 4rem 3rem;
  background: var(--light-gray);
}

.login-strip-text {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.login-strip-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.4;
}

.login-strip-images {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.login-strip-images::-webkit-scrollbar { display: none; }

.btn-img {
  flex: 0 0 calc(20% - 0.4rem);
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--border-radius-1);
  overflow: hidden;
}

.btn-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-out;
}

.btn-img:hover img {
  transform: scale(1.04);
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1199px) {
  .login-panel-left { display: none; }
  .login-page-wrap { ddisplay: block; }
  .login-panel-right { margin-left: 0 !important; }
  .login-section { padding: 3rem 1.5rem; }
  .login-tips-section,
  .login-discover-section { flex-direction: column; }
  .login-strip-section { padding: 3rem 1.5rem; }
  .btn-img { flex: 0 0 calc(40% - 0.4rem); }
}

@media (max-width: 767px) {
  .login-section { padding: 2.5rem 1.25rem; }
  .btn-img { flex: 0 0 calc(60% - 0.4rem); }
}

  /* Hero Payment  */

  .hero_payment {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    /* Price Cards Payment  */

    .price_cards {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 40px;
      padding: 40px 0 60px;

      h1 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 0px;
        text-transform: uppercase;
      }

      .pricing-toggle {
        display: flex;
        justify-content: center;
        width: 100%;
        overflow: hidden;

        .pricing-option {
          background-color: var(--dark-gray);
          padding: 30px 50px;
          text-align: center;
          cursor: pointer;
          transition:
            background-color 0.3s,
            color 0.3s;
          border-radius: 7px;

          .price {
            font-size: 24px;
            font-weight: bold;
            margin: 0;
          }

          .duration {
            font-size: 20px;
            font-weight: 500;
            margin: 8px 0;
          }

          .details {
            font-size: 14px;
          }

          &:first-child {
            margin-right: 5px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: var(--light-gray);
          }

          &.active {
            background-color: var(--primary);
            color: var(--white);
          }
        }

        @media (max-width: 767px) {
          flex-direction: column;
          gap: 4px;

          .pricing-option {
            width: 100%;
            padding: 20px;
            margin: 0;
            border-radius: 7px;
          }
        }
      }
    }

    .headpart {
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      background-color: var(--light-gray);
      padding: 60px 0;

      h1 {
        font-size: 1.5rem;
        font-weight: 500;
        margin-bottom: 30px;
        text-align: center;
      }

      .flex-container-col {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
      }

      .checkbox-group {
        margin-bottom: 15px;
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;

        .checkbox-group input[type="checkbox"] {
          margin-top: 5px;
        }

        label {
          font-size: 14px;
          line-height: 1.5;
          display: block;
          margin-left: 10px;
          position: relative;
        }
      }

      .btn {
        padding: 18px;
        font-size: 30px;
        font-weight: 700;
        line-height: 30px;
        margin: 30px auto;
        display: block;
        width: 100%;
        max-width: 360px;
        background: var(--white);

        &:disabled {
          border: none;
          cursor: not-allowed;
          box-shadow: none;
          opacity: 0.5;

          &:hover {
            transform: none;
          }
        }
      }
    }
  }

  /* Slider  */

  /* CONTAINER */
  .slider {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    overflow: hidden;
    position: relative;
    aspect-ratio: 2 / 1;
    border-radius: var(--border-radius-3);

    @media (max-width: 767px) {
      min-height: 70vh;
      border-radius: var(--border-radius-2);
    }

    .slides {
      display: flex;
      height: 100%;
      transition: transform 0.8s ease-in-out;

      /* Safari fix */
      will-change: transform;
      transform: translate3d(0, 0, 0);

      .slide {
        flex: 0 0 100%;
        height: 100%;
        position: relative;
        overflow: hidden;

        &::after {
          content: "";
          position: absolute;
          inset: 0;
          background: rgba(0, 0, 0, 0.3);
          z-index: 1;
        }

        .content {
          position: absolute;
          z-index: 2;
          top: 50%;
          left: 10%;
          transform: translateY(-50%);
          color: white;
          max-width: 600px;
          width: 80%;

          @media (max-width: 767px) {
            left: 5%;
          }

          h1 {
            font-size: 3rem;
            margin-bottom: 10px;

            @media (max-width: 767px) {
              font-size: 2rem;
            }
          }

          p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            line-height: 1.5;

            @media (max-width: 1199px) {
              font-size: 1rem;
              display: -webkit-box;
              -webkit-box-orient: vertical;
              -webkit-line-clamp: 3;
              overflow: hidden;
            }
          }

          .btn {
            background: white;
            color: black;
            padding: 10px 20px;
            text-decoration: none;
            font-weight: bold;
          }
        }

        .bg {
          width: 100%;
          height: 100%;
          object-fit: cover;
          /* fills nicely */
          object-position: center;
          display: block;

          /* Safari rendering fix */
          transform: scale(1.01);
        }
      }
    }

    .dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 3;

      .dot {
        width: 12px;
        height: 12px;
        background: white;
        opacity: 0.5;
        border-radius: 50%;
        cursor: pointer;

        &.active {
          opacity: 1;
        }
      }
    }
  }

  .page-hero.home-hero,
  .page_hero.login {
    position: relative;
    overflow: hidden;
    background: url("../images/hero-bg-watermark.png"), linear-gradient(to right, rgba(201, 140, 92, 0.25), rgba(215, 183, 176, 0.25)) no-repeat left center;
    background-size: cover;
    padding-block: clamp(3rem, 6vw, 5rem);
  }

  .page-hero.home-hero .wrapper[data-width="large"] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
  }

  /* ---------- left ---------- */
  .hero-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-6, 1.5rem);
    max-width: 520px;
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-text);
  }

  .hero-title em {
    font-style: italic;
    font-weight: 400;
  }

  .hero-desc {
    font-family: var(--font-body);
    font-size: var(--text-base, 1rem);
    color: var(--color-text);
    line-height: 1.7;
    max-width: 52ch;
  }

  .btn-hero {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.85rem 1.75rem;
    border-radius: var(--border-radius-3);
    text-decoration: none;
    transition: background 180ms ease, transform 180ms ease;
    align-self: flex-start;
    border-color: var(--primary);
  }

  .btn-hero:hover {
    background: var(--primary);
    transform: translateY(-1px);
  }



  .hero-stats {
    display: flex;
    gap: clamp(1.5rem, 3vw, 3rem);
    border-top: 1px solid var(--white);
  }

  .stat-num {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
  }

  .stat-label {
    display: block;
    font-size: var(--text-xs);
    color: var(--secondary);
    margin-top: 0.25rem;
    letter-spacing: 0.03em;
  }

  /* ---------- right ---------- */
  .hero-right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4, 1rem);
    min-height: 420px;
  }

  /* floating chip */
  .hero-chip {
    position: absolute;
    top: -1rem;
    left: -1rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--white);
    border-radius: var(--border-radius-2);
    padding: 0.425rem 0.875rem;
    box-shadow: 0 4px 20px oklch(0.2 0.01 80 / 0.12);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .chip-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--border-radius-1, 0.5rem);
    background: var(--primary-highlight, #cedcd8);
    color: var(-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .chip-label {
    font-size: var(--text-xs, 0.75rem);
    font-weight: 600;
    color: var(--color-text);
    line-height: 0.1;
  }

  .chip-title {
    font-size: var(--text-xs, 0.75rem);
    color: var(--color-text-muted);
    line-height: 1.2;
  }

  .hero-chip.transitioning {
    opacity: 0;
    transform: translateY(-4px);
  }

  /* card stack container */
  .card-stack {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    max-width: 340px;
    /* extra visual room for the peeking next card */
    margin-right: clamp(2rem, 6vw, 4rem);
    margin-bottom: clamp(1rem, 3vw, 2rem);
  }

  /* individual card — default: hidden behind */
  .stack-card {
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-2);
    overflow: hidden;
    box-shadow: 0 8px 32px oklch(0.2 0.01 80 / 0.14);
    will-change: transform, opacity;
    transform: translate(0, 0) scale(0.88);
    opacity: 0;
    transition:
      transform 600ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 600ms cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
  }

  .stack-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* active — front, full size */
  .stack-card.is-active {
    transform: translate(0, 0) scale(1);
    opacity: 1;
    z-index: 3;
    pointer-events: auto;
  }

  /* next — bottom-right peek */
  .stack-card.is-next {
    transform: translate(18%, 12%) scale(0.88);
    opacity: 1;
    z-index: 2;
    pointer-events: none;
  }

  /* exiting — flies top-left */
  .stack-card.is-exiting {
    transform: translate(-12%, -8%) scale(0.94);
    opacity: 0;
    z-index: 4;
    pointer-events: none;
  }

  /* card text overlay */
  .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1.25rem 1rem;
    background: linear-gradient(to top, oklch(0.15 0.01 80 / 0.88) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .card-meta {
    font-size: var(--text-xs, 0.75rem);
    color: oklch(1 0 0 / 0.75);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .card-heading {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
  }

  .card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: var(--text-sm, 0.875rem);
    font-weight: 500;
    text-decoration: none;
    margin-top: 0.25rem;
    transition: opacity 150ms ease;
  }

  .card-cta:hover {
    opacity: 0.8;
  }

  .cta-play {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  /* dots */
  .stack-dots {
    display: flex;
    gap: 0.45rem;
    align-items: center;
    margin-top: 0.5rem;
  }

  .stack-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--background-color);
    cursor: pointer;
    transition: background 250ms ease, transform 250ms ease;
    border: none;
    padding: 0;
  }

  .stack-dot.is-active {
    background: var(--primary);
    transform: scale(1.3);
  }

  /* ---------- responsive ---------- */
  @media (max-width: 1199px) {
    .page-hero.home-hero .wrapper[data-width="large"] {
      grid-template-columns: 1fr;
    }

    .hero-left {
      max-width: 100%;
    }

    .hero-right {
      align-items: flex-start;
      min-height: 360px;
    }

    .hero-chip {
      top: -0.5rem;
      left: auto;
      right: 1rem;
    }

    .card-stack {
      max-width: 280px;
      margin-right: 3rem;
    }
  }

  @media (max-width: 767px) {
    .card-stack {
      max-width: 240px;
      margin-right: 2rem;
    }

    .hero-chip {
      display: none;
    }
  }


  .home-video-content {
    .home-text-container {
      max-width: 420px;
    }

    .category_card {
      position: relative;
      max-width: 100%;

      @media screen and (max-width: 1199px) {
        max-width: 162px;
      }

      &::before {
        content: '';
        background: url(../images/icons/icon-play.svg) center center no-repeat;
        background-size: cover;
        position: absolute;
        top: calc(50% - 22px);
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        width: 60px;
        height: 60px;
        display: block;
      }

      img {
        height: 280px;
        object-fit: cover;
        max-width: 100%;

        @media screen and (max-width: 1199px) {
          height: 180px;
        }
      }
    }
  }

  .home-audio-content {
    .home-text-container {
      max-width: 800px;
    }

    .category_card {
      position: relative;
      max-width: 100%;

      &::before {
        content: '';
        background: url(../images/icons/icon-audio-white.svg) center center no-repeat;
        background-size: cover;
        position: absolute;
        top: calc(50% - 22px);
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        width: 60px;
        height: 60px;
        display: block;
      }

      img {
        height: 300px;
        object-fit: cover;
        max-width: 100%;

        @media screen and (max-width: 1199px) {
          height: 180px;
        }
      }
    }
  }

  /* ═══════════════════════════════════════════════════════
   WELLNESS + MINDFULNESS SECTION
═══════════════════════════════════════════════════════ */
.home-section-wellness {
  padding-block: clamp(3rem, 6vw, 5.5rem);

  .home-wellness-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0 clamp(3rem, 5vw, 6rem);
    align-items: start;
  }

  .wellness-divider {
    width: 1px;
    background: #ccc9c2;
    align-self: stretch;
  }

  .wellness-col {
    display: flex;
    flex-direction: column;
  }

  /* ── Article list ────────────────────────────────── */
  .home-article-list {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
  }

  /* ── Responsive ──────────────────────────────────── */
  @media (max-width: 1199px) {
    .home-wellness-grid {
      grid-template-columns: 1fr;
      gap: 3rem 0;
    }
    .wellness-divider { display: none; }
  }

  @media (max-width: 767px) {
    .wellness-col h2 { font-size: 1.9rem; }
    .home-article-thumb { width: 60px; height: 66px; }
    .wellness-col h2 { font-size: 1.9rem; }
    .home-wellness-grid { width: 100%; max-width: 100%; overflow: hidden; }
    .home-section-wellness .d-flex.gap-100, .home-section-wellness .d-flex[class*="gap-"] { gap: 1.5rem; flex-direction: column; }
    .article-item .d-flex.gap-20 { flex-direction: column; gap: 0.75rem; }
    .home-article-thumb { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; }
    .article-img-container { width: 100%;  max-width: 100%;min-height:200px; flex-shrink: 0; }
    .article-img-container img { width: 100%; height: 180px; object-fit: cover; }
    .audio-item { width: 100%; max-width: 100%; overflow: hidden; }
    .wellness-col { width: 100%; max-width: 100%; overflow: hidden; }
    .wellness-col > a.btn,  .wellness-col .btn { align-self: center; margin-top: 1.5rem; min-width: 200px; text-align: center; }
    .home-audio-list { width: 100%; }    
  }
}

 /* ═══════════════════════════════════════════════════════
   BEAUTY SECTION
═══════════════════════════════════════════════════════ */
.home-section-beauty {
  padding-block: clamp(2rem, 4vw, 3.5rem);

  .home-beauty-panel {
    background: #2c2b27;
    border-radius: 1.25rem;
    padding: clamp(1.75rem, 3vw, 2.75rem);
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;
    overflow: hidden;
  }

  .beauty-panel-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .beauty-panel-left h2 {
    font-family: var(--font-display, serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 500;
    line-height: 1.15;
    color: #fff;
    margin: 0;
  }

  .beauty-panel-left p {
    font-size: var(--text-sm);
    line-height: 1.65;
    color: rgba(255, 255, 255, .55);
    max-width: 28ch;
    margin: 0;
  }

  .subtitle-light {
    font-size: var(--text-sm);
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
  }

  .btn-beauty-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .28);
    color: rgba(255, 255, 255, .8);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 0.55rem 1.25rem;
    border-radius: var(--border-radius-3);
    text-decoration: none;
    width: fit-content;
    transition: background 180ms ease, border-color 180ms ease;
  }

  .btn-beauty-outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .5);
  }

  .beauty-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    width: 100%;
  }

  .beauty-cards-row::-webkit-scrollbar { display: none; }

  .beauty-portrait-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-decoration: none;
    color: rgba(255, 255, 255, .75);
  }

  .beauty-portrait-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 0.75rem;
    display: block;
    transition: transform .4s ease;
  }

  .beauty-portrait-card:hover img { transform: scale(1.04); }

  .beauty-card-label {
    font-size: 0.7rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, .65);
    padding: 0 0.25rem;
  }

  /* ── Responsive ── */

  @media (max-width: 1199px) {
    .home-beauty-panel { grid-template-columns: 1fr; }
    .beauty-panel-left p { max-width: 100%; }
    .beauty-cards-row { grid-template-columns: repeat(4, 1fr); }
    .beauty-portrait-card img { height: 160px; }
  }

  @media (max-width: 767px) {
    .home-beauty-panel { padding: 1.25rem; border-radius: 1rem; gap: 1.5rem; }
    .beauty-panel-left { flex-direction: row; flex-direction: column; gap: 0.65rem; text-align: left; }
    .beauty-panel-left h2 { font-size: clamp(1.5rem, 6vw, 1.9rem); }
    .beauty-panel-left p { max-width: 100%; font-size: 0.8rem; }
    .beauty-cards-row { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
    .beauty-portrait-card img { height: 160px; }
  }

  @media (max-width: 480px) {
    .beauty-cards-row { grid-template-columns: repeat(2, 1fr); }
    .beauty-portrait-card img { height: 140px; }
  }
}


/* ═══════════════════════════════════════════════════════
   YOGA ARTICLES SECTION
═══════════════════════════════════════════════════════ */
.home-section-yoga {
  padding-block: clamp(3rem, 6vw, 5.5rem);

  .yoga-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: clamp(3rem, 5vw, 6rem);
    align-items: center;
  }

  .yoga-img-col {
    border-radius: 1rem;
    overflow: hidden;
  }

  .yoga-feature-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 1rem;
    transition: transform 0.4s ease;
  }

  .yoga-img-col:hover .yoga-feature-img { transform: scale(1.02); }

  .yoga-content-col,
  .yoga-article-list {
    display: flex;
    flex-direction: column;
  }

  /* ── Article list items ── */
  .yoga-article-list a,
  .home-article-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    min-width: 0;
  }

  .home-article-thumb,
  .home-article-row img {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 0.5rem;
  }

  .home-article-text,
  .article-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }
}

/* ── Responsive ──────────────────────────────────── */

@media (max-width: 1199px) {
  .yoga-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .yoga-feature-img { height: 320px; }
}

@media (max-width: 767px) {
  .yoga-grid { display: block !important; }
  .yoga-img-col { display: none !important; }
  .yoga-content-col { width: 100%; max-width: 100%; text-align: left; align-items: flex-start; display: flex; flex-direction: column; }
  .yoga-content-col h2 { font-size: clamp(1.5rem, 6vw, 1.9rem); }
  .yoga-content-col > p { max-width: 100%; }
  .yoga-article-list, .home-article-list { width: 100%; display: flex;  flex-direction: column; gap: 1.25rem; margin-top: 1rem; }
  .home-article-row, .yoga-article-list a { display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; width: 100%; text-decoration: none; color: inherit; }
  .home-article-thumb, .home-article-row img, .yoga-article-list a img { width: 100%; height: 180px; object-fit: cover; border-radius: 0.6rem; flex-shrink: 0; }
  .home-article-text, .article-content, .yoga-article-list a > div { width: 100%; text-align: left; }
  .home-article-text h3, .article-content h3, .yoga-article-list a h3 { font-size: 0.95rem; font-weight: 600; line-height: 1.35; margin-bottom: 0.25rem;}
  .home-article-text p, .article-content p, .yoga-article-list a p { font-size: 0.8rem; line-height: 1.5; opacity: 0.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .yoga-content-col > a.btn,  .yoga-content-col .btn { align-self: center; margin-top: 1.5rem; min-width: 200px; text-align: center; }
  .yoga-content-col .article-img-container {min-height: 200px;}
}

@media (max-width: 480px) {
  .home-article-thumb, .home-article-row img, .yoga-article-list a img { height: 160px; }
}
  
/* ── Article list ──────────────────────────────────── */
.article-item {
  max-width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--color-text);
  transition: opacity 160ms ease;

  &:first-child { border-top: 1px solid var(--border); }
  &:last-child  { border-bottom: none; }
  &:hover       { opacity: .75; }

  /* ── Thumbnail ── */
  .article-img-container {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: var(--color-surface-offset);

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
  }

  /* ── Text block ── */
  .article-content {
    max-width: 100%;
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding-top: 0.15rem;

    h3 {
      font-size: 0.975rem;
      font-weight: 700;
      line-height: 1.35;
      color: var(--black);
      margin: 0;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
    }

    .btn {
      padding: .5rem 1.5rem;
      color: var(--primary);
      font-weight: 500;
      font-size: .85rem;
      border: none;
      background: var(--light-gray);
      min-width: 180px;
    }
  }

  /* ── Excerpt ── */
  .excerpt {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    h1, h2, h3, h4, p, ul li, ol, li {
      font-size: 0.825rem;
      color: var(--color-text-muted);
      line-height: 1.55;
      margin: 0;
      max-width: none;
    }
  }

  /* ── Mobile ── */
  @media (max-width: 767px) {
    flex-direction: column;  /* stack image on top */
    gap: 0.75rem;

    .article-img-container {
      width: 100%;
      height: 200px;         /* full-width banner image */
      border-radius: 8px;
      flex-shrink: unset;
    }

    .article-content {
      width: 100%;
      padding-top: 0;

      h3 {
        white-space: normal;       /* allow wrapping on mobile */
        text-overflow: unset;
        overflow: visible;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      .btn {
        width: 100%;
        min-width: unset;
        text-align: center;
      }
    }

    .excerpt {
      -webkit-line-clamp: 3;      /* one more line on mobile */
    }
  }
}

  /* ── Audio list ──────────────────────────────────── */
  .audio-list {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
  }

  .audio-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 400;
    transition: color 160ms ease;

    &:first-child { border-top: 1px solid var(--border); }
    &:hover { color: var(--color-primary); }
  }

  .audio-icon-circle {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-text);
    border-radius: 50%;
    transition: background-color 160ms ease;
    background-image: url('../images/icons/icon-audio.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px 40px;
    transition: background-color 0.2s ease-out, transform 0.2s ease-out;
  }

  .audio-item:hover .audio-icon-circle {
    transform: scale(1.1);
  }

  .audio-title { font-size: 1rem; line-height: 1.4; }


  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }

  .category_card:hover .video-overlay {
    opacity: 1;
  }

  .card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Button transition effects */

  .see-more-btn,
  .see-less-btn {
    transition: all 0.3s ease;
    border: 2px solid var(--gray);
    color: var(--primary);
    background: transparent;
    padding: 0.75rem 2rem;
    margin-block: 20px;
  }

  .see-more-btn:hover,
  .see-less-btn:hover {
    transform: translateY(-3px);
  }

  .hidden-items:empty {
    display: none !important;
  }

  /* Item appear animation */

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Category Cards */

  .category_card {
    width: 100%;
    min-width: 150px;
    transition: transform 0.3s ease-in-out;
    margin: 0;
    max-width: 162px;

    @media screen and (max-width: 1199px) {
      margin-inline: auto;
    }

    &:hover {
      transform: translateY(-4px);

      img {
        filter: brightness(1) grayscale(0) contrast(1);
      }
    }

    img {
      width: 100%;
      height: 210px;
      overflow: hidden;
      border-radius: var(--border-radius-3);
      object-fit: cover;
      transition: all 0.3s ease-in-out;
      filter: brightness(0.5) grayscale(0.25) contrast(1.1);
    }

    .cardsTitle {
      padding-top: 1rem;
      font-weight: 600;
      color: var(--black);
      width: 80%;
      font-size: 0.8rem;
      z-index: 2;
      margin: 0;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
    }
  }

  .app-section,
  #app-section {
    display: flex;
    gap: 1rem;
    justify-items: center;
    overflow-x: auto;
    padding-bottom: 20px;
    flex-wrap: wrap;

    >a {
      flex: 1;
      max-width: fit-content;
    }
  }

  .pic-container {
    width: 360px;
    height: 360px;        /* fixed square */
    flex-shrink: 0;
    border-radius: var(--border-radius-3);
    overflow: hidden;     /* clips the image to the square + radius */

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;  /* fills the square, crops excess */
      object-position: center top; /* focuses on top — good for portraits */
      display: block;
      border-radius: 0;   /* radius handled by parent now */
    }
  }

  /* Categorie Pills  */

  .features-bar {
    margin: 0;
    flex-wrap: wrap;

    @media screen and (max-width: 767px) {
      justify-content: center;
    }

    .labels {
      .item-label {
        display: inline-block;
        padding: 5px 10px;
        background: var(--primary);
        color: var(--black);
        font-weight: 600;
        font-family: var(--font-body);
        border-radius: 5px;
        max-height: fit-content;
        overflow: hidden;
        white-space: nowrap;
        /* Don't forget this one */
        text-overflow: ellipsis;
      }
    }

    .rating {
      display: flex;
      align-items: center;
      gap: 5px;

      >img {
        width: 15px;
      }

      >span {
        font-size: 1.5em;
      }
    }
  }

  /* Scrollbar  */

  /* width */
  ::-webkit-scrollbar {
    width: 15px;
    height: 5px;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(128, 128, 128, 0.329);
    border-radius: 10px;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #2c2c2c;
    border-radius: 10px;
  }

  /* Section Picker */

  .section_picker {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    max-width: 100%;

    @media screen and (max-width: 767px) {
      flex-direction: column;
    }

    button {
      padding: 30px;
      background: transparent;
      width: 100%;
      transition: 0.2s;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: all 0.2s ease-out;
      border-radius: var(--border-radius-2);
      text-align: left;
      background: var(--secondary);
      border: none;

      @media screen and (max-width: 767px) {
        background-size: 50% !important;
      }

      &:hover {
        transform: scale(1.05);
        background: var(--primary);
      }

      &.active {
        cursor: default;
        transform: none !important;
      }

      span {
        font-weight: 600;
        font-size: 1.25rem;
      }

      p {
        font-size: 1.5rem;
        font-weight: 100 !important;
        margin: 0 0 10px;
        max-width: 80%;

        @media screen and (max-width: 767px) {
          max-width: 100%;
        }
      }

      .btn {
        font-size: 1.25rem;
        background: var(--black);
      }

      &:nth-of-type(1) {
        background: var(--secondary) url(../images/picker-bck-recipes.png) no-repeat bottom right;
        background-size: 33.33%;

        &.active {
          background: var(--primary) url(../images/picker-bck-recipes.png) no-repeat bottom right;
        }
      }

      &:nth-of-type(2) {
        background: var(--secondary) url(../images/picker-bck-videos.png) no-repeat bottom right;
        background-size: 33.33%;

        &.active {
          background: var(--primary) url(../images/picker-bck-videos.png) no-repeat bottom right;
        }
      }

      &:nth-of-type(3) {
        background: var(--secondary) url(../images/picker-bck-tips.png) no-repeat bottom right;
        background-size: 33.33%;

        &.active {
          background: var(--primary) url(../images/picker-bck-tips.png) no-repeat bottom right;
        }
      }
    }
  }

  /* Game Modal Styles */
  .featured-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);

    .modal-content {
      position: relative;
      background-color: #1a1a1a;
      margin: 2% auto;
      padding: 0;
      width: 80%;
      max-width: 900px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      animation: modalFadeIn 0.4s;
      border-radius: 8px;
      overflow: hidden;

      @media (max-width: 767px) {
        width: 95%;
        margin: 10% auto;
      }
    }

    .close {
      position: absolute;
      right: 15px;
      top: 15px;
      color: white;
      font-size: 28px;
      font-weight: bold;
      z-index: 10;
      cursor: pointer;
      background-color: rgba(0, 0, 0, 0.5);
      width: 30px;
      height: 30px;
      line-height: 30px;
      text-align: center;
      border-radius: 50%;
    }

    .close:hover {
      background-color: rgba(255, 0, 0, 0.7);
    }

    .modal-header {
      width: 100%;
      position: relative;
      overflow: hidden;
    }

    .video-container {
      width: 100%;
      background-color: #000;
    }

    .video-container video,
    .video-container iframe {
      width: 100%;
      aspect-ratio: 16/9;
      display: block;
    }

    .modal-body {
      padding: 20px;
      color: #fff;
    }

    .info h2 {
      margin-top: 0;
      margin-bottom: 15px;
      font-size: 24px;
      color: #fff;
    }

    .featured-screenshots {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 15px;
      margin-top: 20px;

      @media (max-width: 767px) {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      }
    }

    .screenshot img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 4px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .screenshot img:hover {
      transform: scale(1.03);
    }

    .modal-footer {
      margin-top: 20px;
      text-align: center;
    }

    .btn-view-details {
      background-color: #e50914;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: var(--border-radius-3);
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .btn-view-details:hover {
      background-color: #f40612;
    }

    .btn-secondary {
      background-color: #333;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
      margin-left: 10px;
      transition: background-color 0.3s ease;
    }

    .btn-secondary:hover {
      background-color: #555;
    }

    .description {
      color: #ccc;
      line-height: 1.6;
      margin-bottom: 20px;

      h3 {
        color: #fff;
        margin-top: 20px;
        margin-bottom: 10px;
        font-size: 18px;
      }

      ul {
        padding-left: 20px;
        margin-bottom: 15px;
      }

      li {
        margin-bottom: 5px;
      }

      p {
        margin-bottom: 15px;
      }
    }

    .screenshots-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 10px;
      margin-top: 15px;
    }

    .featured-screenshots h3 {
      color: #fff;
      margin-bottom: 15px;
      font-size: 20px;
    }
  }

  @keyframes modalFadeIn {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Support pages  */

  .contact__info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 60%;
    font-size: 1rem;
    line-height: 1.3;

    h2,
    h3 {
      font-size: 1.25rem;
      margin-top: 1rem;
      margin-bottom: 0;
    }

    p,
    ul li {
      margin-bottom: 1rem;
    }

    a {
      color: var(--primary);
      margin-bottom: 1rem;
      font-weight: 600;
      font-size: 1rem;
    }

    @media screen and (max-width: 767px) {
      width: 100%;
      margin-top: 0;
      gap: 0.5rem;

      &label {
        font-size: 0.75rem;
      }
    }
  }

  .title-section {
    h1 {
      padding: 3rem 1rem;
/*       background: var(--gradient-primary); */
      color: var(--secondary);
/*       border-radius: var(--border-radius-3); */

      @media screen and (max-width: 767px) {
        padding: 2rem 1rem;
      }
    }
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;

    @media screen and (max-width: 767px) {
      margin-top: 0;
      width: 100%;
    }

    p {
      font-size: 0.875rem;
      text-align: center;
    }

    a {
      color: var(--primary);
    }

    label {
      display: flex;
      flex-direction: column;
    }

    input,
    textarea {
      padding: 0.75rem 1rem;
      border: none;
      border-radius: var(--border-radius-2);
      background: var(--light-gray);
      font-size: 1rem;
      color: var(--black);
    }

    .btn {
      width: 100%;
    }
  }

  /* Single Items  */
  .single-item,
  .single-movie {
    h1 {
      font-size: 30px;
      line-height: 1.3;
      font-weight: 600;
      margin-bottom: 10px;
      text-align: left;
      text-wrap: inherit;

      @media screen and (max-width: 767px) {
        font-size: 24px;
        text-align: center;
      }
    }

    h2 {
      font-size: 19px;
      line-height: 20px;
      font-weight: 700;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .img-radial {
      width: 100%;
      max-width: 150px;
      height: 100%;
      max-height: 150px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      border-radius: var(--border-radius-2);
      overflow: hidden;

      @media screen and (max-width: 767px) {
        max-width: 240px;
        max-height: 240px;
        margin: 0 auto;
      }

      &.large {
        max-width: 100%;

        @media screen and (max-width: 767px) {
          max-height: 200px;
        }
      }

      img {
        width: auto;
        min-height: 150px;
        min-width: 100%;
        border-radius: var(--border-radius-2);
        object-fit: cover;
        filter: brightness(0.7) grayscale(0.5);

        @media screen and (max-width: 767px) {
          min-height: 240px;
        }
      }
    }

    video {
      max-height: 450px;
      max-width: 100%;
      border-radius: var(--border-radius-2);
      overflow: hidden;
    }

    .single-video-player {
      width: 100%;
      max-width: 100%;
      border-radius: var(--border-radius-2);
      overflow: hidden;
      background: #000;
    }

    .single-item-info {
      width: 100%;
      padding: 0;

      @media screen and (max-width: 767px) {
        width: 100%;
      }

      p,
      ul li,
      ol li {
        line-height: 24px;
        margin: 0 0 20px !important;
        background: none !important;
        font-size: 16px !important;
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        background: none !important;
      }

      h2 {
        font-size: 1.75rem;
        font-weight: 600;
        margin-block: 30px 10px;
      }

      h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-block: 30px 10px;
      }

      video {
        width: 100%;
        height: auto;
        object-fit: cover;
      }

      table {
        width: 100% !important;
        font-size: 15px;
        margin: 20px 0;

        @media screen and (max-width: 767px) {
          display: block;
          /* allows overflow */
          overflow-x: auto;
          /* enable horizontal scroll */
          white-space: nowrap;
          /* prevent cells from breaking */
          width: 100%;
          /* make it responsive */
          -webkit-overflow-scrolling: touch;
          /* smooth scroll on iOS */
        }

        tr {
          td {
            padding: 0.5rem 1rem;
            text-align: left !important;
          }
        }
      }
    }

    .btn {
      @media screen and (max-width: 767px) {
        margin: 2rem auto;
      }
    }
  }

  .blog,
  article {

    .single-item,
    .single-movie {
      .img-radial {
        max-width: 100%;
        min-height: 300px;

        img {
          width: 100%;
          object-fit: cover;
        }
      }
    }
  }

  .single-movie .single-item-info {
    width: 100%;
  }

  .unsub-container {
       background: var(--white);
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    border-radius: var(--border-radius-2);

    @media screen and (max-width: 767px) {
      width: 100%;
      padding: 2rem 1rem;
    }

    h3 {
      font-size: 1rem;
      text-transform: uppercase;
      color: var(--gray);
      font-weight: 700;
    }

    h2 {
      span{
        color: var(--black);
      }
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      width: 100%;
      max-width: 420px;

      .form-group {
        padding: 0;
      }

      input {
        padding: 0.75rem 1rem;
        border: 1px solid var(--gray);
        border-radius: var(--border-radius-2);
        width: 100%;
        background: var(--light-gray);
        color: var(--black);
      }

      .btn {
        width: 100%;
      }
    }

    #errorMsg {
      color: var(--gray);
      font-size: 0.875rem;
    }
  }

  .h-captcha {
    overflow: auto;
    max-width: 100%;
  }

  /* Alert styles */
  .alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
  }

  .alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
  }

  .alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
  }

  .alert p {
    margin: 0;
  }

  /* Support page */

  .support-page {
    .wrapper[data-width="medium"] {
      --wrapper-max-width: 900px;
    }

    h3 {
      color: var(--primary);
      font-size: 1.25rem;
      margin: 0;

      @media (max-width: 767px) {
        text-align: center;
      }
    }

    h2 {
      font-size: 3rem;
      font-weight: 200;
      margin: 0;

      @media (max-width: 767px) {
        font-size: 2rem;
      }
    }

    a {
      color: var(--white);
      text-decoration: underline;
      font-weight: 600;
      overflow: hidden;
      white-space: nowrap;
      /* Don't forget this one */
      text-overflow: ellipsis;
    }

    .text-large {
      color: var(--gray);
      font-size: 2.125rem;
      font-weight: 300;
      line-height: 1.3;

      @media (max-width: 767px) {
        font-size: 1.75rem;
        text-align: center;
      }
    }

    .tablet-column {
      @media (max-width: 1199px) {
        flex-direction: column;
      }
    }

    .support-video {
      width: 100%;
      height: 100%;
      border-radius: 25px;
    }

    .support-container {
       background: var(--white);
    border: 1px solid var(--border);
      position: relative;
      padding: 50px;
      border-radius: 25px;

      @media (max-width: 767px) {
        padding: 30px 20px;
        text-align: center !important;
      }

      &.email-frame {
        text-align: left;
        max-width: 680px;

        img {
          left: auto;
          right: 0;
          top: -20px;
        }

        a {
          font-size: 1.5rem;
          color: var(--dark-gray);
          line-height: normal;
          text-decoration: none;
        }
      }

      >.d-flex {
        position: relative;
        z-index: 1;
      }

      >img {
        position: absolute;
        left: 0;
        top: -40px;
        height: 100%;
        width: auto;
        z-index: 0;
        object-fit: contain;
        object-position: top;
        max-width: 280px;
        filter: grayscale(0.75) brightness(1.5);

        @media (max-width: 767px) {
          display: none;
        }
      }

      .support-number {
        font-size: 4rem;
        line-height: 1.25;
        font-weight: 800;
        display: block;
        color: var(--secondary);
        text-decoration: none;

        @media (max-width: 767px) {
          font-size: 10vw;
        }
      }

      @supports (-webkit-touch-callout: none) {
        @media screen and (max-device-width: 767px) and (-webkit-min-device-pixel-ratio: 2) {
          .support-number {
            color: var(--white) !important;
            text-decoration: none !important;

            a {
              color: var(--white) !important;
              text-decoration: none !important;
            }
          }
        }
      }

      .support-text {
        color: var(--gray);
        display: block;
        font-size: 0.9rem;
      }
    }

    .contact_form {
      padding: 0;
      background: transparent;
      max-width: 100%;

      .form-group {
        width: 100%;
        margin: 0;

        input,
        textarea {
          padding: 15px;
          border: 1px solid var(--gray);
          width: 100%;
          font-family: "Inrter", sans-serif;
          /* background: var(--dark-gray) !important;
          color: var(--white);
          border: none !important;
          border-radius: 25px; */

          &::placeholder {
            color: var(--dark-gray);
          }
        }
      }
    }

    .accordion {
      width: 100%;
      margin: auto;
      overflow: hidden;

      .accordion-item {
        background: transparent;
        border: none;
        border-bottom: 1px solid var(--gray);
        border-radius: 0 !important;

        .accordion-header {
          cursor: pointer;
          padding: 25px 0 10px;
          font-weight: bold;
          display: flex;
          justify-content: space-between;
          align-items: center;

          .arrow {
            color: var(--white);
            transition: transform 0.3s ease;
            margin-right: 10px;
            font-size: 18px;
          }

          span {
            font-size: 1.5rem;
            line-height: 1.3;
            color: var(--white);
            font-weight: 600;
            flex-grow: 1;
            padding-right: 20px;

            @media (max-width: 767px) {
              font-size: 1.25rem;
            }
          }
        }

        .accordion-content {
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.3s ease;
          padding: 0 0 15px;
          color: var(--gray);

          p {
            margin: 15px 0;
          }
        }

        &.active {
          .accordion-content {
            max-height: 450px;
            /* adjust if answers are long */
            overflow-y: auto;
          }

          .arrow {
            transform: rotate(90deg);
            /* arrow points down when open */
          }
        }
      }
    }
  }

  /* Footer  */

  footer {
    position: relative;
    z-index: 999;
  }

  .backToTopBtn {
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgb(20, 20, 20);
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 0px 4px var(--primary);
    cursor: pointer;
    transition-duration: 0.3s;
    overflow: hidden;
    position: fixed;
  }

  #backToTop {
    opacity: 0;
    visibility: hidden;

    &.visible {
      opacity: 1;
      visibility: visible;
    }
  }

  .svgIcon {
    width: 12px;
    transition-duration: 0.3s;
  }

  .svgIcon path {
    fill: var(--white);
  }

  .backToTopBtn:hover {
    width: 140px;
    border-radius: 50px;
    transition-duration: 0.3s;
    background-color: var(--light-gray);
    align-items: center;
  }

  .backToTopBtn:hover .svgIcon {
    transition-duration: 0.3s;
    transform: translateY(-200%);
  }

  .backToTopBtn::before {
    position: absolute;
    bottom: -20px;
    content: "Back to Top";
    color: var(--black);
    font-size: 0px;
  }

  .backToTopBtn:hover::before {
    font-size: 13px;
    opacity: 1;
    bottom: unset;
    transition-duration: 0.3s;
  }

  .site_footer {
    padding-block: 3.125rem;

    a {
      color: var(--white);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.25s ease-out;

      &:hover,
      &:focus-visible {
        color: var(--primary);
      }
    }

    p {
      font-size: 15px;
      line-height: 18px;
      text-align: center;
      margin-bottom: 1rem;
    }

    .logos img {
      width: 40px;
      height: 40px;
      object-fit: contain;
    }

    @media screen and (max-width: 767px) {
      .footer_link ul {
        flex-direction: column;
        gap: 0.8rem !important;
      }

      .copyrights {
        font-size: 0.875rem;
      }
    }

    .logo_footer {
      max-width: 90px;
      height: auto;
    }

    .disclaimer {
      font-size: 15px;
      line-height: 1.4;
    }
  }

  /* Modals  */
  .otp-modal,
  .login-modal,
  .unsub-modal,
  .sign-up-modal {
    position: fixed;
    inset: 0;
    background: var(--black);
    color: var(--dark-gray);
    border-color: var(--black);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: auto;
    padding: 2rem;

    @media screen and (max-width: 767px) {
      padding: 1rem;
    }

    .close {
      position: absolute;
      right: 1.25rem;
      top: 1.25rem;
      font-size: 2rem;
      cursor: pointer;
      color: var(--dark-gray);
      line-height: 20px;

      @media screen and (max-width: 767px) {
        right: 1rem;
        top: 1rem;
      }
    }

    form {
      width: 100%;

      .checkbox-group {
        label {
          font-size: 0.875rem;
          display: inline;
        }

        input[type="checkbox"] {
          accent-color: var(--primary);
          min-height: auto !important;
        }
      }

      .checkbox-group {
        &:first-of-type {
          margin-top: 10px;
        }

        label {
          display: inline;
          font-size: 0.875rem;
        }
      }

      input {
        padding: 0.5rem;
        border: 1px solid var(--gray);
        border-radius: var(--border-radius-2);
      }

      .btn {
        width: 100%;
        margin-top: 1rem;
        padding: 0.75rem;
      }

      .form-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 3rem 6rem;

        h2,
        label,
        p {
          color: var(--dark-gray);
        }

        p {
          font-size: 0.875rem;
          text-align: center;
  
          &:empty {
            display: none;
          }
        }

        a {
          color: var(--primary);
        }

        @media screen and (max-width: 767px) {
          margin-top: 0;
          padding: 2rem 1rem;
          max-width: 100%;

          &label {
            font-size: 0.75rem;
          }
        }
      }
    }

    h2 {
      @media screen and (max-width: 767px) {
        font-size: 1.5rem;
        text-align: center;
        margin: 10px auto;
      }
    }

    .modal-content {
      background: var(--white);
      border-radius: var(--border-radius-2);
      border: 2px solid var(--border);
      width: 100%;
      overflow: auto;
      max-inline-size: 600px;
      position: relative;

      @media screen and (max-width: 767px) {
        width: 100%;
        margin-top: 2rem;
      }

      .form-group input {
        background: var(--light-gray);
        border: 2px solid var(--gray) !important;
        border: none;
        padding: 0.5rem 1rem;
        min-height: 50px;
        color: var(--black);

        &:focus-visible {
          outline: none;
          border: 2px solid var(--primary) !important;
        }

        &::placeholder {
          color: var(--dark-gray);
        }
      }
    }

    .modal-bck {
      background: url(../images/modal-image.jpg) center no-repeat;
      background-size: cover;
      height: 100%;
      width: 100%;

      @media (max-width: 767px) {
        display: none;
      }
    }
  }

  /* Payment modal  */

  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(255, 255, 255, 0.9);
    align-items: center;
    justify-content: center;
    padding: 30px 0;
  }

  /* Payment Modal Styles */

  #paymentModal .modal-content {
    background: var(--white);
    border-radius: var(--border-radius-2);
    border: 2px solid var(--primary);
    padding: var(--border-radius-2);
    max-width: 480px;
    width: 90%;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    height: auto;
    position: relative;

    @media screen and (max-width: 479px) {
      padding: 20px;
      height: 90%;
      overflow-y: scroll;
    }

    h2 {
      font-size: 24px;
      margin-bottom: 20px;
      text-align: center;
    }

    .form-group {
      margin-bottom: 20px;
      gap: 8px;

      @media screen and (max-width: 767px) {
        padding: 0;
      }
    }

    label {
      display: block;
      margin-bottom: 0;
      font-size: 14px;
      font-weight: 500;
      color: var(--dark-gray);
    }

    input {
      width: 100%;
      padding: 8px 15px;
      font-size: 16px;
      transition: border-color 0.3s ease;
      color: var(--black);

      &:focus {
        border-color: var(--primary);
        outline: none;
      }
    }

    .d-flex {
      display: flex;
      gap: 15px;

      .form-group {
        flex: 1;
      }
    }

    button[type="submit"] {
      width: 100%;
      padding: 14px;
      background: var(--primary);
      border: none;
      border-radius: 30px;
      color: white;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 10px;

      &:hover {
        background: var(--primary);
        transform: translateY(-1px);
        box-shadow: 0 5px 15px rgba(26, 47, 163, 0.2);
      }
    }

    .close {
      position: absolute;
      right: 20px;
      top: 15px;
      font-size: 2rem;
      color: var(--primary);
      cursor: pointer;
      transition: color 0.3s ease;

      @media screen and (max-width: 479px) {
        right: 10px;
        top: 10px;
      }

      &:hover {
        color: var(--primary);
      }
    }
  }

  /* Input placeholder styling */
  input::placeholder {
    color: var(--dark-gray);
  }

  /* Error state */
  input.error {
    border-color: #dc3545;
  }

  /* Success state */
  input.success {
    border-color: #28a745;
  }

  /* Custom Audio Player Styling */
  audio {
    width: 100%;
    height: 50px;
    border-radius: var(--border-radius-3);
  }

  /* Webkit (Chrome, Safari, newer versions of Opera) */
  audio::-webkit-media-controls-panel {
    background-color: var(--light-gray);
    border-radius: var(--border-radius-3);
  }

  audio::-webkit-media-controls-play-button {
    background-color: var(--primary);
    border-radius: 50%;
    color: var(--white);
  }

  audio::-webkit-media-controls-play-button:hover {
    background-color: var(--light-primary);
  }

  audio::-webkit-media-controls-timeline {
    background-color: var(--gray);
    border-radius: 25px;
    margin: 0 10px;
  }

  audio::-webkit-media-controls-timeline:hover {
    background-color: var(--primary);
  }

  audio::-webkit-media-controls-volume-slider {
    background-color: var(--gray);
    border-radius: 25px;
    padding: 0 5px;
  }

  audio::-webkit-media-controls-volume-slider:hover {
    background-color: var(--primary);
  }

  /* Audio player container - for additional styling */
  .audio-player-container {
    background: linear-gradient(135deg,
        #f5f5f5 0%,
        var(--light-primary) 40 100%);
    padding: 1.25rem;
    border-radius: var(--border-radius-2);
    box-shadow: 0px 0px 1rem rgba(221, 162, 222, 0.4);
    margin: 1rem 0;
    width: 100%;
  }

  /* Table  */

  .blog table {
    width: 100% !important;
    margin: 20px auto;
    font-size: 0.875rem;

    td {
      padding: 10px 5px;
    }
  }

  .blog table tr:first-child th,
  .blog table tr:first-child td {
    background: var(--primary);
    color: var(--white);
  }

  /* Legals Pages  */

  .legals {
    font-size: 16px;
    line-height: 1.4;

    h2 {
      font-size: 2rem;
      margin-top: 2rem;
      margin-bottom: 1rem;
    }

    h3 {
      font-size: 1.5rem;
      margin-top: 2rem;
      margin-bottom: 1rem;
    }

    h4 {
      font-size: 1.25rem;
      margin-top: 1.5rem;
      margin-bottom: 0.5rem;
    }

    p {
      font-size: 1rem;
      margin-bottom: 1rem;
    }

    ul {
      list-style: disc;
      padding-left: 20px;

      li {
        margin-bottom: 0.5rem;
      }
    }
  }
}

@layer pages {
  .page {
    p {
      margin: 15px 0;
    }

    h1,
    h2 {
      margin-top: 30px;
    }

    .info-frame {
      background: var(--secondary);
      background-size: cover;
      padding: 30px;
      border-radius: var(--border-radius-2);
      gap: 10px;

      h2 {
        color: var(--white);
        margin: 0;
      }

      p {
        margin: 0;
      }

      .text-xl {
        font-size: 1.5rem;
        font-weight: 700;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;

        @media screen and (max-width: 991px) {
          font-size: 1.2rem;
        }
      }
    }

    ul,
    ol {
      li {
        margin: 15px;
      }
    }
    
  }

  .btn.primary {
    padding: 12px 40px;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    transition: 0.25s ease-out;

    &:hover {
      transform: scale(1.1);
    }
  }

}


.page .account_page h2.text-center {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 2rem;
}

.page .account_page .info-frame {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-2);
  padding: 1.5rem 2rem;
}

.page .account_page .info-frame p strong {
  font-size: var(--text-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 700;
}

.page .account_page .info-frame .text-xl {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: var(--black);
}

.page .account_page .text-frame {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-2);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}

.page .account_page .text-frame p {
  max-width: 52ch;
  color: var(--dark-gray);
  line-height: 1.65;
}

.page .account_page .text-frame h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  margin: 0;
}

.page .account_page .text-frame .btn {
  width: 100%;
  max-width: 320px;
  padding: 0.85rem 1.5rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--border-radius-4);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--black);
  transition: all 0.2s ease-out;
}

.page .account_page .text-frame .btn:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.page .account_page .text-frame:last-child .btn {
  border-color: var(--secondary);
  color: var(--secondary);
}

.page .account_page .text-frame:last-child .btn:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

@media (max-width: 750px) {
  .page .account_page { flex-direction: column; }
}

@media (max-width: 640px) {
  .page .account_page .info-frame,
  .page .account_page .text-frame { padding: 1.25rem; }
}

@layer utilites {
  .background-dark {
    background-color: var(--black);
  }

  .background-primary {
    background-color: var(--primary);
  }

  .background-light {
    background-color: var(--light-gray);
  }

  .intro-text {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.8em;
    line-height: normal;
  }

  .d-none,
  .hidden {
    display: none !important;
  }

  .d-flex {
    display: flex;

    .flex-1 {
      flex: 1;
      min-width: 0;
    }
  }

  .flex-wrap {
    flex-wrap: wrap;
  }

  .flex-column {
    flex-direction: column;
  }

  .d-flex .column {
    flex-basis: 50%;
    flex-grow: 1;
  }

  .justify-center {
    justify-content: center;
  }

  .justify-between {
    justify-content: space-between;
  }

  .align-center {
    align-items: center;
  }

  .text-center {
    text-align: center;
  }

  .text-white {
    color: var(--white);
  }

  .text-black {
    color: var(--black);
  }

  .m-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .ml-auto {
    margin-left: auto !important;
  }

  .xs-hide {
    @media screen and (max-width: 767px) {
      display: none;
    }
  }

  .md-hide {
    @media screen and (min-width: 768px) and (max-width: 1199px) {
      display: none;
    }
  }

  .arrow-right {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
  }

  .mt-0 {
    margin-top: 0 !important;
  }

  .mt-1 {
    margin-top: 1rem;
  }

  .mt-2 {
    margin-top: 1.25rem;
  }

  .mt-3 {
    margin-top: 1.5rem;
  }

  .mt-4 {
    margin-top: 2rem;
  }

  .mt-5 {
    margin-top: 2.5rem;
  }

  .mb-1 {
    margin-bottom: 1rem;
  }

  .mb-2 {
    margin-bottom: 1.25rem;
  }

  .mb-3 {
    margin-bottom: 1.5rem;
  }

  .mb-4 {
    margin-bottom: 2rem;
  }

  .mb-5 {
    margin-bottom: 2.5rem;
  }

  .pt-0 {
    padding-top: 0 !important;
  }

  .pt-1 {
    padding-top: 1rem;
  }

  .pt-2 {
    padding-top: 1.25rem;
  }

  .pt-3 {
    padding-top: 1.5rem;
  }

  .pt-4 {
    padding-top: 2rem;
  }

  .pt-5 {
    padding-top: 2.5rem;
  }

  .pb-1 {
    padding-bottom: 1rem;
  }

  .pb-2 {
    padding-bottom: 1.25rem;
  }

  .pb-3 {
    padding-bottom: 1.5rem;
  }

  .pb-4 {
    padding-bottom: 2rem;
  }

  .pb-5 {
    padding-bottom: 2.5rem;
  }

  .no-padding-top {
    padding-top: 0 !important;
  }

  .no-padding-bottom {
    padding-bottom: 0 !important;
  }

  .col-4 {
    width: 35%;

    @media screen and (min-width: 768px) and (max-width: 1199px) {
      width: 45%;
    }

    @media screen and (max-width: 767px) {
      width: 100%;
    }
  }

  .col-7 {
    width: 60%;

    @media screen and (min-width: 768px) and (max-width: 1199px) {
      width: 50%;
    }

    @media screen and (max-width: 767px) {
      width: 100%;
    }
  }

  .col-6 {
    width: 50%;

    @media screen and (max-width: 767px) {
      width: 100%;
    }
  }

  .gap-1 {
    gap: 0.5rem;
  }

  .gap-2 {
    gap: 0.625rem;
  }

  .gap-3 {
    gap: 1rem;
  }

  .gap-20 {
    gap: 20px;
  }

  .gap-30 {
    gap: 30px;
  }

  .gap-50 {
    gap: 50px;
  }

  .gap-100 {
    gap: 100px;

    @media screen and (max-width: 1199px) {
      gap: 50px;
    }
  }

  .w-100 {
    width: 100%;
  }

  .border-bottom {
    border-bottom: 1px solid var(--light-gray);
  }

  .mobile-column {
    @media screen and (max-width: 767px) {
      flex-direction: column;
    }
  }

  .tablet-column {
    @media screen and (min-width: 768px) and (max-width: 1199px) {
      flex-direction: column;
    }
  }

  .reverse-mobile {
    @media screen and (max-width: 767px) {
      flex-direction: column-reverse;
    }
  }
}
