@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;
  }

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

@layer base {
  :root {
    --black: #1a1a1a;
    --white: #fff;
    --primary: #e54500;
    --secondary: #ffad14;
    --light-gray: #e8e5e0;
    --gray: #6b6b6b;
    --dark-gray: #5e5e5e;

    --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:
      system-ui,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      Roboto,
      Oxygen,
      Ubuntu,
      Cantarell,
      "Open Sans",
      "Helvetica Neue",
      sans-serif;
    font-size: 10px;
    color: var(--black);
    background-color: #ffffff;
    position: relative;
    line-height: normal;
    width: 100%;
    overflow-x: hidden;
  }

  h1 {
    font-size: 4.5em;
    font-weight: 300;

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

    strong {
      font-weight: 500;
    }

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

  h2 {
    font-size: 3rem;
    font-weight: 300;
    text-transform: uppercase;

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

    span {
      display: block;
      color: var(--black);
      font-size: 3rem;

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

  h3 {
    font-size: 1.875rem;
    font-weight: 400;

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

  a {
    color: var(--light-primary);
    text-decoration: none;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    border: none;
    justify-content: center;
    min-width: 210px;
    height: 72px;
    border-radius: 14px;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--white);
    background: linear-gradient(90deg, #2d7a3e, #4caf50);
    transition: all 0.3s ease-in-out;
    cursor: pointer;

    &:hover {
      background: linear-gradient(90deg, #4caf50, #2d7a3e);
      transform: scale(1.01);
    }
  }

  p {
    color: var(--gray);
    font-weight: 300;
  }
}

@layer layout {
  .wrapper {
    --wrapper-max-width: 1440px;
    --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: 800px;
  }

  .wrapper[data-width="narrowXS"] {
    --wrapper-max-width: 600px;
  }

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

  .wrapper[data-width="wide"] {
    --wrapper-max-width: 1660px;
  }

  .section {
    padding-block: 6rem;

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

@layer components {
  /* Navigation  */

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

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

    .logo_header {
      display: flex;
      align-items: center;
      gap: 0.75rem;

      .desktop_logo {
        display: block;
        width: 120px;
        height: auto;
      }

      .mobile_logo {
        display: none;
        width: 40px;
        height: auto;
      }

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

        .mobile_logo {
          display: block;
        }
      }
    }

    .site_navigation {
      justify-self: end;

      position: fixed;
      inset: 0;
      background: #e8e5e0;
      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;
      /* Add for iOS smooth scrolling */
      -webkit-transform: translateX(100%);
      /* Ensure compatibility with older iOS */

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

        ul {
          li {
            margin: 0;
            a {
              background: transparent !important;
            }
          }
        }
      }

      ul {
        display: flex;
        gap: 1rem;

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

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

        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 0;
      }
    }

    .header-right {
      grid-column: 3;
      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;
      }

      .dropdown-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        background: #fff8f0;
        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: 90%;
        }

        &.active {
          right: 0;
        }

        ul {
          display: flex;
          flex-direction: column;
          gap: 1.25rem;

          li {
            margin: 0;

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

              &:hover {
                color: var(--light-gray);
              }
            }
          }
        }
      }

      .unsubLink {
        font-size: 20px;
        text-transform: uppercase;
        font-weight: 600;
        color: var(--black);
      }
    }

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

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

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

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

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

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

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

        span:first-child {
          transform: translateY(11px) rotate(45deg);
          width: 30px;
          height: 3px;
          border-radius: 0;
        }

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

        span:last-child {
          transform: translateY(-4px) rotate(-45deg);
          width: 30px;
          height: 3px;
          border-radius: 0;
        }
      }

      &[aria-expanded="true"] {
        right: 0;
        top: 0;
        position: absolute;
        background: transparent !important;

        span:first-child {
          transform: translateY(9px) rotate(45deg);
          color: var(--white);
          width: 30px;
        }

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

        span:last-child {
          transform: translateY(-5px) rotate(-45deg);
          color: var(--white);
          width: 30px;
        }
      }
    }

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

  /* Hero Section */

  @keyframes hero-float {
    0%,
    100% {
      transform: translateY(0) rotate(var(--float-rotate, 0deg));
    }

    50% {
      transform: translateY(-14px) rotate(calc(var(--float-rotate, 0deg) + 1deg));
    }
  }

  .page_hero {
    position: relative;
    padding-block: 2rem 0;

    &.figma-hero {
      background:
        radial-gradient(circle at 50% 42%, rgba(139, 195, 74, 0.22), rgba(139, 195, 74, 0) 42%),
        radial-gradient(circle at 12% 6%, rgba(45, 122, 62, 0.48), rgba(45, 122, 62, 0) 38%),
        radial-gradient(circle at 88% 12%, rgba(45, 122, 62, 0.36), rgba(45, 122, 62, 0) 32%), #2c3539;
      min-height: 100vh;
      padding: 5rem 0 4rem;

      &::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 140px;
        left: 0;
        right: 0;
        bottom: -90px;
        /* border-radius: 50%; */
        background: url(../images/premium/hero_wave.png) center top no-repeat;
        background-size: contain;

        @media screen and (max-width: 822px) {
          bottom: -115px;
        }

        @media screen and (max-width: 414px) {
          bottom: -130px;
        }
      }

      .wrapper {
        position: relative;
        z-index: 1;
      }

      .figma-hero__content {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
      }

      .figma-hero__badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 0.75rem;
        padding: 0.625rem 1.4rem;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.9rem;
      }

      h1 {
        margin: 0;
        color: var(--white);
        font-size: clamp(3rem, 8vw, 6rem);
        line-height: 1;
        font-weight: 500;
        letter-spacing: -0.03em;

        span {
          display: block;
          margin-top: 0.35rem;
          color: #8bc34a;

          font-weight: 500;
        }
      }

      p {
        margin: 0 auto;
        max-width: 700px;
        color: rgba(255, 255, 255, 0.8);
        font-size: clamp(1.05rem, 2vw, 2rem);
        line-height: 1.5;

        strong {
          color: #8bc34a;
          font-weight: 500;
        }
      }

      .figma-hero__search {
        width: 100%;
        max-width: 672px;
        margin: 1.5rem auto 0;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.625rem;

        .figma-hero__search-icon {
          color: rgba(255, 255, 255, 0.7);
          font-size: 1.4rem;
          line-height: 1;
          padding-left: 0.75rem;
        }

        input {
          flex: 1;
          border: none;
          background: transparent;
          color: var(--white);
          font-size: 1rem;
          outline: none;

          &::placeholder {
            color: rgba(255, 255, 255, 0.5);
          }
        }

        button {
          border: none;
          background: #2d7a3e;
          color: var(--white);
          border-radius: 14px;
          height: 48px;
          padding: 0 1.5rem;
          font-size: 1rem;
          cursor: pointer;
          white-space: nowrap;
        }
      }

      .figma-hero__trending {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 0.3rem;

        .figma-hero__trend-label {
          color: rgba(255, 255, 255, 0.6);
          font-size: 0.875rem;
          margin-right: 0.2rem;
        }

        button {
          border: 1px solid rgba(255, 255, 255, 0.2);
          background: rgba(255, 255, 255, 0.1);
          color: var(--white);
          border-radius: 999px;
          padding: 0.4rem 0.9rem;
          font-size: 0.85rem;
          cursor: pointer;
        }
      }

      .figma-hero__actions {
        margin-top: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;

        .figma-hero__btn {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          min-width: 210px;
          height: 72px;
          border-radius: 14px;
          font-size: 1.125rem;
          font-weight: 500;
          text-decoration: none;
        }

        .figma-hero__btn--primary {
          color: var(--white);
          background: linear-gradient(90deg, #2d7a3e, #4caf50);
        }

        .figma-hero__btn--secondary {
          color: var(--white);
          border: 2px solid rgba(255, 255, 255, 0.3);
          background: rgba(255, 255, 255, 0.1);
        }
      }

      .figma-hero__stats {
        margin-top: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.05);
        display: grid;
        grid-template-columns: repeat(4, minmax(130px, 1fr));
        gap: 0;
        padding: 2rem 1rem;

        div {
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 0.25rem;
        }

        strong {
          color: #8bc34a;
          font-size: clamp(1.9rem, 3vw, 2.25rem);
          font-weight: 400;
          line-height: 1;
        }

        span {
          color: rgba(255, 255, 255, 0.7);
          font-size: 0.9rem;
        }
      }

      .figma-hero__float {
        position: absolute;
        width: 96px;
        height: 96px;
        display: grid;
        place-items: center;
        border-radius: 16px;
        font-size: 2.2rem;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
        animation: hero-float 10s ease-in-out infinite;
        will-change: transform;
      }

      .figma-hero__float--one {
        top: 2.5rem;
        right: 3rem;
        --float-rotate: 5deg;
        animation-duration: 11s;
        animation-delay: -2s;
        background: linear-gradient(135deg, #e07a5f, #f4a261);
      }

      .figma-hero__float--two {
        top: 7rem;
        right: 15rem;
        --float-rotate: 4deg;
        animation-duration: 13s;
        animation-delay: -5s;
        background: linear-gradient(135deg, #8bc34a, #4caf50);
      }

      .figma-hero__float--three {
        top: 11.2rem;
        right: 8.8rem;
        --float-rotate: 2deg;
        animation-duration: 12s;
        animation-delay: -3.5s;
        background: linear-gradient(135deg, #f4a261, #e07a5f);
      }

      .figma-hero__float--four {
        bottom: 4.5rem;
        right: 5rem;
        --float-rotate: 3deg;
        animation-duration: 14s;
        animation-delay: -6s;
        background: linear-gradient(135deg, #4caf50, #2d7a3e);
      }

      @media (prefers-reduced-motion: reduce) {
        .figma-hero__float {
          animation: none;
          transform: rotate(var(--float-rotate, 0deg));
        }
      }

      @media screen and (max-width: 1199px) {
        min-height: auto;
        padding: 4rem 0 5rem;

        .figma-hero__float {
          display: none;
        }
      }

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

        .figma-hero__badge {
          font-size: 0.8rem;
          padding: 0.5rem 1rem;
        }

        .figma-hero__search {
          flex-wrap: wrap;
          padding: 0.75rem;

          .figma-hero__search-icon {
            padding-left: 0.25rem;
          }

          input {
            min-width: 100%;
            order: 2;
            font-size: 0.95rem;
            padding-left: 0.25rem;
          }

          button {
            order: 3;
            width: 100%;
          }
        }

        .figma-hero__actions {
          width: 100%;

          .figma-hero__btn {
            min-width: 100%;
            height: 62px;
          }
        }

        .figma-hero__stats {
          grid-template-columns: repeat(2, minmax(120px, 1fr));
          row-gap: 1.25rem;
          padding: 1.4rem 0.75rem;
        }
      }
    }

    &.home_hero {
      padding-block: 5rem;

      @media screen and (max-width: 1199px) {
        padding-block: 4rem;
      }
    }
    .col-7 img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .d-grid {
      display: inline-grid;
      row-gap: 20px;
      column-gap: 20px;
      grid-template-columns: repeat(2, 1fr);

      img {
        width: 290px;
        height: auto;
        object-fit: cover;
      }
    }

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

    .hero-bck {
      position: absolute;
      right: 5%;
      top: -40vh;
      width: 50%;
      max-width: 1000px;
      z-index: 0;
      overflow: hidden;
      object-fit: contain;
      height: auto;

      @media screen and (min-width: 1200px) and (max-width: 1660px) {
        top: -38vh;
        width: 55%;
      }

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

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

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

      @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;
      }

      &.login-page {
        background: none;
        padding: 0;
      }

      h1 {
        font-size: 8em;

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

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

      p {
        font-size: 1.758em;
        margin: 0;
        max-width: 700px;
      }

      .btn {
        margin: 0;
        font-size: 1.5rem;
        text-transform: uppercase;
        background: var(--white);
        border: 2px solid var(--black);
        color: var(--black);
        padding: 1.25rem 3rem;
        border-radius: var(--border-radius-1);
      }
    }
  }

  .features-banner {
    background: var(--white);

    .features-banner__header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 4rem;

      h2 {
        color: #2c3539;

        font-size: clamp(1.75rem, 4vw, 3rem);
        font-weight: 500;
        text-transform: none;
        line-height: 1.2;
        margin-bottom: 1rem;
      }

      p {
        color: #4a5565;
        font-size: clamp(1rem, 1.8vw, 1.25rem);
        line-height: 1.7;
        font-weight: 400;
      }
    }

    .features-banner__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;

      @media screen and (max-width: 1024px) {
        grid-template-columns: repeat(2, 1fr);
      }

      @media screen and (max-width: 600px) {
        grid-template-columns: 1fr;
      }
    }

    .features-card {
      background: #fff8f0;
      border-radius: 16px;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      border: 2px solid transparent;
      transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
      cursor: pointer;

      &:hover {
        border-color: rgba(139, 195, 74, 0.35);
        background: #ffffff;
        box-shadow: 0 8px 32px rgba(45, 122, 62, 0.08);
      }

      .features-card__icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }

      h3 {
        color: #2c3539;

        font-size: 1.25rem;
        font-weight: 500;
        margin: 0;
      }

      p {
        color: #4a5565;
        font-size: 1rem;
        line-height: 1.625;
        font-weight: 400;
        margin: 0;
      }
    }
  }

  /* Recipe Showcase Section */

  .recipes-showcase {
    background: linear-gradient(180deg, #fff 0%, #fff8f0 100%);

    .recipes-showcase__header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 3rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;

      h2 {
        color: #2c3539;

        font-size: clamp(1.75rem, 4vw, 3rem);
        font-weight: 500;
        text-transform: none;
        line-height: 1.2;
        margin: 0;
      }

      p {
        color: #4a5565;
        font-size: clamp(1rem, 1.8vw, 1.25rem);
        line-height: 1.7;
        font-weight: 400;
        margin: 0;
      }
    }

    .recipes-showcase__badge {
      display: inline-flex;
      align-items: center;
      padding: 0.35rem 1rem;
      border-radius: 999px;
      background: #2d7a3e;
      color: #fff;
      font-size: 0.875rem;
      font-weight: 500;

      letter-spacing: 0.02em;
    }

    .recipes-showcase__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;

      @media screen and (max-width: 1024px) {
        grid-template-columns: repeat(2, 1fr);
      }

      @media screen and (max-width: 560px) {
        grid-template-columns: 1fr;
      }
    }

    .recipe-card {
      background: #fff;
      border: 1px solid #f3f4f6;
      border-radius: 16px;
      overflow: hidden;
      box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.06);
      display: flex;
      flex-direction: column;
      transition:
        box-shadow 0.2s ease,
        transform 0.2s ease;

      &:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        transform: translateY(-2px);
      }

      .recipe-card__image {
        position: relative;
        height: 192px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        flex-shrink: 0;
      }

      .recipe-card__emoji {
        font-size: 5rem;
        line-height: 1;
        opacity: 0.4;
        display: block;
      }

      .recipe-card__rating {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: #fff;
        border-radius: 999px;
        padding: 0.25rem 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.25rem;
        font-size: 0.875rem;
        font-weight: 400;
        color: #0a0a0a;
        box-shadow:
          0 10px 15px rgba(0, 0, 0, 0.1),
          0 4px 6px rgba(0, 0, 0, 0.08);
      }

      .recipe-card__body {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        flex: 1;
      }

      .recipe-card__tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;

        span {
          background: #fff8f0;
          color: #2d7a3e;
          border-radius: 999px;
          padding: 0.25rem 0.75rem;
          font-size: 0.75rem;
          font-weight: 400;

          line-height: 1.4;
        }
      }

      h3 {
        color: #2c3539;

        font-size: 1.25rem;
        font-weight: 500;
        line-height: 1.4;
        margin: 0.25rem 0 0;
      }

      p {
        color: #4a5565;
        font-size: 0.875rem;
        line-height: 1.5;
        font-weight: 400;
        margin: 0;
      }

      .recipe-card__footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 1rem;
        margin-top: auto;
        border-top: 1px solid #f3f4f6;
        color: #6a7282;
        font-size: 0.875rem;

        span {
          display: flex;
          align-items: center;
          gap: 0.3rem;
        }

        svg {
          flex-shrink: 0;
        }
      }
    }

    .recipes-showcase__cta {
      text-align: center;
      margin-top: 3rem;
    }

    .recipes-showcase__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #2d7a3e;
      color: #fff;
      border-radius: 14px;
      padding: 1.1rem 2.5rem;
      font-size: 1.125rem;
      font-weight: 500;

      text-decoration: none;
      transition:
        background 0.2s ease,
        transform 0.2s ease;

      &:hover {
        background: #245f30;
        transform: translateY(-1px);
      }
    }
  }

  /* How It Works + Premium */

  .how-it-works {
    background: #fff8f0;

    .how-it-works__header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 4rem;

      h2 {
        color: #2c3539;

        font-size: clamp(1.75rem, 4vw, 3rem);
        font-weight: 500;
        text-transform: none;
        line-height: 1.2;
        margin: 0 0 1rem;
      }

      p {
        color: #4a5565;
        font-size: clamp(1rem, 1.8vw, 1.25rem);
        line-height: 1.7;
        font-weight: 400;
        margin: 0;
      }
    }

    .how-it-works__steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      margin-bottom: 4rem;

      @media screen and (max-width: 1024px) {
        grid-template-columns: repeat(2, 1fr);
      }

      @media screen and (max-width: 560px) {
        grid-template-columns: 1fr;
      }
    }

    .hiw-step {
      position: relative;
      background: #fff;
      border-radius: 16px;
      padding: 2rem 1.5rem 2rem;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
      padding-top: 2.5rem;

      /* dashed connector line to the right */
      .hiw-step__connector {
        position: absolute;
        top: calc(2.5rem + 24px); /* centre of number badge */
        left: calc(100% + 1px);
        width: calc(2rem - 2px);
        height: 2px;
        background: linear-gradient(90deg, #2d7a3e, #8bc34a);
        opacity: 0.2;

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

      &.hiw-step--last .hiw-step__connector {
        display: none;
      }

      .hiw-step__number {
        position: absolute;
        top: -16px;
        right: 1rem;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #2d7a3e;
        color: #fff;
        font-size: 1rem;

        font-weight: 400;
        display: grid;
        place-items: center;
        box-shadow:
          0 10px 15px rgba(0, 0, 0, 0.1),
          0 4px 6px rgba(0, 0, 0, 0.08);
      }

      .hiw-step__icon {
        width: 80px;
        height: 80px;
        border-radius: 16px;
        background: #2d7a3e;
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }

      h3 {
        color: #2c3539;

        font-size: 1.5rem;
        font-weight: 500;
        margin: 0.25rem 0 0;
      }

      p {
        color: #4a5565;
        font-size: 1rem;
        line-height: 1.625;
        font-weight: 400;
        margin: 0;
      }
    }

    /* Premium Panel */

    .premium-panel {
      background: #fff;
      border-radius: 24px;
      box-shadow:
        0 20px 25px rgba(0, 0, 0, 0.1),
        0 8px 10px rgba(0, 0, 0, 0.06);
      padding: 3rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;

      @media screen and (max-width: 900px) {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }

    .premium-panel__left {
      display: flex;
      flex-direction: column;
      gap: 1rem;

      h3 {
        color: #2c3539;

        font-size: clamp(1.25rem, 2.5vw, 1.875rem);
        font-weight: 500;
        line-height: 1.2;
        margin: 0;
        text-transform: none;
      }
    }

    .premium-panel__list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      list-style: none;
      padding: 0;
      margin: 0.5rem 0;

      li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: #364153;
        font-size: 1rem;

        font-weight: 400;

        &::before {
          display: none;
        } /* override any global li::before */
      }
    }

    .premium-panel__check {
      display: inline-grid;
      place-items: center;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: #8bc34a;
      color: #fff;
      font-size: 0.875rem;
      flex-shrink: 0;
    }

    .premium-panel__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #e07a5f;
      color: #fff;
      border-radius: 10px;
      padding: 1rem 2rem;
      font-size: 1rem;
      font-weight: 500;

      text-decoration: none;
      width: fit-content;
      margin-top: 0.5rem;
      box-shadow:
        0 10px 15px rgba(224, 122, 95, 0.2),
        0 4px 6px rgba(224, 122, 95, 0.15);
      transition:
        background 0.2s ease,
        transform 0.2s ease;

      &:hover {
        background: #c96a4e;
        transform: translateY(-1px);
      }
    }

    .premium-panel__right {
      position: relative;
      border-radius: 24px;
      background: linear-gradient(146deg, #8bc34a, #2d7a3e);
      padding: 2rem;
      color: #fff;

      overflow: visible;
    }

    .premium-panel__plan {
      font-size: 0.875rem;
      opacity: 0.8;
      margin: 0 0 0.5rem;
      font-weight: 400;
      color: #fff;
    }

    .premium-panel__price {
      font-size: 3rem;
      font-weight: 400;
      line-height: 1;
      margin: 0;
      color: #fff;
    }

    .premium-panel__period {
      font-size: 0.875rem;
      opacity: 0.8;
      margin: 0.4rem 0 1.5rem;
      font-weight: 400;
      color: #fff;
    }

    .premium-panel__features {
      list-style: none;
      padding: 0;
      margin: 0 0 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;

      li {
        font-size: 0.875rem;
        opacity: 0.8;
        color: #fff;
        font-weight: 400;

        &::before {
          display: none;
        }
      }
    }

    .premium-panel__divider {
      border: none;
      border-top: 1px solid rgba(255, 255, 255, 0.25);
      margin: 0 0 1rem;
    }

    .premium-panel__note {
      font-size: 0.875rem;
      opacity: 0.8;
      margin: 0;
      color: #fff;
      font-weight: 400;
    }

    .premium-panel__badge {
      position: absolute;
      bottom: -16px;
      right: -8px;
      background: #e07a5f;
      color: #fff;
      font-size: 0.8rem;
      font-weight: 500;
      padding: 0.4rem 1rem;
      border-radius: 999px;
      box-shadow: 0 4px 12px rgba(224, 122, 95, 0.35);
    }
  }

  /* Account Page */

  .account-hero {
    background: linear-gradient(135deg, #1e3a2f 0%, #2d5a3e 50%, #2c3539 100%);
    padding: 5rem 0 4rem;
    text-align: center;

    .account-hero__badge {
      display: inline-block;
      background: rgba(139, 195, 74, 0.15);
      border: 1px solid rgba(139, 195, 74, 0.3);
      color: #8bc34a;

      font-size: 0.875rem;
      font-weight: 500;
      padding: 0.4rem 1.1rem;
      border-radius: 999px;
      margin-bottom: 1.5rem;
    }

    h1 {
      color: #fff;
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      line-height: 1.1;
      margin: 0 0 1rem;
    }

    p {
      color: rgba(255, 255, 255, 0.7);

      font-size: clamp(1rem, 1.8vw, 1.2rem);
      line-height: 1.7;
      max-width: 560px;
      margin: 0 auto;
      font-weight: 400;
    }
  }

  .account-actions {
    background: #fff8f0;

    .account-actions__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 2rem;

      @media screen and (max-width: 900px) {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-inline: auto;
      }
    }

    .account-card {
      background: #fff;
      border-radius: 20px;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1rem;
      border: 1px solid rgba(0, 0, 0, 0.06);
      transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;

      &:hover {
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-3px);
      }

      .account-card__icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        background: rgba(45, 122, 62, 0.1);
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }

      h2 {
        color: #2c3539;

        font-size: 1.375rem;
        font-weight: 600;
        margin: 0;
        text-transform: none;
      }

      p {
        color: #4a5565;
        font-size: 0.9375rem;
        line-height: 1.65;
        margin: 0;
        flex: 1;
      }

      .account-card__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        padding: 0.75rem 1.75rem;
        font-size: 0.9375rem;
        font-weight: 500;

        cursor: pointer;
        border: none;
        text-decoration: none;
        width: 100%;
        margin-top: auto;
        transition:
          background 0.2s ease,
          transform 0.2s ease;

        &--primary {
          background: #2d7a3e;
          color: #fff;
          box-shadow: 0 4px 12px rgba(45, 122, 62, 0.25);

          &:hover {
            background: #245f30;
            transform: translateY(-1px);
          }
        }

        &--secondary {
          background: #8bc34a;
          color: #fff;
          box-shadow: 0 4px 12px rgba(139, 195, 74, 0.3);

          &:hover {
            background: #78ab3c;
            transform: translateY(-1px);
          }
        }

        &--outline {
          background: transparent;
          color: #e07a5f;
          border: 2px solid #e07a5f;

          &:hover {
            background: #e07a5f;
            color: #fff;
            transform: translateY(-1px);
          }
        }
      }
    }
  }

  .account-support {
    background: #2c3539;

    .account-support__header {
      text-align: center;
      max-width: 560px;
      margin: 0 auto 3rem;

      h2 {
        color: #fff;

        font-size: clamp(1.5rem, 3vw, 2.25rem);
        font-weight: 500;
        text-transform: none;
        margin: 0 0 0.75rem;
      }

      p {
        color: rgba(255, 255, 255, 0.65);
        font-size: 1rem;
        line-height: 1.7;
        margin: 0;
      }
    }

    .account-support__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      max-width: 800px;
      margin: 0 auto;

      @media screen and (max-width: 640px) {
        grid-template-columns: 1fr;
      }
    }

    .account-support__card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 2rem;
      display: flex;
      align-items: center;
      gap: 1.25rem;
      transition: background 0.2s ease;

      &:hover {
        background: rgba(255, 255, 255, 0.1);
      }

      .account-support__icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        background: rgba(139, 195, 74, 0.15);
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }

      .account-support__text {
        overflow: hidden;

        p {
          color: rgba(255, 255, 255, 0.6);
          font-size: 0.8rem;

          margin: 0 0 0.2rem;
          text-transform: uppercase;
          letter-spacing: 0.06em;
          font-weight: 500;
        }

        h3 {
          color: #fff;

          font-size: clamp(0.9rem, 2vw, 1.15rem);
          font-weight: 500;
          margin: 0 0 0.2rem;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          text-transform: none;
        }

        span {
          color: rgba(255, 255, 255, 0.5);
          font-size: 0.8125rem;
        }
      }
    }
  }

  /* Support Page */

  .support-hero {
    background: linear-gradient(135deg, #1e3a2f 0%, #2d5a3e 50%, #2c3539 100%);
    padding: 5rem 0 4rem;
    text-align: center;

    .support-hero__badge {
      display: inline-block;
      background: rgba(139, 195, 74, 0.15);
      border: 1px solid rgba(139, 195, 74, 0.3);
      color: #8bc34a;

      font-size: 0.875rem;
      font-weight: 500;
      padding: 0.4rem 1.1rem;
      border-radius: 999px;
      margin-bottom: 1.5rem;
    }

    h1 {
      color: #fff;
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      line-height: 1.1;
      margin: 0 0 1rem;
    }

    p {
      color: rgba(255, 255, 255, 0.7);

      font-size: clamp(1rem, 1.8vw, 1.2rem);
      line-height: 1.7;
      max-width: 600px;
      margin: 0 auto;
      font-weight: 400;
    }
  }

  .support-contact {
    background: #fff8f0;

    .support-contact__grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 4rem;
      align-items: start;

      @media screen and (max-width: 900px) {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
    }

    .support-info {
      h2 {
        color: #2c3539;

        font-size: clamp(1.4rem, 2.5vw, 2rem);
        font-weight: 500;
        text-transform: none;
        margin: 0 0 1.25rem;
      }

      .support-info__text {
        color: #4a5565;
        font-size: 0.9375rem;
        line-height: 1.75;
        margin-bottom: 2rem;

        p {
          margin: 0 0 0.75rem;
        }
      }

      .support-info__channels {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
      }
    }

    .support-channel {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: #fff;
      border-radius: 16px;
      padding: 1.25rem 1.5rem;
      border: 1px solid rgba(0, 0, 0, 0.06);

      .support-channel__icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: rgba(139, 195, 74, 0.12);
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }

      p {
        color: rgba(44, 53, 57, 0.55);
        font-size: 0.75rem;

        text-transform: uppercase;
        letter-spacing: 0.06em;
        font-weight: 500;
        margin: 0 0 0.2rem;
      }

      h3 {
        color: #2c3539;

        font-size: clamp(0.85rem, 1.8vw, 1rem);
        font-weight: 500;
        margin: 0 0 0.15rem;
        text-transform: none;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      span {
        color: #6b7280;
        font-size: 0.8125rem;
      }
    }

    /* Form */

    .support-form-wrap {
      background: #fff;
      border-radius: 24px;
      padding: 2.5rem;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .support-form {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;

      .support-form__group {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;

        label {
          font-size: 0.875rem;
          font-weight: 500;
          color: #364153;
        }

        input,
        textarea {
          font-size: 0.9375rem;
          color: #2c3539;
          background: #f9fafb;
          border: 1.5px solid #e5e7eb;
          border-radius: 10px;
          padding: 0.75rem 1rem;
          width: 100%;
          outline: none;
          transition:
            border-color 0.2s ease,
            box-shadow 0.2s ease;
          resize: vertical;

          &::placeholder {
            color: #9ca3af;
          }

          &:focus {
            border-color: #2d7a3e;
            box-shadow: 0 0 0 3px rgba(45, 122, 62, 0.12);
            background: #fff;
          }
        }
      }

      .h-captcha {
        margin-top: 0.25rem;
        @media screen and (max-width: 500px) {
          max-width: 250px;
        }
        @media screen and (max-width: 350px) {
          max-width: 200px;
        }
      }

      .support-form__submit {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        background: #2d7a3e;
        color: #fff;
        border: none;
        border-radius: 10px;
        padding: 0.875rem 2rem;
        font-size: 1rem;
        font-weight: 500;

        cursor: pointer;
        width: 100%;
        margin-top: 0.25rem;
        box-shadow: 0 4px 14px rgba(45, 122, 62, 0.25);
        transition:
          background 0.2s ease,
          transform 0.2s ease;

        &:hover {
          background: #245f30;
          transform: translateY(-1px);
        }
      }
    }

    .support-alert {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      border-radius: 12px;
      padding: 1rem 1.25rem;

      font-size: 0.9375rem;
      font-weight: 500;

      &--success {
        background: rgba(45, 122, 62, 0.08);
        border: 1px solid rgba(45, 122, 62, 0.25);
        color: #2d7a3e;
      }

      &--error {
        background: rgba(224, 122, 95, 0.08);
        border: 1px solid rgba(224, 122, 95, 0.3);
        color: #c05a3f;
      }
    }
  }

  .support-unsub {
    background: #2c3539;
  }

  /* Payment Page */

  .payment-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1.5rem;
    background: #1e3a2f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    .payment-header__logo img {
      height: 48px;
      width: auto;
    }
  }

  .payment-hero {
    background: linear-gradient(135deg, #1e3a2f 0%, #2c3539 60%, #1a2d28 100%);
    padding: 5rem 1.5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(45, 122, 62, 0.25) 0%, transparent 70%);
      pointer-events: none;
    }

    .wrapper {
      position: relative;
      z-index: 1;
    }

    .payment-hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(139, 195, 74, 0.15);
      border: 1px solid rgba(139, 195, 74, 0.35);
      color: #8bc34a;

      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.45rem 1rem;
      border-radius: 999px;
      margin-bottom: 1.5rem;
    }

    .payment-hero__title {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700;
      color: #fff;
      margin: 0 0 1rem;
      line-height: 1.15;
    }

    .payment-hero__sub {
      color: rgba(255, 255, 255, 0.72);

      font-size: 1.05rem;
      max-width: 480px;
      margin: 0 auto 2.5rem;
    }
  }

  .payment-pricing-card {
    background: #fff;
    border-radius: 20px;
    max-width: 480px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
    text-align: left;

    .payment-pricing-card__top {
      background: linear-gradient(135deg, #2d7a3e, #3a9e52);
      padding: 2rem 2rem 1.75rem;
      color: #fff;

      .payment-pricing-card__label {
        display: block;

        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        opacity: 0.85;
        margin-bottom: 0.5rem;
      }

      .payment-pricing-card__price {
        font-size: 3rem;
        font-weight: 700;
        line-height: 1;
        color: #fff;
        margin-bottom: 0.75rem;

        span {
          font-size: 1.1rem;
          font-weight: 400;
          opacity: 0.8;
        }
      }

      .payment-pricing-card__note {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.82rem;
        opacity: 0.75;
        margin: 0;
        line-height: 1.5;
      }
    }

    .payment-pricing-card__perks {
      list-style: none;
      padding: 1.5rem 2rem;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.85rem;

      li {
        display: flex;
        align-items: center;
        gap: 0.65rem;

        font-size: 0.92rem;
        color: #364153;
        line-height: 1.4;
      }
    }
  }

  .payment-consent {
    background: #fff8f0;

    .payment-consent__title {
      font-size: clamp(1.5rem, 3vw, 2.25rem);
      font-weight: 700;
      color: #364153;
      margin: 0 0 0.75rem;
      text-align: center;
    }

    .payment-consent__sub {
      font-size: 1rem;
      color: #4a5565;
      text-align: center;
      margin: 0 auto 2.5rem;
      max-width: 480px;
    }

    .payment-consent__form {
      background: #fff;
      border-radius: 20px;
      padding: 2rem 2.5rem;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);

      @media (max-width: 600px) {
        padding: 1.5rem 1.25rem;
      }
    }

    .payment-consent__checks {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      margin-bottom: 2rem;
    }
  }

  .payment-check {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    cursor: pointer;

    input[type="checkbox"] {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }

    .payment-check__box {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      border: 2px solid #d1d5db;
      border-radius: 5px;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      transition:
        border-color 0.2s,
        background 0.2s;
      margin-top: 1px;
    }

    input[type="checkbox"]:checked + .payment-check__box {
      background: #2d7a3e;
      border-color: #2d7a3e;

      &::after {
        content: "";
        display: block;
        width: 11px;
        height: 7px;
        border-left: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(-45deg) translateY(-1px);
      }
    }

    .payment-check__text {
      font-size: 0.875rem;
      color: #4a5565;
      line-height: 1.6;

      a {
        color: #2d7a3e;
        text-decoration: underline;
      }
    }
  }

  .payment-consent__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1.05rem 2rem;
    background: linear-gradient(135deg, #2d7a3e, #3a9e52);
    color: #fff;

    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition:
      opacity 0.2s,
      transform 0.2s,
      box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(45, 122, 62, 0.35);

    &:hover:not(:disabled) {
      opacity: 0.92;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(45, 122, 62, 0.4);
    }

    &:disabled {
      opacity: 0.45;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }
  }

  .payment-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;

    .payment-trust__logos {
      display: flex;
      align-items: center;
      gap: 1rem;

      img {
        height: 28px;
        width: auto;
        opacity: 0.8;
      }
    }

    .payment-trust__note {
      display: flex;
      align-items: center;
      gap: 0.4rem;

      font-size: 0.8rem;
      color: #6b7280;
      margin: 0;
    }
  }

  .payment-footer {
    background: #2c3539;
    padding: 2.5rem 1.5rem;
    text-align: center;

    .payment-footer__logo {
      height: 40px;
      width: auto;
      margin: 0 auto 1.25rem;
      display: block;
      opacity: 0.9;
    }

    .payment-footer__disclaimer {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.5);
      max-width: 640px;
      margin: 0 auto;
      line-height: 1.6;
    }
  }

  /* Payment Modal */

  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    overflow: auto;
    background: rgba(28, 40, 35, 0.7);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
  }

  .payment-modal {
    background: #fff;
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    margin: auto;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);

    @media (max-width: 479px) {
      padding: 1.5rem 1.25rem;
      max-height: 90vh;
      overflow-y: auto;
    }

    h2 {
      font-size: 1.75rem;
      font-weight: 700;
      color: #364153;
      text-align: center;
      margin: 0 0 1.75rem;
    }

    .payment-modal__close {
      position: absolute;
      top: 1.25rem;
      right: 1.25rem;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: #6b7280;
      cursor: pointer;
      line-height: 1;
      padding: 0.25rem;
      border-radius: 6px;
      transition:
        color 0.2s,
        background 0.2s;

      &:hover {
        color: #2c3539;
        background: #f3f4f6;
      }
    }
  }

  .payment-modal__form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
  }

  .payment-modal__row {
    display: flex;
    gap: 1rem;

    @media (max-width: 400px) {
      flex-direction: column;
    }

    .payment-modal__field {
      flex: 1;
    }
  }

  .payment-modal__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;

    label {
      font-size: 0.82rem;
      font-weight: 500;
      color: #364153;
    }

    input {
      width: 100%;
      padding: 0.65rem 0.9rem;
      border: 1.5px solid #e5e7eb;
      border-radius: 10px;

      font-size: 0.95rem;
      color: #1a1a1a;
      transition:
        border-color 0.2s,
        box-shadow 0.2s;
      background: #fff;

      &:focus {
        outline: none;
        border-color: #2d7a3e;
        box-shadow: 0 0 0 3px rgba(45, 122, 62, 0.12);
      }

      &::placeholder {
        color: #adb5bd;
      }
    }
  }

  .payment-modal__submit {
    width: 100%;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #2d7a3e, #3a9e52);
    color: #fff;

    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition:
      opacity 0.2s,
      transform 0.2s;
    margin-top: 0.5rem;
    box-shadow: 0 4px 14px rgba(45, 122, 62, 0.35);

    &:hover {
      opacity: 0.9;
      transform: translateY(-1px);
    }
  }

  /* Skeleton loader for hashtag sections */
  .skeleton-loader {
    border-radius: var(--border-radius-2);
    margin-bottom: 2rem;
    padding: 2rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    min-height: 220px;
    position: relative;
    overflow: hidden;
    .skeleton-title {
      width: 40%;
      height: 2.2em;
      background: linear-gradient(90deg, #ececec 25%, #f5f5f5 50%, #ececec 75%);
      border-radius: 1em;
      margin-bottom: 1.5em;
      animation: skeleton-loading 1.2s infinite linear;
    }
    .skeleton-cards {
      display: flex;
      gap: 1.2em;
      @media screen and (max-width: 767px) {
        flex-direction: column;
      }
      .skeleton-card {
        flex: 1 1 0;
        height: 120px;
        background: linear-gradient(90deg, #ececec 25%, #f5f5f5 50%, #ececec 75%);
        border-radius: var(--border-radius-1);
        animation: skeleton-loading 1.2s infinite linear;

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

  @keyframes skeleton-loading {
    0% {
      background-position: -200px 0;
    }
    100% {
      background-position: calc(200px + 100%) 0;
    }
  }

  .category-section .wrapper {
    position: relative;
    &::before {
      content: "";
      position: absolute;
      top: -15px;
      width: 100%;
      height: 1px;
      background: #e4e2df;
      z-index: 1;
    }
  }

  /* Category Cards */

  .category_card {
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
      0 1px 3px rgba(0, 0, 0, 0.1),
      0 1px 2px rgba(0, 0, 0, 0.06);
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;

    &:hover {
      transform: translateY(-4px);
      box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.12),
        0 4px 10px rgba(0, 0, 0, 0.08);
    }

    .category_card__image-wrap {
      position: relative;
      height: 192px;
      overflow: hidden;
      flex-shrink: 0;

      img.cardsImage {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
      }
    }

    &:hover .category_card__image-wrap img.cardsImage {
      transform: scale(1.04);
    }

    .category_card__rating {
      position: absolute;
      top: 12px;
      right: 12px;
      background: #fff;
      border-radius: 999px;
      padding: 4px 10px;
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 0.875rem;
      font-weight: 400;
      color: #0a0a0a;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
      line-height: 1;
    }

    .category_card__body {
      padding: 1.25rem 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      flex: 1;
    }

    .category_card__desc {
      color: #4a5565;
      font-size: 0.875rem;
      line-height: 1.55;
      margin: 0;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;

      h3 {
        color: #2c3539;
        font-size: 1rem;
        font-weight: 500;
        margin: 0;
        text-transform: none;
        text-shadow: none;
      }
    }
  }

  .cardsTitle {
    color: #2c3539;

    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
    text-transform: none;
    text-shadow: none;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .app-section,
  #app-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
    justify-items: stretch;
  }

  /* 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(--black);
      color: var(--white);
      font-weight: 600;
      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;
  }

  .rating > img {
    width: 15px;
  }

  .rating > 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;
    max-width: 100%;
    gap: 20px;
    background: #fff8f0;

    @media screen and (max-width: 999px) {
      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;
      text-align: left;
      background: transparent;
      border: none;

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

      &:hover {
        transform: scale(1.05);
        background:
          radial-gradient(circle at 50% 42%, rgba(139, 195, 74, 0.22), rgba(139, 195, 74, 0) 42%),
          radial-gradient(circle at 12% 6%, rgba(45, 122, 62, 0.48), rgba(45, 122, 62, 0) 38%),
          radial-gradient(circle at 88% 12%, rgba(45, 122, 62, 0.36), rgba(45, 122, 62, 0) 32%), #2c3539;

        p {
          color: var(--white);
        }

        h3 {
          color: var(--white);
        }
      }

      &.active {
        cursor: default;
        transform: none !important;
        background:
          radial-gradient(circle at 50% 42%, rgba(139, 195, 74, 0.22), rgba(139, 195, 74, 0) 42%),
          radial-gradient(circle at 12% 6%, rgba(45, 122, 62, 0.48), rgba(45, 122, 62, 0) 38%),
          radial-gradient(circle at 88% 12%, rgba(45, 122, 62, 0.36), rgba(45, 122, 62, 0) 32%), #2c3539;
        h3 {
          color: var(--white);
        }
        p {
          color: var(--white);
        }
      }

      p {
        font-size: 1rem;
        font-weight: 300;
        margin: 0 0 10px;
        max-width: 80%;

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

      .btn {
        font-size: 1.25rem;
      }
    }
  }

  .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(--black);
    }

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

    input,
    textarea {
      padding: 0.75rem 1rem;
      border: none;
      border: 1px solid #bdbdbd;
      background: #e8e5e0;
      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 {
      line-height: 1.3;
      font-weight: 700;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    h3 {
      line-height: 1.3;
      font-weight: 600;
      margin-bottom: 15px;
    }

    h4 {
      font-size: 16px;
      line-height: 1.3;
      font-weight: 500;
      margin-bottom: 10px;
    }

    .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;
      box-shadow: 0px 0px 10px 5px rgba(202, 202, 202, 0.2);
    }

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

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

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

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

        li {
          line-height: 24px;
          margin: 0 0 20px !important;
          background: none !important;
          font-size: 16px !important;
          color: var(--gray) !important;
        }
      }

      ol {
        list-style: decimal !important;
        padding-left: 20px !important;

        li {
          line-height: 24px;
          margin: 0 0 20px !important;
          background: none !important;
          font-size: 16px !important;
          color: var(--gray) !important;
        }
      }

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

      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: 0 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 {
    max-width: 460px;
    margin: 0 auto;
    justify-content: center;
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;

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

    form {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    label {
      font-size: 0.875rem;
      font-weight: 500;
      color: #364153;
    }

    input,
    textarea {
      font-size: 0.9375rem;
      color: #2c3539;
      background: #f9fafb;
      border: 1.5px solid #e5e7eb;
      border-radius: 10px;
      padding: 0.75rem 1rem;
      width: 100%;
      outline: none;
      transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
      resize: vertical;

      &::placeholder {
        color: #9ca3af;
      }

      &:focus {
        border-color: #2d7a3e;
        box-shadow: 0 0 0 3px rgba(45, 122, 62, 0.12);
        background: #fff;
      }
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      background: #2d7a3e;
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 0.875rem 2rem;
      font-size: 1rem;
      font-weight: 500;

      cursor: pointer;
      width: 100%;
      margin-top: 0.25rem;
      box-shadow: 0 4px 14px rgba(45, 122, 62, 0.25);
      transition:
        background 0.2s ease,
        transform 0.2s ease;

      &:hover {
        background: #245f30;
        transform: translateY(-1px);
      }
    }
  }

  .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(--black);
      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(--dark-gray);
      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(--white);
          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(--white);
        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;
          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  */

  .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(--black);
    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(--white);
    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;
  }

  .footer {
    background: #2c3539;
  }

  .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(--light-gray);
      }
    }

    p {
      font-size: 15px;
      line-height: 18px;
      text-align: center;
      margin-bottom: 1rem;
      color: rgba(255, 255, 255, 0.7);
    }

    .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: rgba(255, 255, 255, 0.95);
    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(--white);
      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(--black);
          min-height: auto !important;
        }
      }

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

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

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

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

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

          &:empty {
            display: none;
          }
        }

        a {
          color: var(--white);
          text-decoration: underline;
        }

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

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

        label {
          color: var(--white);
        }
        h3 {
          color: var(--white);
          font-size: 1.25rem;
          margin: 0;

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

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

    .modal-content {
      background:
        radial-gradient(circle at 50% 42%, rgba(139, 195, 74, 0.22), rgba(139, 195, 74, 0) 42%),
        radial-gradient(circle at 12% 6%, rgba(45, 122, 62, 0.48), rgba(45, 122, 62, 0) 38%),
        radial-gradient(circle at 88% 12%, rgba(45, 122, 62, 0.36), rgba(45, 122, 62, 0) 32%), #2c3539;
      border-radius: 25px;
      width: 100%;
      overflow: auto;
      max-inline-size: 600px;
      position: relative;

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

      .form-group input {
        border: 1px solid #bdbdbd;
        background: #e8e5e0;
        padding: 0.5rem 1rem;
        min-height: 50px;
        color: var(--black);

        &:focus-visible {
          outline: none;
          border: 2px solid var(--black) !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;
      }
    }
  }

  /* 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: 40px;
    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(--gray);
    border-radius: 50%;
    color: var(--white);
  }

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

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

  /* audio::-webkit-media-controls-timeline:hover {
    background-color: var(--light-gray);
  } */

  /* audio::-webkit-media-controls-volume-slider {
    background-color: var(--gray);
    border-radius: 25px;
    padding: 0 5px;
    display: flex;
    justify-content: center;
  } */

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

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

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

  /* 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(--black);
    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;
        font-size: 1rem;
      }
    }
  }
}

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

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

    .info-frame {
      background: var(--light-gray);
      padding: 30px;
      gap: 10px;
      align-items: center;

      h2 {
        color: var(--black);
        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);
    }
  }

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

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

  .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;
    }
  }

  .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;
  }

  .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-5 {
    width: 45%;

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

    @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;
    }
  }

  .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;
    }
  }
}
