/** Shopify CDN: Minification failed

Line 86:0 All "@import" rules must come first

**/
/** Critical CSS for the theme. This file is included on every page. */

/* Reset styles inspired by https://www.joshwcomeau.com/css/custom-css-reset/ */
* {
  box-sizing: border-box;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100svh;
}

html:has(dialog[scroll-lock][open], details[scroll-lock][open]) {
  overflow: hidden;
}

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

svg {
  max-width: 100%;
  height: auto;
}

input,
textarea,
select {
  font: inherit;
  border-radius: var(--style-border-radius-inputs);
}

select {
  background-color: var(--color-background);
  color: currentcolor;
}

dialog {
  background-color: var(--color-background);
  color: var(--color-foreground);
}

p {
  text-wrap: pretty;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p:empty {
  display: none;
}

:is(p, h1, h2, h3, h4, h5, h6):first-child,
:empty:first-child+ :where(p, h1, h2, h3, h4, h5, h6) {
  margin-block-start: 0;
}

:is(p, h1, h2, h3, h4, h5, h6):last-child,
:where(p, h1, h2, h3, h4, h5, h6)+ :has(+ :empty:last-child) {
  margin-block-end: 0;
}

/** Theme styles for Ooploo - Premium Vitamins & Supplements */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* ========================================
     OOPLOO COLOR PALETTE
     ColorHunt: colorhunt.co/palette/bf092f13244016476a3b9797
     ======================================== */

  /* PRIMARY PALETTE */
  --color-accent: #BF092F;
  /* Vibrant red - CTA buttons, highlights */
  --color-dark: #132440;
  /* Dark navy - backgrounds, text */
  --color-primary: #16476A;
  /* Ocean blue - primary color */
  --color-secondary: #3B9797;
  /* Teal - secondary, accents */

  /* DERIVED COLORS */
  --color-accent-light: #D93D5C;
  /* Lighter red */
  --color-accent-dark: #8F0624;
  /* Darker red */
  --color-primary-light: #1E5A85;
  /* Lighter blue */
  --color-primary-dark: #0F3652;
  /* Darker blue */
  --color-secondary-light: #5CBDBD;
  /* Lighter teal */
  --color-secondary-dark: #2A7070;
  /* Darker teal */

  /* NEUTRALS */
  --color-white: #FFFFFF;
  --color-off-white: #F5F7F9;
  /* Cool off-white */
  --color-cream: #EEF2F5;
  /* Light cool gray */
  --color-light-bg: #E8ECF0;
  /* Light background */
  --color-muted: #D0D8E0;
  --color-border: #B8C4D0;
  --color-border-light: #D5DEE8;
  --color-text: #132440;
  /* Use dark navy as text */
  --color-text-secondary: #4A5D75;
  /* Muted navy */
  --color-text-light: #7A8DA3;
  /* Light text */

  /* SECTION BACKGROUNDS */
  --bg-white: #FFFFFF;
  --bg-cream: #F5F7F9;
  --bg-light-blue: #EEF4F8;
  /* Very light blue tint */
  --bg-dark: #132440;
  /* Dark navy section */
  --bg-primary: #16476A;
  /* Blue section */

  /* GRADIENTS */
  --gradient-primary: linear-gradient(135deg, #16476A 0%, #1E5A85 100%);
  --gradient-dark: linear-gradient(135deg, #132440 0%, #1E3A5F 100%);
  --gradient-accent: linear-gradient(135deg, #BF092F 0%, #D93D5C 100%);
  --gradient-secondary: linear-gradient(135deg, #3B9797 0%, #5CBDBD 100%);
  --gradient-hero: linear-gradient(135deg, #132440 0%, #16476A 100%);
  --gradient-soft: linear-gradient(180deg, #EEF4F8 0%, #FFFFFF 100%);

  /* BUTTON COLORS - Red CTA for maximum contrast */
  --btn-primary-bg: #BF092F;
  --btn-primary-text: #FFFFFF;
  --btn-primary-hover: #D93D5C;

  /* Secondary button (blue outline) */
  --btn-secondary-bg: transparent;
  --btn-secondary-text: #16476A;
  --btn-secondary-border: #16476A;

  /* Spacing Scale */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  /* 48px */
  --spacing-2xl: 4rem;
  /* 64px */
  --spacing-3xl: 6rem;
  /* 96px */

  /* Border Radius - Softer, more modern */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Premium Shadows - Layered for depth */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-glow-primary: 0 8px 30px rgba(22, 71, 106, 0.35);
  --shadow-glow-accent: 0 8px 30px rgba(191, 9, 47, 0.35);
  --shadow-glow-secondary: 0 8px 30px rgba(59, 151, 151, 0.3);

  /* Smooth Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-off-white);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Premium Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

p {
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-sm);
  font-size: 1.05rem;
}

/* Modern Links */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
}

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

/* Premium Buttons - Red CTA (ColorHunt Palette) */
button,
.button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #BF092F;
  color: #FFFFFF;
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 16px rgba(191, 9, 47, 0.3);
  text-transform: none;
  letter-spacing: 0;
}

button:hover,
.button:hover,
.btn:hover {
  background: #D93D5C;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(191, 9, 47, 0.4);
}

button:active,
.button:active,
.btn:active {
  transform: translateY(-1px);
}

/* Secondary Button Style - Blue Outline */
.btn-secondary,
.button-secondary {
  background: transparent;
  color: #16476A;
  border: 2px solid #16476A;
  box-shadow: none;
}

.btn-secondary:hover,
.button-secondary:hover {
  background: #16476A;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(22, 71, 106, 0.3);
}

/* Teal Button - For accents */
.btn-teal {
  background: #3B9797;
  color: #FFFFFF;
}

.btn-teal:hover {
  background: #5CBDBD;
}

/* Dark Button */
.btn-dark {
  background: #132440;
  color: #FFFFFF;
}

.btn-dark:hover {
  background: #1E3A5F;
}

/* Premium Cards */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  border: 1px solid var(--color-border-light);
}

.card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: transparent;
}

/** Section layout utilities */

/**
 * Full-width sections by default
 * Backgrounds extend to edges, content is centered
 */
.shopify-section {
  width: 100%;
  position: relative;
}

/* Section backgrounds are full-width by default */
.shopify-section>section,
.shopify-section>div {
  width: 100%;
}

/* Content containers inside sections are centered */
.section-container,
.container {
  max-width: var(--page-width, 1400px);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-margin, 24px);
  padding-right: var(--page-margin, 24px);
}

/* Explicit full-width class */
.full-width {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}