@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: 1.8em;
  }

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

@layer base {
  :root {
    --black: #121212;
    --white: #fff;
    --primary: #d47d5f;
    --secondary: #8fae8d;
    --brand-honey: #edb365;
    --light-gray: #eeeeee;
    --gray: #e0e0e0;
    --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: "Inter", sans-serif;
    font-size: 10px;
    color: #6b5d4f;
    background-color: var(--white);
    position: relative;
    line-height: normal;
    width: 100%;
    overflow-x: hidden;
  }

  h1 {
    font-size: 4em;
    font-weight: 400;

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

    strong {
      font-weight: 500;
    }

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

  h2 {
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.5rem; /* 111.111% */

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

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

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

  h3 {
    font-size: 1.75rem;
    font-weight: 300;

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

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

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Noto Sans Georgian", sans-serif;
    color: #6b5d4f;
  }

  .btn {
    font-weight: 700;
    color: var(--white);
    background-color: var(--primary);
    border-radius: var(--border-radius-4);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    font-size: 2em;
    border: none;
    transition: all 0.2s ease-out;
    width: fit-content;
    min-width: 240px;
    text-transform: uppercase;
    font-family: "Noto Sans Georgian", sans-serif;

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

    &.large {
      margin: 0;
      background: var(--white);
      border: 2px solid var(--primary);
      font-size: 1.5rem;
      color: var(--primary);
      padding: 1.25rem 3rem;
      border-radius: var(--border-radius-1);
    }
  }
}

.highlight-list {
  li {
    padding: 0.5rem 0 1.5rem 2rem;
    display: flex;
    font-size: 1.75rem;
    font-weight: 300;
    position: relative;
    border-bottom: 1px solid var(--light-gray);

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

    &::before {
      content: "✔";
      font-weight: 600;
      position: absolute;
      left: 0;
      color: var(--primary);
    }
  }
}

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

  .modal-grid {
    display: grid;
    place-items: center;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    height: 100%;

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

@layer components {
  /* 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: 1.125rem;
      line-height: 1.4;
      font-weight: 600;
    }

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

  .bck-title {
    width: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    background: url(../images/bck-title.png) right top no-repeat;
    height: 320px;
    background-size: contain;

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

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

  .site_header {
    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 {
      max-width: 150px;
      .desktop_logo {
        display: block;
        @media screen and (max-width: 767px) {
          display: none;
        }
      }
      .mobile_logo {
        display: none;
        max-width: 45px;
        @media screen and (max-width: 767px) {
          display: block;
        }
      }
    }

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

      @media screen and (max-width: 767px) {
        position: fixed;
        inset: 0;
        background: var(--white);
        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 {
        display: flex;
        gap: 1.25rem;

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

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

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

    /* a,
    button {
      backdrop-filter: blur(8px);
      padding: 0.5rem 1rem !important;
      background: #ffffffbe !important;
      border-radius: var(--border-radius-1);
      font-size: 18px;
      min-width: auto;
      min-height: 40px;

      @media screen and (max-width: 767px) {
        background: transparent !important;
        backdrop-filter: none;
      }
    } */

    .header-right {
      grid-column: 3;
      position: relative;
      display: flex;
      gap: 1rem;
      align-items: center;
      .support-info {
        a {
          color: #364153;
          font-size: 16px;
          font-style: normal;
          font-weight: 500;
          line-height: 24px; /* 150% */
          @media screen and (max-width: 541px) {
            display: none;
          }
        }

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

      .dropdown-trigger {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: var(--primary);
        border-radius: 15px;
        padding: 10px;
        cursor: pointer;
        justify-content: center;

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

      .dropdown-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        background: var(--white);
        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: 1.25rem;

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

      .unsubLink {
        font-size: 20px;
        text-transform: uppercase;
        font-weight: 600;
        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: 24px;
        height: 2px;
        background-color: var(--white);
        transition: 0.3s ease-in-out;
      }

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

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

        span:first-child {
          transform: translateY(6px) 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(6px) 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;
      }
    }

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

  /* Hero Section */

  .page_hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;

    &.home {
      height: 70vh;
    }

    &.login-hero {
      min-height: 50rem;
      height: auto;
      padding: 5.5rem 0;
      background:
        radial-gradient(22rem 22rem at 16% 30%, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0) 70%),
        radial-gradient(26rem 26rem at 78% 80%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 72%),
        linear-gradient(135deg, #cf876a 0%, #db9e71 53%, #e9bd78 100%);

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

      .login-hero-grid {
        display: grid;
        grid-template-columns: minmax(18rem, 1fr) minmax(19rem, 29.5rem);
        align-items: center;
        gap: 3.25rem;
      }

      .hero-content.login-page {
        max-width: 34.5rem;
        gap: 1.5rem;

        h1 {
          color: #fff8f2;
          font-family: "Georgia", "Times New Roman", serif;
          font-size: clamp(2.25rem, 5vw, 4.06rem);
          font-weight: 500;
          line-height: 1.02;
          letter-spacing: -0.03em;
          text-wrap: balance;
        }

        p {
          color: #fff6ec;
          font-size: 1.35rem;
          max-width: 32rem;
          line-height: 1.42;
        }
      }

      .hero-actions {
        display: flex;
        align-items: center;
        gap: 0.875rem;
        margin-top: 0.5rem;
      }

      .hero-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 3.2rem;
        padding: 0.75rem 1.7rem;
        border-radius: 0.7rem;
        border: 0;
        text-decoration: none;
        cursor: pointer;
        font-size: 1.125rem;
        font-weight: 600;
        transition:
          transform 0.25s ease,
          box-shadow 0.25s ease,
          opacity 0.25s ease;

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

      .hero-btn-primary {
        background: #f2f2f2;
        color: #d17855;
        box-shadow: 0 12px 30px rgba(122, 71, 44, 0.2);
      }

      .hero-btn-ghost {
        background: transparent;
        color: #fff8f2;
        border: 1px solid rgba(255, 245, 238, 0.9);

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

      .hero-stats {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.85rem;
        margin-top: 1.1rem;
      }

      .hero-stat {
        min-width: 7.8rem;

        strong {
          display: block;
          color: #fff9f2;
          font-family: "Georgia", "Times New Roman", serif;
          font-size: clamp(1.9rem, 3vw, 2.25rem);
          font-weight: 500;
          line-height: 1.1;
          letter-spacing: -0.02em;
        }

        span {
          display: block;
          margin-top: 0.32rem;
          color: #fff2e6;
          font-size: 1.03rem;
          line-height: 1.3;
        }
      }

      .hero-recipe-card {
        border-radius: 1.5rem;
        border: 1px solid rgba(255, 231, 211, 0.35);
        background: rgba(236, 169, 125, 0.3);
        box-shadow: 0 24px 40px rgba(70, 43, 24, 0.2);
        backdrop-filter: blur(3px);
        padding: 1rem;
      }

      .hero-recipe-visual {
        min-height: 19rem;
        border-radius: 1rem 1rem 0 0;
        background: #e7d8cd;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .hero-recipe-icon-wrap {
        width: 6.3rem;
        height: 6.3rem;
        border-radius: 999px;
        background: #dcc5b6;
        display: flex;
        align-items: center;
        justify-content: center;

        img {
          width: 2.75rem;
          height: 2.75rem;
        }
      }

      .hero-recipe-details {
        border-radius: 0 0 1rem 1rem;
        background: #f2f2f2;
        padding: 1.3rem 1.25rem 1.1rem;

        h2 {
          color: #cc7757;
          font-family: "Georgia", "Times New Roman", serif;
          font-size: 1.9rem;
          font-weight: 500;
          line-height: 1.2;
        }

        p {
          margin-top: 0.5rem;
          color: #616161;
          font-size: 1rem;
          line-height: 1.4;
        }
      }

      .hero-recipe-meta {
        margin-top: 0.95rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.75rem;
        color: #676767;
        font-size: 0.95rem;

        span {
          display: inline-flex;
          align-items: center;
          gap: 0.35rem;
          white-space: nowrap;
        }
      }

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

        .login-hero-grid {
          grid-template-columns: 1fr;
          gap: 2rem;
        }

        .hero-content.login-page {
          max-width: 100%;
          align-items: flex-start;
          text-align: left;
        }
      }

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

        .hero-content.login-page {
          h1 {
            font-size: 2.75rem;
            line-height: 1.04;
          }

          p {
            font-size: 1.05rem;
            line-height: 1.5;
          }
        }

        .hero-actions {
          width: 100%;
          flex-direction: column;
          align-items: stretch;
        }

        .hero-btn {
          width: 100%;
        }

        .hero-stats {
          width: 100%;
          justify-content: space-between;
          gap: 1rem;
        }

        .hero-stat {
          min-width: auto;
        }

        .hero-recipe-visual {
          min-height: 12.5rem;
        }

        .hero-recipe-details {
          h2 {
            font-size: 1.5rem;
          }
        }

        .hero-recipe-meta {
          font-size: 0.875rem;
        }
      }
    }

    @media screen and (max-width: 1199px) {
      padding-block: 4rem;
    }
    .hero_bck {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:
        url(../images/premium/home-hero.png) center center no-repeat,
        #efebe7;
      background-size: cover;
      z-index: 0;
    }
    video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hero-content {
      display: flex;
      max-width: 38.5rem;
      flex-direction: column;
      align-items: flex-start;
      gap: 1.875rem;
      position: relative;
      z-index: 1;

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

        gap: 1rem;
      }

      &.login-page {
        background: none;
        padding: 0;
      }
      .highlight-pill {
        color: var(--primary);
        font-weight: 600;
        line-height: 1.5rem; /* 150% */
        border-radius: 2097150rem;
        background: #7ed957;
        display: flex;
        padding: 0.4375rem 1rem;
        justify-content: center;
        align-items: center;
        gap: 0.625rem;
      }
      h1 {
        color: var(--secondary);
        font-size: 3.75rem;
        font-style: normal;
        font-weight: 700;
        line-height: 4.375rem; /* 116.667% */

        span {
          color: var(--primary);
          font-size: 4.5rem;
          font-style: normal;
          font-weight: 700;
          line-height: 4.6875rem; /* 104.167% */
          display: block;
          @media screen and (max-width: 767px) {
            font-size: 2.5rem;
            line-height: 2.5rem;
          }
        }

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

      p {
        font-size: 1.25rem;
        font-style: normal;
        font-weight: 400;
        line-height: 2.03125rem; /* 162.5% */
        color: var(--secondary);
      }
    }
  }

  #why-choose-us {
    .wrapper > h1 {
      color: #6b5d4f;
      font-family: "Georgia", "Times New Roman", serif;
      font-size: clamp(2.2rem, 3vw, 3rem);
      font-weight: 400;
      line-height: 1.1;
      text-align: center;
    }

    .wrapper > p {
      color: rgba(107, 93, 79, 0.78);
      font-size: 1.125rem;
      line-height: 1.5;
      text-align: center;
      max-width: 42rem;
      margin-inline: auto;
    }

    .why-choose-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(16rem, 21.65rem));
      gap: 2rem;
      justify-content: center;
      margin-top: 2.75rem;
    }

    .why-choose-card {
      min-height: 16.85rem;
      border-radius: 1rem;
      border: 1px solid #f5f1e8;
      background: #fff;
      box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.1);
      padding: 2rem;

      h3 {
        margin-top: 1.5rem;
        color: #6b5d4f;
        font-family: "Georgia", "Times New Roman", serif;
        font-size: 2.4rem;
        font-weight: 400;
        line-height: 1.33;
      }

      p {
        margin-top: 1.25rem;
        color: rgba(107, 93, 79, 0.8);
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
      }
    }

    .why-choose-icon {
      width: 4rem;
      height: 4rem;
      border-radius: 1rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.9rem;
      line-height: 1;
    }

    .why-choose-icon-recipes {
      background: linear-gradient(135deg, rgba(212, 125, 95, 0.1) 0%, rgba(237, 179, 101, 0.1) 100%);
    }

    .why-choose-icon-guides {
      background: linear-gradient(135deg, rgba(143, 174, 141, 0.1) 0%, rgba(237, 179, 101, 0.1) 100%);
    }

    .why-choose-icon-community {
      background: linear-gradient(135deg, rgba(237, 179, 101, 0.1) 0%, rgba(212, 125, 95, 0.1) 100%);
    }

    @media screen and (max-width: 1140px) {
      .why-choose-grid {
        grid-template-columns: repeat(2, minmax(16rem, 21.65rem));
      }
    }

    @media screen and (max-width: 767px) {
      .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .why-choose-card {
        min-height: auto;
        padding: 1.5rem;

        h3 {
          font-size: 2rem;
        }
      }
    }
  }
  #featured {
    background: #f5f1e8;
  }

  .testimonials-section {
    background: #f5f1e8;
    padding-top: 5rem;
    padding-bottom: 5rem;

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

    .testimonials-header {
      text-align: center;
      margin-bottom: 4rem;

      h2 {
        color: #6b5d4f;
        font-family: "Georgia", "Times New Roman", serif;
        font-size: clamp(2.1rem, 3.8vw, 3rem);
        font-style: normal;
        font-weight: 400;
        line-height: 1.1;
        margin: 0;
      }

      p {
        margin-top: 1rem;
        margin-bottom: 0;
        color: rgba(107, 93, 79, 0.7);
        font-size: clamp(1.05rem, 2.5vw, 1.25rem);
        font-style: normal;
        font-weight: 400;
        line-height: 1.4;
      }
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.5rem;
    }

    .testimonial-card {
      background: #fff;
      border: 1px solid #ebe2d5;
      border-radius: 1rem;
      box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.06);
      padding: 2rem;
      min-height: 16.6rem;
      display: flex;
      flex-direction: column;

      .testimonial-stars {
        margin: 0;
        color: #edb365;
        font-size: 2.25rem;
        line-height: 1;
        letter-spacing: 0.06em;
      }

      .testimonial-quote {
        margin-top: 1rem;
        margin-bottom: 0;
        color: #6b5d4f;
        font-size: 1.5rem;
        font-style: italic;
        font-weight: 400;
        line-height: 1.5;
      }

      .testimonial-author {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-top: auto;
        padding-top: 1.5rem;
      }

      .testimonial-avatar {
        width: 3rem;
        height: 3rem;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.25rem;
        line-height: 1;
        font-weight: 500;
        background: linear-gradient(135deg, #d47d5f 0%, #edb365 100%);
      }

      .testimonial-author-meta {
        h3 {
          margin: 0;
          color: #6b5d4f;
          font-family: "Georgia", "Times New Roman", serif;
          font-size: 1.5rem;
          font-style: normal;
          font-weight: 400;
          line-height: 1.5;
        }

        p {
          margin-top: 0;
          margin-bottom: 0;
          color: rgba(107, 93, 79, 0.7);
          font-size: 0.875rem;
          font-style: normal;
          font-weight: 400;
          line-height: 1.4;
        }
      }
    }

    @media screen and (max-width: 1199px) {
      .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media screen and (max-width: 767px) {
      padding-top: 3.5rem;
      padding-bottom: 3.5rem;

      .testimonials-header {
        margin-bottom: 2rem;
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .testimonial-card {
        padding: 1.5rem;
        min-height: auto;

        .testimonial-stars {
          font-size: 2rem;
        }

        .testimonial-quote {
          font-size: 1.25rem;
          line-height: 1.45;
        }
      }
    }
  }

  .featured-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;

    @media screen and (max-width: 1278px) {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .featured-video {
      display: flex;
      width: 350px;
      height: 424px;
      flex-direction: column;
      align-items: flex-start;
      border-radius: 1.5rem;
      background: #fff;
      box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);
      cursor: pointer;
      position: relative;
      @media screen and (max-width: 1278px) {
        width: 100%;
      }

      .rating {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: var(--white);
        border-radius: var(--border-radius-4);
        display: flex;
        height: 1.75rem;
        padding: 0.25rem 0.75rem;
        align-items: center;
        gap: 0.25rem;
        font-size: 0.875rem;
        font-style: normal;
        font-weight: 600;
        line-height: 1.25rem; /* 142.857% */
      }
      img {
        height: 18.999rem;
        width: 100%;
        object-fit: cover;
        border-radius: 20px 20px 0 0;
      }
      .video-info {
        display: flex;
        height: 7rem;
        padding: 1.5rem 1.5rem 0 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        flex-shrink: 0;
        align-self: stretch;
        h3 {
          font-size: 1.125rem;
          font-style: normal;
          font-weight: 600;
          line-height: 1.75rem; /* 155.556% */

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

        p {
          font-size: 0.875rem;
          font-style: normal;
          font-weight: 400;
          line-height: 1.25rem; /* 142.857% */
        }
      }

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

  .community-join-section {
    background:
      radial-gradient(
        circle at 28% 22%,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.03) 26%,
        rgba(255, 255, 255, 0) 52%
      ),
      radial-gradient(
        circle at 74% 76%,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.03) 24%,
        rgba(255, 255, 255, 0) 50%
      ),
      linear-gradient(135deg, #cf815f 0%, #d99060 45%, #e5b16b 100%);
    color: #fff;

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

    .community-join-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
      gap: 2rem;
      align-items: center;
    }

    .community-join-content {
      h2 {
        margin: 0;
        font-family: "Georgia", "Times New Roman", serif;
        font-size: clamp(2.2rem, 4.5vw, 3.7rem);
        font-style: normal;
        font-weight: 400;
        line-height: 1.08;
        max-width: 34rem;
      }

      > p {
        margin-top: 1.75rem;
        margin-bottom: 0;
        font-size: clamp(1.2rem, 2.2vw, 2.25rem);
        font-weight: 400;
        line-height: 1.38;
        max-width: 41rem;
        color: rgba(255, 255, 255, 0.93);
      }

      .community-join-list {
        list-style: none;
        margin: 2.25rem 0 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 1.3rem;

        li {
          position: relative;
          padding-left: 1.7rem;
          display: flex;
          flex-direction: column;
          gap: 0.125rem;
          color: #fff;

          &::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0.125rem;
            font-size: 1.15rem;
            font-weight: 700;
            line-height: 1;
          }

          strong {
            font-family: "Georgia", "Times New Roman", serif;
            font-size: clamp(1.5rem, 2vw, 1.95rem);
            font-style: normal;
            font-weight: 400;
            line-height: 1.2;
          }

          span {
            font-size: clamp(1rem, 1.7vw, 2rem);
            font-style: normal;
            font-weight: 400;
            line-height: 1.25;
            color: rgba(255, 255, 255, 0.93);
          }
        }
      }

      .community-join-cta {
        margin-top: 2.3rem;
        border: none;
        border-radius: 0.75rem;
        background: #f8f8f8;
        color: #d4744f;
        padding: 0.95rem 1.55rem;
        min-width: 12rem;
        font-size: 1.65rem;
        font-weight: 400;
        line-height: 1.15;
      }
    }

    .community-signup-card-wrap {
      border-radius: 1.35rem;
      border: 1px solid rgba(248, 220, 193, 0.35);
      background: linear-gradient(180deg, rgba(222, 160, 111, 0.3) 0%, rgba(222, 160, 111, 0.18) 100%);
      backdrop-filter: blur(0.3px);
      padding: 1.8rem;
    }

    .community-signup-card {
      border-radius: 1rem;
      background: #f4f4f4;
      padding: 2.05rem 1.75rem 1.4rem;

      h3 {
        margin: 0;
        color: #6b5d4f;
        text-align: center;
        font-family: "Georgia", "Times New Roman", serif;
        font-size: clamp(1.95rem, 3vw, 2.5rem);
        font-style: normal;
        font-weight: 400;
        line-height: 1.2;
      }

      .community-signup-form {
        margin-top: 1.6rem;
        display: flex;
        flex-direction: column;
        gap: 0.85rem;

        label {
          display: flex;
          flex-direction: column;
          gap: 0.5rem;
          color: rgba(50, 33, 18, 0.75);
          font-size: 1rem;
          font-style: normal;
          font-weight: 500;
          line-height: 1.2;
        }

        input {
          border: 1px solid rgba(220, 212, 201, 0.8);
          background: #f5f5f3;
          border-radius: 0.75rem;
          height: 3.35rem;
          padding: 0.65rem 0.9rem;
          color: #51473e;
          font-size: 1rem;
        }

        .checkbox-group {
          display: flex;
          align-items: flex-start;
          gap: 0.5rem;
          margin-top: 0.1rem;

          &:first-of-type {
            margin-top: 0.5rem;
          }

          input[type="checkbox"] {
            accent-color: var(--primary);
            min-height: auto;
            width: 1rem;
            height: 1rem;
            margin-top: 0.2rem;
            padding: 0;
            border-radius: 0.2rem;
            flex-shrink: 0;
          }

          label {
            display: inline;
            font-size: 0.875rem;
            line-height: 1.35;
            color: rgba(50, 33, 18, 0.75);
          }

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

        .community-signup-submit {
          margin-top: 0.25rem;
          border: none;
          border-radius: 0.75rem;
          background: #cf7a58;
          color: #fff;
          height: 3.4rem;
          font-size: 1.9rem;
          font-style: normal;
          font-weight: 500;
          line-height: 1;
          cursor: pointer;
          transition: background-color 0.2s ease;

          &:hover,
          &:focus-visible {
            background: #c36f4e;
          }
        }
      }

      .community-signup-disclaimer {
        margin-top: 1rem;
        margin-bottom: 0;
        color: rgba(107, 93, 79, 0.55);
        text-align: center;
        font-size: 1.05rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.35;
      }
    }

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

      .community-join-content {
        h2,
        > p {
          max-width: 100%;
        }
      }
    }

    @media screen and (max-width: 767px) {
      .community-join-content {
        h2 {
          font-size: clamp(2rem, 9vw, 2.6rem);
          max-width: 16rem;
        }

        > p {
          margin-top: 1.2rem;
          font-size: 1.8rem;
          line-height: 1.38;
        }

        .community-join-list {
          margin-top: 1.7rem;
          gap: 1rem;

          li {
            strong {
              font-size: 1.65rem;
            }

            span {
              font-size: 1.55rem;
            }
          }
        }

        .community-join-cta {
          margin-top: 1.8rem;
          width: 100%;
          max-width: 16rem;
          font-size: 1.45rem;
        }
      }

      .community-signup-card-wrap {
        padding: 1rem;
      }

      .community-signup-card {
        padding: 1.4rem 1rem 1rem;

        .community-signup-form {
          margin-top: 1rem;

          > label {
            font-size: 1.2rem;
          }

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

          .community-signup-submit {
            font-size: 1.5rem;
          }
        }

        .community-signup-disclaimer {
          font-size: 0.95rem;
        }
      }
    }
  }

  .banner {
    .banner-text {
      text-align: center;
      font-size: 3.25rem;
      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;
        }
      }
    }
  }

  .background-primary {
    .banner {
      padding-top: 5rem;

      img {
        border-radius: var(--border-radius-3);
      }
    }
  }

  .home-banner {
    padding: 4rem 1rem;
    background: var(--secondary) url(../images/professional-chef-kitchen.png) right bottom no-repeat;
    background-size: contain;
    border-radius: var(--border-radius-2);
  }

  /* 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;
        color: var(--primary);
        background: var(--white);

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

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

  /* Button transition effects */
  .see-more-btn,
  .see-less-btn {
    transition: all 0.3s ease;
    border: 4px solid var(--primary);
    font-family: "Fredoka", sans-serif;
    color: var(--primary);
    background: transparent;
    padding: 0.75rem 2rem;
    margin-top: 20px;
  }

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

  /* Item appear animation */

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

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

  /* Category Cards */

  .app-section,
  #app-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    counter-reset: cardIndex;

    @media screen and (max-width: 767px) {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
    }

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

  .visible-item {
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .category_card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(
      135deg,
      #d47d5f 0%,
      #d68160 7.14%,
      #d88560 14.29%,
      #da8961 21.43%,
      #db8c61 28.57%,
      #dd9062 35.71%,
      #df9462 42.86%,
      #e19862 50%,
      #e39c63 57.14%,
      #e4a063 64.29%,
      #e6a464 71.43%,
      #e8a764 78.57%,
      #eaab64 85.71%,
      #ebaf65 92.86%,
      #edb365 100%
    );
    box-shadow:
      0 12px 22px rgba(6, 15, 21, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
    padding: 0.6rem;
    transition:
      transform 0.28s ease,
      box-shadow 0.28s ease,
      border-color 0.28s ease;
    height: 100%;

    &::before {
      counter-increment: cardIndex;
      content: counter(cardIndex, decimal-leading-zero);
      position: absolute;
      top: 0.85rem;
      left: 0.85rem;
      z-index: 3;
      border-radius: 999px;
      border: 1px solid rgba(240, 250, 255, 0.42);
      background: rgba(8, 19, 26, 0.65);
      color: #d9f3ff;
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      font-weight: 700;
      line-height: 1;
      padding: 0.38rem 0.47rem;
    }

    &:hover {
      transform: translateY(-6px) rotate(-0.4deg);
      border-color: rgba(236, 188, 115, 0.75);
      box-shadow:
        0 18px 30px rgba(8, 18, 25, 0.44),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);

      .category_card_img::after {
        transform: translateY(0);
        opacity: 1;
      }

      img.cardsImage {
        transform: scale(1.06);
        filter: brightness(0.95) saturate(1.05);
      }

      .cardsTitle {
        color: #fff8df;
      }
    }

    .category_card_img {
      position: relative;
      border-radius: 0.8rem;
      overflow: hidden;
      background: #131f25;

      &::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(180deg, rgba(9, 20, 27, 0.05) 30%, rgba(9, 20, 27, 0.7) 100%);
      }

      &::after {
        content: "Open";
        position: absolute;
        right: 0.65rem;
        bottom: 0.65rem;
        z-index: 2;
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #13242d;
        background: #f3d18e;
        border-radius: 999px;
        padding: 0.26rem 0.58rem;
        transform: translateY(6px);
        opacity: 0;
        transition: all 0.25s ease;
      }

      img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 0.8rem;
        transition: all 0.35s ease;
        filter: brightness(0.82) saturate(0.9);
      }
    }
  }

  .cardsTitle {
    margin: 0.65rem 0.15rem 0.2rem;
    color: #ecf6fc;
    font-family: "Fredoka", sans-serif;
    font-size: 1.02rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.75rem;
  }

  /* 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;
      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;
  }

  .categories {
    position: relative;
    overflow-x: auto;
  }

  form.categories-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    transition: transform 0.3s ease-in-out;
    width: max-content;
    padding: 0 0 10px 0;
    margin: 0 auto;

    .category-pill {
      padding: 0.5rem 1rem;
      border: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      justify-content: center;
      border-radius: var(--border-radius-3);
      background-color: #232323;
      color: var(--white);
      font-size: 0.875rem;
      cursor: pointer;
      transition: transform 0.3s ease-in-out;

      img {
        width: 20px;
        height: 20px;
        filter: brightness(10) contrast(5);
      }

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

  /* 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: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    max-width: 100%;
    align-items: stretch;

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

    button {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      padding: 1.2rem 1.15rem 1.2rem 3.35rem;
      width: 100%;
      cursor: pointer;
      min-height: 5.6rem;
      transition: all 0.25s ease;
      border-radius: 0.95rem;
      text-align: left;
      background:
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 44%),
        repeating-linear-gradient(-33deg, rgba(255, 255, 255, 0.06) 0 10px, rgba(255, 255, 255, 0) 10px 22px),
        linear-gradient(145deg, #1f3845 0%, #182b36 100%);
      color: #edf5f9;
      font-family: "Fredoka", sans-serif;
      font-weight: 600;
      font-size: 1.1rem;
      letter-spacing: 0.1em;
      line-height: 1.2;
      text-transform: uppercase;
      border: 1px solid rgba(205, 228, 239, 0.16);
      box-shadow:
        0 12px 18px rgba(8, 18, 25, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
      clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%, 0 50%);

      &::before {
        content: "01";
        position: absolute;
        left: 0.95rem;
        top: 50%;
        transform: translateY(-50%);
        width: 1.8rem;
        height: 1.8rem;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.72rem;
        letter-spacing: 0.02em;
        color: rgba(233, 247, 252, 0.92);
        background: rgba(234, 247, 252, 0.13);
        border: 1px solid rgba(234, 247, 252, 0.28);
      }

      &::after {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        height: 3px;
        background: linear-gradient(90deg, #b9eef6 0%, #6acde3 45%, #f8e09d 100%);
        opacity: 0.7;
      }

      @media screen and (max-width: 767px) {
        min-height: 4.6rem;
        font-size: 1rem;
        padding: 1rem 1rem 1rem 3.1rem;
      }

      &:hover {
        transform: translateY(-3px) rotate(-0.6deg);
        border-color: rgba(234, 247, 252, 0.35);
        box-shadow:
          0 18px 28px rgba(8, 18, 25, 0.32),
          inset 0 1px 0 rgba(255, 255, 255, 0.18);
      }

      &.active {
        cursor: default;
        transform: none !important;
        color: #2b2016;
        border-color: rgba(255, 246, 219, 0.8);
        background:
          radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 48%),
          repeating-linear-gradient(-33deg, rgba(255, 255, 255, 0.2) 0 10px, rgba(255, 255, 255, 0) 10px 22px),
          linear-gradient(145deg, #ffd9aa 0%, #f4b66f 100%);
        box-shadow:
          0 16px 30px rgba(108, 63, 28, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.7);

        &::before {
          color: #734222;
          border-color: rgba(144, 86, 43, 0.32);
          background: rgba(255, 244, 224, 0.82);
        }

        &::after {
          background: linear-gradient(90deg, #bb5f34 0%, #db8443 45%, #f5ba68 100%);
          opacity: 1;
        }
      }

      &.inactive {
        opacity: 0.92;
      }
    }

    button:nth-of-type(2)::before {
      content: "02";
    }

    button:nth-of-type(3)::before {
      content: "03";
    }
  }

  /* 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 {
    padding-block: 2rem;
    background-size: cover;

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

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

      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 {
    border: 2px solid var(--primary);
    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);
    margin: 0 auto;

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

    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 {
    background: #fff;
    color: #4a3f35;
    padding-bottom: 5rem;

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

    .support-eyebrow {
      display: inline-block;
      margin: 0;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.75rem;
      font-weight: 700;
      color: #cf7a58;
    }

    h1,
    h2,
    h3 {
      margin: 0;
      color: #3b3228;
      font-family: "Georgia", "Times New Roman", serif;
    }

    p {
      color: #6b5d4f;
    }

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

    .support-hero-card {
      border-radius: 1.5rem;
      padding: clamp(1.4rem, 3.2vw, 2.4rem);
      border: 1px solid rgba(107, 93, 79, 0.12);
      background: #f5f1e8;
      box-shadow: 0 4px 24px rgba(107, 93, 79, 0.08);
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
      gap: 1.5rem;
      align-items: center;

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

    .support-hero-copy {
      h1 {
        margin-top: 0.85rem;
        font-size: clamp(2rem, 4vw, 3.15rem);
        line-height: 1.1;
        max-width: 17ch;
      }

      p {
        margin-top: 0.95rem;
        font-size: 1.12rem;
        line-height: 1.55;
        max-width: 52ch;
      }
    }

    .support-number {
      display: inline-block;
      margin-top: 1.35rem;
      font-size: clamp(1.9rem, 4vw, 3rem);
      font-weight: 700;
      line-height: 1.08;
      color: #cf7a58;
      text-decoration: none;
    }

    .support-text {
      display: block;
      margin-top: 0.5rem;
      color: #8a7a6e;
      font-size: 0.95rem;
    }

    .support-hero-visual {
      position: relative;
      min-height: 220px;

      img {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        display: block;
        filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.35));

        @media (max-width: 900px) {
          margin: 0 auto;
        }
      }
    }

    .support-channel-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;

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

    .support-channel-card {
      border-radius: 1.15rem;
      border: 1px solid rgba(107, 93, 79, 0.12);
      background: #fff;
      padding: 1.3rem;

      h2 {
        font-size: clamp(1.4rem, 2.2vw, 2rem);
      }

      p {
        margin-top: 0.65rem;
        margin-bottom: 0;
        line-height: 1.5;
      }
    }

    .support-channel-link {
      display: inline-block;
      margin-top: 1rem;
      color: #cf7a58;
      font-weight: 700;
      font-size: clamp(1.1rem, 2vw, 1.35rem);
      text-decoration: underline;
      text-underline-offset: 0.18em;
    }

    .support-video-shell {
      border-radius: 1.3rem;
      padding: 0.45rem;
      background: linear-gradient(140deg, rgba(207, 122, 88, 0.35) 0%, rgba(237, 179, 101, 0.35) 100%);
      box-shadow: 0 8px 24px rgba(107, 93, 79, 0.14);
    }

    .support-video {
      width: 100%;
      height: 100%;
      border-radius: 1rem;
      display: block;
      background: #f5f1e8;
    }

    .support-contact-grid {
      margin-top: 0.65rem;
      display: grid;
      grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
      gap: 1.2rem;

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

    .support-contact-copy {
      .text-large {
        margin: 0;
        font-size: clamp(1.15rem, 2.2vw, 1.72rem);
        line-height: 1.45;
        color: #6b5d4f;
      }
    }

    .support-contact-form-wrap {
      border-radius: 1.2rem;
      border: 1px solid rgba(107, 93, 79, 0.12);
      background: #fff;
      padding: clamp(1rem, 2.2vw, 1.4rem);
      box-shadow: 0 4px 18px rgba(107, 93, 79, 0.08);
    }

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

      .form-group {
        gap: 0.85rem;

        input,
        textarea {
          background: #faf7f3 !important;
          color: #3b3228;
          border: 1px solid rgba(107, 93, 79, 0.2) !important;
          border-radius: 0.9rem;
          padding: 0.8rem 0.95rem;

          &::placeholder {
            color: rgba(107, 93, 79, 0.5);
          }
        }

        .btn {
          margin-top: 0.35rem;
          border-radius: 0.85rem;
        }
      }
    }

    .support-faq-section {
      padding-top: 3.6rem;
    }

    .support-faq-title {
      margin-top: 0.6rem;
      margin-bottom: 1.5rem;
      font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    }

    .accordion {
      width: 100%;

      .accordion-item {
        border-radius: 0.95rem;
        border: 1px solid rgba(107, 93, 79, 0.12);
        background: #fff;
        margin-bottom: 0.65rem;
        overflow: hidden;

        .accordion-header {
          cursor: pointer;
          padding: 1rem 1.15rem;
          display: flex;
          justify-content: space-between;
          align-items: center;
          gap: 1rem;

          .arrow {
            color: #cf7a58;
            transition: transform 0.3s ease;
            font-size: 0.95rem;
          }

          span {
            color: #3b3228;
            font-size: clamp(1rem, 1.8vw, 1.22rem);
            line-height: 1.4;
            font-weight: 600;
          }
        }

        .accordion-content {
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.3s ease;
          padding: 0 1.15rem;
          color: #6b5d4f;

          p {
            margin: 0 0 1rem;
            line-height: 1.6;
          }
        }

        &.active {
          .accordion-content {
            max-height: 420px;
          }

          .arrow {
            transform: rotate(90deg);
          }
        }
      }
    }

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

      .support-lite-card {
        border-radius: 1.35rem;
        border: 1px solid rgba(107, 93, 79, 0.12);
        background: #f5f1e8;
        padding: clamp(1.2rem, 2.5vw, 1.8rem);

        h1 {
          margin-top: 0.7rem;
          font-size: clamp(1.9rem, 3.8vw, 2.6rem);
        }
      }

      .support-lite-copy {
        width: 100%;
        margin-top: 1rem;
      }
    }
  }

  /* 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(--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(--brand-honey);
    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: #2d2416;
  }
  .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;
      margin-bottom: 1rem;
    }

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

    @media screen and (max-width: 767px) {
      .footer_link {
        align-items: center !important;
        justify-content: center !important;
        ul {
          flex-direction: column;
          gap: 0.8rem !important;
          align-items: center !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(--primary);
      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;

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

@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;
      color: var(--white);

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

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

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

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

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

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

  .justify-start {
    justify-content: flex-start;
  }

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

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

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

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

  .text-left {
    text-align: left !important;
  }

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