/** Shopify CDN: Minification failed

Line 27:18 Expected identifier but found whitespace
Line 27:20 Unexpected "{"
Line 27:30 Expected ":"
Line 28:20 Expected identifier but found whitespace
Line 28:22 Unexpected "{"
Line 28:32 Expected ":"
Line 29:17 Expected identifier but found whitespace
Line 29:19 Unexpected "{"
Line 29:29 Expected ":"
Line 30:15 Expected identifier but found whitespace
... and 11 more hidden warnings

**/
/* ==========================================================================
   BASE CSS - Mavé Theme
   Only includes global styles, utilities, and design tokens
   ========================================================================== */

/* CSS Custom Properties (Design Tokens)
   ========================================================================== */
/* Apotek - Semibold */

:root {
  /* Colors */
  --color-primary: {{ settings.color_primary | default: '#405764' }};
  --color-secondary: {{ settings.color_secondary | default: '#d6813c' }};
  --color-accent: {{ settings.color_accent | default: '#f4e7c7' }};
  --color-text: {{ settings.color_text | default: '#405764' }};
  --color-text-light: {{ settings.color_text_light | default: '#EEDAB1' }};
  --color-background: {{ settings.color_background | default: '#ffffff' }};
  --color-border: {{ settings.color_border | default: '#e0e0e0' }};
  
  /* Typography */
  --font-heading: 'Minion Variable Concept', serif;
  --font-body: 'Myriad Pro', sans-serif;
  
  /* Font Sizes */
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 28px;
  --font-size-4xl: 32px;
  --font-size-5xl: 36px;
  --font-size-6xl: 48px;
  --font-size-7xl: 64px;
  
  /* Spacing */
  --spacing-unit: 8px;
  --spacing-xs: calc(var(--spacing-unit) * 0.5);  /* 4px */
  --spacing-sm: calc(var(--spacing-unit) * 1);    /* 8px */
  --spacing-md: calc(var(--spacing-unit) * 2);    /* 16px */
  --spacing-lg: calc(var(--spacing-unit) * 3);    /* 24px */
  --spacing-xl: calc(var(--spacing-unit) * 4);    /* 32px */
  --spacing-2xl: calc(var(--spacing-unit) * 5);   /* 40px */
  
  /* Layout */
  --container-padding: var(--spacing-2xl); /* 40px */
  --container-max-width: 1366px;
  --header-max-width: 100%;
  
  /* Animations */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

/* Reset & Base Styles
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-background);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Font loading states */
body.fonts-loading {
  visibility: hidden;
}

body.fonts-loaded {
  visibility: visible;
}

.banner:after, .banner__media:after {
  content: none !important;
}

/* Accessibility
   ========================================================================== */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: var(--spacing-sm);
  z-index: 9999;
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--color-primary);
  color: var(--color-text-light);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
}

.skip-to-content:focus {
  left: var(--spacing-sm);
}

/* Focus styles */
*:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

*:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* Images & Media
   ========================================================================== */
img,
svg {
  max-width: 100%;
  height: auto;
}

svg {
  fill: currentColor;
}

/* Typography Utilities
   ========================================================================== */
.text-xs { font-size: var(--font-size-xs); }
.text-sm { font-size: var(--font-size-sm); }
.text-base { font-size: var(--font-size-base); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.text-2xl { font-size: var(--font-size-2xl); }
.text-3xl { font-size: var(--font-size-3xl); }
.text-4xl { font-size: var(--font-size-4xl); }
.text-5xl { font-size: var(--font-size-5xl); }
.text-6xl { font-size: var(--font-size-6xl); }
.text-7xl { font-size: var(--font-size-7xl); }

.text-uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Layout Utilities
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Flex Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.gap-xs { gap: var(--spacing-xs); }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }
.gap-xl { gap: var(--spacing-xl); }

/* Grid Utilities */
.grid-custom {
  display: grid;
}

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Spacing Utilities */
.mt-xs { margin-top: var(--spacing-xs); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.mt-2xl { margin-top: var(--spacing-2xl); }

.mb-xs { margin-bottom: var(--spacing-xs); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mb-2xl { margin-bottom: var(--spacing-2xl); }

.p-xs { padding: var(--spacing-xs); }
.p-sm { padding: var(--spacing-sm); }
.p-md { padding: var(--spacing-md); }
.p-lg { padding: var(--spacing-lg); }
.p-xl { padding: var(--spacing-xl); }
.p-2xl { padding: var(--spacing-2xl); }

/* Display Utilities */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

/* Responsive Utilities
   ========================================================================== */
@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .hidden-desktop {
    display: none !important;
  }
}

/* Print Styles
   ========================================================================== */
@media print {
  .no-print {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  a {
    text-decoration: underline;
  }
  
  .container {
    max-width: 100%;
    padding: 0;
  }
}




/* Policy Page Styling - Match Mavé Theme */
.shopify-policy__container {
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #F3E6C8;
  min-height: 100vh;
  max-width: 100%;
}

.shopify-policy__title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding: 0 20px;
}

.shopify-policy__title h1 {
  font-family: 'Apotek', sans-serif;
  font-size: 80px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #405764;
  margin: 0;
  line-height: 0.9;
  position: relative;
  z-index: 1;
}

/* Title decorative lines */
.policy-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.policy-title-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.policy-title-lines .line {
  height: 10px;
  background: #CC7829;
  display: block;
}

.policy-title-center {
  position: relative;
  min-width: 750px;
  flex-shrink: 0;
  text-align: center;
}

.policy-title-center span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: #455A64;
  font-weight: 500;
}

.policy-title-center img {
  vertical-align: middle;
  display: block;
}

.shopify-policy__body {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  position: relative;
  z-index: 1;
}


.shopify-policy__body .rte {
  color: #455A64;
}

.shopify-policy__body h2 {
  font-family: 'Apotek', sans-serif;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #405764;
  margin: 50px 0 20px;
  line-height: 1.1;
}

.shopify-policy__body h2:first-child {
  margin-top: 0;
}

.shopify-policy__body p {
  font-family: 'Minion Variable Concept', serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: #455A64;
  margin: 0 0 20px;
}

.shopify-policy__body ul {
  margin: 20px 0 30px;
  padding-left: 30px;
  list-style: none;
}

.shopify-policy__body li {
  font-family: 'Minion Variable Concept', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  color: #455A64;
  margin-bottom: 15px;
  position: relative;
}

.shopify-policy__body li:before {
  content: "•";
  color: #CC7829;
  font-size: 28px;
  position: absolute;
  left: -20px;
  top: -2px;
}

.shopify-policy__body strong {
  color: #405764;
  font-weight: 700;
}

.shopify-policy__body a {
  color: #CC7829;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.shopify-policy__body a:hover {
  color: #405764;
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .shopify-policy__title h1 {
    font-size: 60px;
  }
  
  .policy-title-center {
    min-width: 500px;
  }
  
  .shopify-policy__body h2 {
    font-size: 36px;
  }
  
  .shopify-policy__body p,
  .shopify-policy__body li {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .shopify-policy__container {
    padding: 40px 15px;
  }
  
  .shopify-policy__title h1 {
    font-size: 40px;
  }
  
  .policy-title-wrapper {
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .policy-title-center {
    min-width: 300px;
  }
  
  .policy-title-lines {
    gap: 8px;
  }
  
  .policy-title-lines .line {
    height: 6px;
  }
  
  .shopify-policy__body {
    padding: 30px 20px;
  }
  
  .shopify-policy__body h2 {
    font-size: 28px;
    margin: 40px 0 15px;
  }
  
  .shopify-policy__body p,
  .shopify-policy__body li {
    font-size: 18px;
    line-height: 1.5;
  }
  
  .shopify-policy__body ul {
    padding-left: 20px;
  }
  
  .shopify-policy__body li:before {
    left: -15px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .shopify-policy__title h1 {
    font-size: 32px;
  }
  
  .policy-title-center {
    min-width: 250px;
  }
  
  .shopify-policy__body h2 {
    font-size: 24px;
  }
  
  .shopify-policy__body p,
  .shopify-policy__body li {
    font-size: 16px;
  }
}