/** Shopify CDN: Minification failed

Line 16:0 Unexpected "{"
Line 16:1 Expected identifier but found "%"
Line 19:1 Expected identifier but found "%"
Line 22:21 Expected identifier but found whitespace
Line 22:23 Unexpected "{"
Line 22:33 Expected ":"
Line 23:15 Expected identifier but found whitespace
Line 23:17 Unexpected "{"
Line 23:27 Expected ":"
Line 24:17 Expected identifier but found whitespace
... and 48 more hidden warnings

**/
{% comment %}
  Theme Global Stylesheet
  Defines global styles, CSS variables, typography, and utility classes
{% endcomment %}

:root {
  --color-background: {{ settings.color_background }};
  --color-text: {{ settings.color_text }};
  --color-accent: {{ settings.color_accent }};
  --color-button: {{ settings.color_button }};
  --color-button-text: {{ settings.color_button_text }};
  --font-body-size: {{ settings.font_body_size }}px;
  --logo-width: {{ settings.logo_width }}px;
}

{%- comment -%}
  Google Fonts & Custom Fonts
  Load Typekit and Google Fonts
{%- endcomment -%}

@import url('https://fonts.googleapis.com/css2?family=Newsreader:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');

@font-face {
  font-family: 'LemonMilk Light';
  src: url('{{ "LemonMilk-Light.woff2" | asset_url }}') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

html,
body {
  margin: 0;
  padding: 0;

  width: 100%;
  min-height: 100%;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  font-size: var(--font-body-size);
  color: var(--color-text);
  background-color: #f9f4ee;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-y: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
}

p {
  margin: 0;
}

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

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

{%- comment -%} Button Styles {%- endcomment -%}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 0.5rem;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}

.btn-secondary:hover {
  background-color: var(--color-text);
  color: var(--color-background);
}

.btn-full {
  width: 100%;
}

{%- comment -%} Utility Classes {%- endcomment -%}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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

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

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

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

{%- comment -%} Animation Classes {%- endcomment -%}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.slide-up {
  animation: slideUp 0.6s ease-out;
}

{%- comment -%} Selection Styling {%- endcomment -%}

::selection {
  background: #ddd4c8;
  color: #2e2822;
}

::-moz-selection {
  background: #ddd4c8;
  color: #2e2822;
}

{%- comment -%} Focus States for Accessibility {%- endcomment -%}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--color-button);
  outline-offset: 2px;
}

{%- comment -%} Form Styles {%- endcomment -%}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: var(--color-text);
  background-color: white;
  border: 1px solid var(--color-accent);
  padding: 0.75rem;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-button);
  outline: none;
}

textarea {
  resize: vertical;
}

{%- comment -%} Print Styles {%- endcomment -%}

@media print {
  body {
    background-color: white;
    color: black;
  }

  a, a:visited {
    text-decoration: underline;
  }

  img {
    max-width: 100%;
  }

  @page {
    margin: 2cm;
  }
}

{%- comment -%} Reduced Motion {%- endcomment -%}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

{%- comment -%} High Contrast Mode {%- endcomment -%}

@media (prefers-contrast: more) {
  body {
    color: #000;
    background-color: #fff;
  }

  .btn-primary {
    border: 2px solid var(--color-button);
  }
}

/* Global page reset */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  min-height: 100%;
}

body {
  overflow-x: hidden;
}

#MainContent,
.shopify-section {
  margin-left: 0;
  margin-right: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #2e2822;
  color: #f9f4ee;
  padding: 8px;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* =========================================================
   SHARED SUBPAGE STRUCTURE
   Used by LUTs, About, FAQs and Enquire
   ========================================================= */

.subpage-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 110px;
}

.subpage-section:first-of-type {
  margin-top: 50px;
}

.subpage-heading {
  width: 100%;
}

.subpage-heading h2 {
  width: 100%;
  margin: 0;

  font-family: "Newsreader", serif;
  font-size: 20pt;
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;

  color: #2e2822;
}

.subpage-section::after {
  content: "";

  position: absolute;
  top: 67px;
  left: 105px;
  right: 105px;

  height: 1px;

  background-color: #2e2822;
}


/* Make anchored sections stop below the fixed navbar */
#individual-luts {
  scroll-margin-top: 65px;
}


@media screen and (max-width: 1000px) {

  .subpage-section {
    padding-left: 60px;
    padding-right: 60px;
  }

  .subpage-section::after {
    left: 55px;
    right: 55px;
  }

}


@media screen and (max-width: 600px) {

  .subpage-section {
    padding: 25px 20px;
  }

  .subpage-heading h2 {
    font-size: 18pt;
  }

  .subpage-section::after {
    top: 58px;
    left: 20px;
    right: 20px;
  }

}

/* =========================================================
   SHOPIFY POLICY PAGES
   Privacy Policy / Refund Policy / Terms of Service
   ========================================================= */

.shopify-policy__container {
  width: 100%;
  max-width: none;

  margin: 50px 0 0;

  padding: 80px 110px 80px;

  box-sizing: border-box;

  color: #2e2822;
}


/* =========================================
   PAGE HEADING
   ========================================= */

.shopify-policy__title {
  position: relative;

  width: 100%;

  margin: 0 0 40px;

  padding: 0 0 20px;

  text-align: left;
}


.shopify-policy__title::after {
  content: "";

  position: absolute;

  bottom: 0;
  left: 0;
  right: 0;

  height: 1px;

  background-color: #2e2822;
}


.shopify-policy__title h1 {
  margin: 0;

  font-family: "Newsreader", serif;

  font-size: 20pt;
  font-style: normal;
  font-weight: 300;

  line-height: 1.2;

  color: #2e2822;
}


/* =========================================
   POLICY BODY
   ========================================= */

.shopify-policy__body {
  width: min(100%, 900px);

  margin: 0;

  font-family: "Open Sans", sans-serif;

  font-size: 10.5pt;
  font-style: normal;
  font-weight: 400;

  line-height: 1.7;

  color: #2e2822;
}


.shopify-policy__body p {
  margin: 0 0 18px;
}


.shopify-policy__body h2 {
  margin: 38px 0 14px;

  font-family: "Newsreader", serif;

  font-size: 17pt;
  font-style: normal;
  font-weight: 300;

  line-height: 1.25;

  color: #2e2822;
}


.shopify-policy__body h3 {
  margin: 28px 0 12px;

  font-family: "Newsreader", serif;

  font-size: 14pt;
  font-style: normal;
  font-weight: 300;

  line-height: 1.3;

  color: #2e2822;
}


.shopify-policy__body ul,
.shopify-policy__body ol {
  margin: 0 0 20px;

  padding-left: 22px;
}


.shopify-policy__body li {
  margin-bottom: 7px;
}


.shopify-policy__body a {
  color: #2e2822;

  text-decoration: underline;
  text-underline-offset: 3px;
}


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

@media screen and (max-width: 1000px) {

  .shopify-policy__container {
    padding-left: 60px;
    padding-right: 60px;
  }

}


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

@media screen and (max-width: 600px) {

  .shopify-policy__container {
    margin-top: 50px;

    padding:
      50px
      20px
      55px;
  }


  .shopify-policy__title {
    margin: 30px 0;

    padding-bottom: 15px;
  }


  .shopify-policy__title h1 {
    font-size: 18pt;
  }


  .shopify-policy__body {
    width: 100%;

    font-size: 10pt;

    line-height: 1.65;
  }


  .shopify-policy__body h2 {
    margin-top: 32px;

    font-size: 16pt;
  }


  .shopify-policy__body h3 {
    font-size: 13pt;
  }

}