/** Shopify CDN: Minification failed

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

**/
/* Le Filtre Français - Brand Variables & Global Styles */

:root {
  /* Brand Colors */
  --lf-primary-color: #1E3A5F;      /* Bleu profond - confiance, eau pure */
  --lf-secondary-color: #64B5F6;    /* Bleu clair - fraîcheur */
  --lf-bg-color: #F5F5F0;           /* Blanc cassé - pureté */
  --lf-accent-color: #D4AF37;       /* Doré - qualité premium */

  /* Text Colors */
  --lf-text-color: #1E3A5F;
  --lf-text-color-light: #666666;
  --lf-text-color-lighter: #999999;
  --lf-text-color-lightest: #CCCCCC;

  /* Background Colors */
  --lf-bg-white: #FFFFFF;
  --lf-bg-off-white: #FAFAF8;
  --lf-bg-light: #F5F5F0;

  /* Typography */
  --lf-font-heading: 'Cormorant Garamond', Georgia, serif;
  --lf-font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing - System cohérent */
  --lf-space-xs: 0.5rem;      /* 8px */
  --lf-space-sm: 1rem;        /* 16px */
  --lf-space-md: 1.5rem;      /* 24px */
  --lf-space-lg: 2rem;        /* 32px */
  --lf-space-xl: 3rem;        /* 48px */
  --lf-space-2xl: 4rem;       /* 64px */
  --lf-space-3xl: 6rem;       /* 96px */
  --lf-space-4xl: 8rem;       /* 128px */

  /* Container Widths */
  --lf-container-sm: 640px;
  --lf-container-md: 900px;
  --lf-container-lg: 1100px;
  --lf-container-xl: 1400px;

  /* Border Radius */
  --lf-radius-none: 0;
  --lf-radius-sm: 2px;
  --lf-radius-md: 4px;
  --lf-radius-lg: 8px;
  --lf-radius-full: 50%;

  /* Shadows */
  --lf-shadow-xs: 0 1px 2px rgba(30, 58, 95, 0.04);
  --lf-shadow-sm: 0 2px 4px rgba(30, 58, 95, 0.06);
  --lf-shadow-md: 0 4px 12px rgba(30, 58, 95, 0.08);
  --lf-shadow-lg: 0 8px 24px rgba(30, 58, 95, 0.12);
  --lf-shadow-xl: 0 16px 48px rgba(30, 58, 95, 0.16);

  /* Transitions */
  --lf-transition-fast: 0.15s ease;
  --lf-transition-base: 0.3s ease;
  --lf-transition-slow: 0.5s ease;

  /* Z-index layers */
  --lf-z-base: 1;
  --lf-z-dropdown: 100;
  --lf-z-sticky: 200;
  --lf-z-fixed: 300;
  --lf-z-modal: 400;
  --lf-z-popover: 500;
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Body Typography */
body {
  font-family: var(--lf-font-body);
  font-weight: 300;
  line-height: 1.6;
  color: var(--lf-text-color);
  background-color: var(--lf-bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography System - Enlarged +30-40% for modern impact */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--lf-font-heading);
  font-weight: 300;
  line-height: 1.2;
  color: var(--lf-text-color);
  margin-top: 0;
  margin-bottom: var(--lf-space-md);
}

h1, .h1 {
  font-size: clamp(2.75rem, 6.5vw, 4.75rem); /* 28px - 48px (+35%) */
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h2, .h2 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem); /* 24px - 38px (+36%) */
  letter-spacing: -0.01em;
  line-height: 1.18;
}

h3, .h3 {
  font-size: clamp(1.875rem, 4vw, 3rem); /* 19px - 30px (+33%) */
  line-height: 1.2;
}

h4, .h4 {
  font-size: clamp(1.625rem, 3.25vw, 2.375rem); /* 16px - 24px (+30%) */
  line-height: 1.2;
}

h5, .h5 {
  font-size: 1.5rem; /* 24px (+33%) */
  line-height: 1.3;
}

h6, .h6 {
  font-size: 1.375rem; /* 22px (+38%) */
  line-height: 1.3;
}

/* Paragraphs - Enhanced line-height for larger text */
p {
  margin-top: 0;
  margin-bottom: var(--lf-space-md);
  line-height: 1.65;
}

p:last-child {
  margin-bottom: 0;
}

/* Links */
a {
  color: var(--lf-primary-color);
  text-decoration: none;
  transition: color var(--lf-transition-base);
}

a:hover {
  color: var(--lf-accent-color);
}

a:focus-visible {
  outline: 2px solid var(--lf-accent-color);
  outline-offset: 2px;
  border-radius: var(--lf-radius-sm);
}

/* Lists */
ul, ol {
  margin-top: 0;
  margin-bottom: var(--lf-space-md);
  padding-left: var(--lf-space-lg);
}

li {
  margin-bottom: var(--lf-space-xs);
}

/* Selection */
::selection {
  background-color: var(--lf-accent-color);
  color: var(--lf-primary-color);
}

::-moz-selection {
  background-color: var(--lf-accent-color);
  color: var(--lf-primary-color);
}

/* Images & Media */
img,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Buttons - Minimaliste Luxe Style */
.button,
.shopify-chunk__button,
.btn,
.btn-primary,
.btn-secondary {
  font-family: var(--lf-font-body);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--lf-radius-sm);
  transition: all var(--lf-transition-base);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.button--primary,
.btn-primary,
.shopify-chunk__button--primary {
  background-color: var(--lf-accent-color);
  color: var(--lf-primary-color);
  border: 1px solid var(--lf-accent-color);
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
}

.button--primary:hover,
.btn-primary:hover,
.shopify-chunk__button--primary:hover {
  background-color: #c49d2f;
  border-color: #c49d2f;
  transform: translateY(-2px);
  box-shadow: var(--lf-shadow-md);
}

.button--secondary,
.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--lf-primary-color);
  color: var(--lf-primary-color);
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
}

.button--secondary:hover,
.btn-secondary:hover {
  background-color: var(--lf-primary-color);
  color: var(--lf-bg-white);
}

/* Form Elements */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="url"],
textarea,
select {
  font-family: var(--lf-font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--lf-text-color);
  background-color: var(--lf-bg-white);
  border: 1px solid rgba(30, 58, 95, 0.15);
  border-radius: var(--lf-radius-sm);
  padding: 0.875rem 1.25rem;
  width: 100%;
  transition: all var(--lf-transition-base);
}

input::placeholder,
textarea::placeholder {
  color: var(--lf-text-color-lighter);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--lf-accent-color);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

input:disabled,
textarea:disabled,
select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

/* Page Layout */
.template-index,
.template-page,
.template-product,
.template-collection,
.template-blog,
.template-article {
  background-color: var(--lf-bg-white);
}

/* Section Spacing */
.section {
  padding: var(--lf-space-3xl) 0;
}

.section--tight {
  padding: var(--lf-space-2xl) 0;
}

.section--loose {
  padding: var(--lf-space-4xl) 0;
}

/* Container */
.page-width {
  width: 100%;
  max-width: var(--lf-container-xl);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--lf-space-md);
  padding-right: var(--lf-space-md);
}

/* Grid System */
.lf-grid {
  display: grid;
  gap: var(--lf-space-lg);
}

.lf-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.lf-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.lf-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Utility Classes */
.lf-text-center { text-align: center; }
.lf-text-left { text-align: left; }
.lf-text-right { text-align: right; }
.lf-text-justify { text-align: justify; }

.lf-text-accent { color: var(--lf-accent-color); }
.lf-text-primary { color: var(--lf-primary-color); }
.lf-text-light { color: var(--lf-text-color-light); }

.lf-bg-light { background-color: var(--lf-bg-light); }
.lf-bg-white { background-color: var(--lf-bg-white); }

.lf-mt-0 { margin-top: 0; }
.lf-mt-sm { margin-top: var(--lf-space-sm); }
.lf-mt-md { margin-top: var(--lf-space-md); }
.lf-mt-lg { margin-top: var(--lf-space-lg); }
.lf-mt-xl { margin-top: var(--lf-space-xl); }

.lf-mb-0 { margin-bottom: 0; }
.lf-mb-sm { margin-bottom: var(--lf-space-sm); }
.lf-mb-md { margin-bottom: var(--lf-space-md); }
.lf-mb-lg { margin-bottom: var(--lf-space-lg); }
.lf-mb-xl { margin-bottom: var(--lf-space-xl); }

.lf-p-0 { padding: 0; }
.lf-p-sm { padding: var(--lf-space-sm); }
.lf-p-md { padding: var(--lf-space-md); }
.lf-p-lg { padding: var(--lf-space-lg); }
.lf-p-xl { padding: var(--lf-space-xl); }

/* Focus Visible for Accessibility */
:focus-visible {
  outline: 2px solid var(--lf-accent-color);
  outline-offset: 2px;
}

/* Skip Link */
.skip-to-content-link {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  z-index: 9999;
  padding: 1rem 2rem;
  background-color: var(--lf-accent-color);
  color: var(--lf-primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: transform var(--lf-transition-base);
}

.skip-to-content-link:focus {
  transform: translateX(-50%) translateY(0);
}

/* ============================
   RESPONSIVE BREAKPOINTS
   ============================ */

/* Small devices (landscape phones, 576px and up) */
@media screen and (min-width: 576px) {
  .page-width {
    padding-left: var(--lf-space-lg);
    padding-right: var(--lf-space-lg);
  }
}

/* Medium devices (tablets, 768px and up) */
@media screen and (min-width: 768px) {
  html {
    font-size: 67%; /* Base font size increased (was 62.5%) */
  }

  body {
    font-size: 1.875rem; /* Body text increased +17% (was 1.6rem) */
  }

  .section {
    padding: var(--lf-space-3xl) 0;
  }
}

/* Large devices (desktops, 992px and up) */
@media screen and (min-width: 992px) {
  .page-width {
    padding-left: var(--lf-space-xl);
    padding-right: var(--lf-space-xl);
  }

  .lf-grid--4 {
    gap: var(--lf-space-xl);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media screen and (min-width: 1200px) {
  .page-width {
    padding-left: var(--lf-space-2xl);
    padding-right: var(--lf-space-2xl);
  }
}

/* ============================
   MOBILE-ONLY STYLES
   ============================ */

@media screen and (max-width: 749px) {
  html {
    font-size: 60%; /* Base font size increased (was 58%) */
  }

  body {
    font-size: 1.75rem; /* Body text increased +17% (was 1.5rem) */
  }

  .section {
    padding: var(--lf-space-2xl) 0;
  }

  .section--tight {
    padding: var(--lf-space-lg) 0;
  }

  .section--loose {
    padding: var(--lf-space-3xl) 0;
  }

  .page-width {
    padding-left: var(--lf-space-md);
    padding-right: var(--lf-space-md);
  }

  .lf-grid--2,
  .lf-grid--3,
  .lf-grid--4 {
    grid-template-columns: 1fr;
    gap: var(--lf-space-md);
  }

  .button,
  .shopify-chunk__button,
  .btn {
    width: 100%;
    padding: 0.875rem 2rem;
    font-size: 0.8125rem;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  textarea {
    min-height: 120px;
  }
}

/* ============================
   PRINT STYLES
   ============================ */

@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

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

  a[href]:after {
    content: " (" attr(href) ")";
  }

  .button,
  .btn,
  .skip-to-content-link {
    display: none;
  }
}
