/** Shopify CDN: Minification failed

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

**/
/* Cache le header Dawn natif */
.shopify-section-group-header-group,
header.shopify-section,
#shopify-section-header {
  display: none !important;
}

:root {
  --rl-green: #394838;
  --rl-white: #ffffff;
  --rl-gray: #f7f8f6;
  --rl-text: #1a1f19;
}

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

.rl-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.rl-header.scrolled {
  border-bottom-color: #e8ebe8;
  box-shadow: 0 2px 20px rgba(57,72,56,0.08);
}

.rl-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.rl-header__logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.rl-header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.rl-header__link {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--rl-green);
  text-decoration: none;
  opacity: 0.65;
  transition: all 0.25s ease;
  letter-spacing: 0.03em;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

.rl-header__link:hover {
  opacity: 1;
  border-bottom-color: #394838;
}

.rl-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.rl-header__cta {
  padding: 10px 24px;
  background: var(--rl-green);
  color: white;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.rl-header__cta:hover {
  background: #2a3629;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(57,72,56,0.25);
}

.rl-header__cart {
  color: var(--rl-green);
  text-decoration: none;
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.rl-header__cart:hover { opacity: 1; }

.rl-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.rl-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--rl-green);
  border-radius: 2px;
}

.rl-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 40px 24px;
  gap: 0;
  background: white;
  border-top: 1px solid #e8ebe8;
}

.rl-mobile-menu.open { display: flex; }

.rl-mobile-menu a {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--rl-green);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  opacity: 0.8;
}

.rl-mobile-cta {
  color: var(--rl-green) !important;
  font-weight: 700 !important;
  opacity: 1 !important;
  border-bottom: none !important;
}

.rl-product-page,
.rl-hero,
.content-for-layout,
main#MainContent {
  padding-top: 72px;
}

@media screen and (max-width: 768px) {
  .rl-header__nav { display: none; }
  .rl-header__cta { display: none; }
  .rl-header__burger { display: flex; }
  .rl-header__inner { padding: 0 20px; }
}
