/** Shopify CDN: Minification failed

Line 265:1 Unexpected "/"

**/
/* Mentra Base CSS
   Foundation styles for the design system */

/* Color System */
:root {
  /* Neutrals */
  --neutral-white: #ffffff;
  --neutral-lightest: #f2f2f2;
  --neutral-lighter: #d8d9d9;
  --neutral-light: #b2b4b3;
  --neutral: #808281;
  --neutral-dark: #4d504e;
  --neutral-darker: #1a1b1c;
  --neutral-darkest: #010503;

  /* Green Pea */
  --green-pea-lightest: #e8efeb;
  --green-pea-lighter: #d1dfd8;
  --green-pea-light: #68f878;
  --green-pea: #1d603f;
  --green-pea-dark: #174c32;
  --green-pea-darker: #0b2619;
  --green-pea-darkest: #081212;

  /* Shamrock */
  --shamrock-lightest: #eaf9f3;
  --shamrock-lighter: #d6f8e7;
  --shamrock-light: #72e7ac;
  --shamrock: #36dd89;
  --shamrock-dark: #2b806d;
  --shamrock-darker: #158836;
  --shamrock-darkest: #104229;
}

/* Color Schemes */
.scheme-1 {
  --text-color: var(--neutral-white);
  --background-color: var(--neutral-darkest);
  --foreground-color: var(--neutral-darker);
  --border-color: rgba(255, 255, 255, 0.2); /* Opacity/White 20 */
  --accent-color: var(--neutral-white);
}

.scheme-2 {
  --text-color: var(--neutral-white);
  --background-color: var(--shamrock-darkest);
  --foreground-color: var(--shamrock-darker);
  --border-color: rgba(255, 255, 255, 0.2); /* Opacity/White 20 */
  --accent-color: var(--neutral-white);
}

/* Font imports */
@font-face {
  font-family: "Outfit";
  src: url("https://cdn.shopify.com/s/files/1/0934/6967/1720/files/Outfit-VariableFont_wght.ttf?v=1747750884");
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("https://cdn.shopify.com/s/files/1/0934/6967/1720/files/Manrope-VariableFont_wght.ttf?v=1747750876");
  font-display: swap;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif !important;
  -webkit-tap-highlight-color: transparent;
}

html {
  color-scheme: dark;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  color: var(--neutral-white);
  background-color: var(--neutral-darkest);
}

/* Default to scheme-1 (dark mode) for the entire site */
:root {
  --text-color: var(--neutral-white);
  --background-color: var(--neutral-darkest);
  --foreground-color: var(--neutral-darker);
  --border-color: rgba(255, 255, 255, 0.2);
  --accent-color: var(--neutral-white);
}

/* Typography System */
/* Heading Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif !important;
  font-weight: 400 !important;
}

/* Heading font: Outfit */
/* Base typography */
html {
  font-family: "Manrope", sans-serif;
  font-size: 1rem; /* Base font size */
  letter-spacing: -2%;
}
/* 
/* Heading font: Outfit */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
}

h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 3.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw + 0.8rem, 3rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.75rem, 3.5vw + 0.5rem, 2.5rem);
  line-height: 1.3;
}

h4 {
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2rem);
  line-height: 1.4;
}

h5 {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  line-height: 1.4;
}

h6 {
  font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.5rem);
  line-height: 1.5;
}

/* Body text elements */
body {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.5;
}

p {
  font-size: clamp(1.125rem, 1vw + 0.5rem, 1.525rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* List items */
ul,
ol {
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

li {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* Links */
a {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
  text-decoration: underline;
  color: #0066cc; /* Adjust to your brand color */
  transition: color 0.2s ease;
}

a:hover {
  color: #004080; /* Darker shade for hover */
}

/* Block quotes */
blockquote {
  font-size: clamp(1.125rem, 1.25vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  font-style: italic;
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  border-left: 4px solid #eeeeee; /* Adjust color to your design */
}

/* Definition lists */
dt {
  font-size: clamp(1.125rem, 1.25vw + 0.5rem, 1.25rem);
  font-weight: bold;
  margin-bottom: 0.5rem;
}

dd {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: 1rem;
  margin-left: 2rem;
}

/* Small text elements */
small,
.text-small {
  font-size: clamp(0.75rem, 0.5vw + 0.5rem, 0.875rem);
}

/* Form elements */
label {
  font-size: clamp(0.875rem, 0.75vw + 0.5rem, 1rem);
  font-weight: 500;
}

input,
select,
textarea,
button {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.875rem, 0.75vw + 0.5rem, 1rem);
}

/* Code elements */
code,
pre {
  font-family: "Menlo", "Monaco", "Consolas", monospace;
  font-size: clamp(0.875rem, 0.75vw + 0.5rem, 1rem);
}

/* Utility text classes based on your design system */
.text-large {
  font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.5rem);
}

.text-medium {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
}

.text-regular {
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 1rem);
}

.text-small {
  font-size: clamp(0.75rem, 0.5vw + 0.5rem, 0.875rem);
}

.text-tiny {
  font-size: clamp(0.625rem, 0.25vw + 0.5rem, 0.75rem);
}
*/
/* Font weight classes */
.font-bold,
strong,
b {
  font-weight: 700;
}

.font-semi-bold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

.font-light {
  font-weight: 300;
}

/* Text variants */
.text-large {
  font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.5rem);
}

.text-medium {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
}

.text-regular {
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 1rem);
}

.text-small {
  font-size: clamp(0.75rem, 0.5vw + 0.5rem, 0.875rem);
}

.text-tiny {
  font-size: clamp(0.625rem, 0.25vw + 0.5rem, 0.75rem);
}

/* Tagline */
.tagline {
  font-family: "Outfit", sans-serif !important;
  font-size: 16px;
  line-height: 150%;
}

/* Text styles - Desktop */
.text-large {
  font-size: 20px;
  line-height: 150%;
}

.text-medium {
  font-size: 18px;
  line-height: 150%;
}

.text-regular {
  font-size: 16px;
  line-height: 150%;
}

.text-small {
  font-size: 14px;
  line-height: 150%;
}

.text-tiny {
  font-size: 12px;
  line-height: 150%;
}

/* Font weights */
.extra-bold {
  font-weight: 800;
}

.bold {
  font-weight: 700;
}

.semi-bold {
  font-weight: 600;
}

.medium {
  font-weight: 500;
}

.normal {
  font-weight: 400;
}

.light {
  font-weight: 300;
}

a {
  font-family: "Manrope", sans-serif !important;
  color: var(--accent-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Mobile Typography
  @media screen and (max-width: 768px) {
    h1 { 
      font-size: 40px;
      line-height: 120%;
    }
    
    h2 { 
      font-size: 36px;
      line-height: 120%;
    }
    
    h3 { 
      font-size: 32px;
      line-height: 120%;
    }
    
    h4 { 
      font-size: 24px;
      line-height: 130%;
    }
    
    h5 { 
      font-size: 20px;
      line-height: 140%;
    }
    
    h6 { 
      font-size: 18px;
      line-height: 140%;
    }
    
    .text-large {
      font-size: 18px;
    }
    
    .text-medium {
      font-size: 16px;
    }
    
    .text-regular {
      font-size: 14px;
    }
    
    .text-small {
      font-size: 12px;
    }
    
    .text-tiny {
      font-size: 10px;
    }
  } */

/* Color utility classes */
.bg-neutral-white {
  background-color: var(--neutral-white);
}
.bg-neutral-lightest {
  background-color: var(--neutral-lightest);
}
.bg-neutral-lighter {
  background-color: var(--neutral-lighter);
}
.bg-neutral-light {
  background-color: var(--neutral-light);
}
.bg-neutral {
  background-color: var(--neutral);
}
.bg-neutral-dark {
  background-color: var(--neutral-dark);
}
.bg-neutral-darker {
  background-color: var(--neutral-darker);
}
.bg-neutral-darkest {
  background-color: var(--neutral-darkest);
}

.bg-green-pea-lightest {
  background-color: var(--green-pea-lightest);
}
.bg-green-pea-lighter {
  background-color: var(--green-pea-lighter);
}
.bg-green-pea-light {
  background-color: var(--green-pea-light);
}
.bg-green-pea {
  background-color: var(--green-pea);
}
.bg-green-pea-dark {
  background-color: var(--green-pea-dark);
}
.bg-green-pea-darker {
  background-color: var(--green-pea-darker);
}
.bg-green-pea-darkest {
  background-color: var(--green-pea-darkest);
}

.bg-shamrock-lightest {
  background-color: var(--shamrock-lightest);
}
.bg-shamrock-lighter {
  background-color: var(--shamrock-lighter);
}
.bg-shamrock-light {
  background-color: var(--shamrock-light);
}
.bg-shamrock {
  background-color: var(--shamrock);
}
.bg-shamrock-dark {
  background-color: var(--shamrock-dark);
}
.bg-shamrock-darker {
  background-color: var(--shamrock-darker);
}
.bg-shamrock-darkest {
  background-color: var(--shamrock-darkest);
}

.text-neutral-white {
  color: var(--neutral-white);
}
.text-neutral-lightest {
  color: var(--neutral-lightest);
}
.text-neutral-lighter {
  color: var(--neutral-lighter);
}
.text-neutral-light {
  color: var(--neutral-light);
}
.text-neutral {
  color: var(--neutral);
}
.text-neutral-dark {
  color: var(--neutral-dark);
}
.text-neutral-darker {
  color: var(--neutral-darker);
}
.text-neutral-darkest {
  color: var(--neutral-darkest);
}

.text-green-pea-lightest {
  color: var(--green-pea-lightest);
}
.text-green-pea-lighter {
  color: var(--green-pea-lighter);
}
.text-green-pea-light {
  color: var(--green-pea-light);
}
.text-green-pea {
  color: var(--green-pea);
}
.text-green-pea-dark {
  color: var(--green-pea-dark);
}
.text-green-pea-darker {
  color: var(--green-pea-darker);
}
.text-green-pea-darkest {
  color: var(--green-pea-darkest);
}

.text-shamrock-lightest {
  color: var(--shamrock-lightest);
}
.text-shamrock-lighter {
  color: var(--shamrock-lighter);
}
.text-shamrock-light {
  color: var(--shamrock-light);
}
.text-shamrock {
  color: var(--shamrock);
}
.text-shamrock-dark {
  color: var(--shamrock-dark);
}
.text-shamrock-darker {
  color: var(--shamrock-darker);
}
.text-shamrock-darkest {
  color: var(--shamrock-darkest);
}

/* Scheme utility classes */
.text-color {
  color: var(--text-color);
}
.background-color {
  background-color: var(--background-color);
}
.foreground-color {
  background-color: var(--foreground-color);
}
.border-color {
  border-color: var(--border-color);
}
.accent-color {
  color: var(--accent-color);
}

/* Section styling */
.section {
  padding: 2rem 0;
}

/* Button styling */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  background-color: var(--accent-color);
  color: var(--background-color);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease;
}

.button:hover {
  background-color: var(--accent-color);
  opacity: 0.9;
  text-decoration: none;
}

/* Form elements */
/* Dark mode for form elements */
input,
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: var(--foreground-color);
  color: var(--text-color);
  margin-bottom: 1rem;
  font-family: "Manrope", sans-serif !important;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-family: "Manrope", sans-serif !important;
}

/* Utility classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.m-0 {
  margin: 0;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.p-1 {
  padding: 0.5rem;
}
.p-2 {
  padding: 1rem;
}
.p-3 {
  padding: 1.5rem;
}
.p-4 {
  padding: 2rem;
}

.rounded {
  border-radius: 4px;
}
.rounded-lg {
  border-radius: 8px;
}
.rounded-full {
  border-radius: 9999px;
}

.shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.shadow-lg {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

/* Responsive utilities */
@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 0.75rem;
  }

  .hidden-sm {
    display: none;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hidden-md {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .hidden-lg {
    display: none;
  }
}

/* Flexbox utilities */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.flex-1 {
  flex: 1;
}
.flex-auto {
  flex: auto;
}
.flex-none {
  flex: none;
}

/* Grid utilities */
.grid {
  display: grid;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.gap-1 {
  gap: 0.5rem;
}
.gap-2 {
  gap: 1rem;
}
.gap-3 {
  gap: 1.5rem;
}
.gap-4 {
  gap: 2rem;
}

@media screen and (max-width: 768px) {
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }
}

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

input,
textarea {
  border: 0 !important;
}

* {
  scroll-behavior: smooth;

  &::selection {
    background-color: var(--green-pea);
  }
}

@keyframes appear {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

h1 {
  line-height: 1.2;
}

p {
  margin: 0 !important;
}

* {
  -webkit-tap-highlight-color: transparent;
}

body {
  overflow-x: hidden;
  max-width: 100%;
}

.shopify-policy__container {
  padding: 6em 8em !important;
  padding-left: 0px !important;
  max-width: 1600px !important;
  margin: 0 auto !important;
}

.shopify-policy__title {
  text-align: start !important;
}

.shopify-policy__body {
  padding-block: 2em !important ;
  display: grid !important;
  gap: 3em !important;

  .rte > h2 {
    padding-block: 2em !impotant;
  }
}

body,
html {
  overflow-x: hidden;
}
