/** Shopify CDN: Minification failed

Line 16:0 Unexpected "<"
Line 23:10 Unexpected "{"
Line 23:22 Expected ":"
Line 23:25 Unexpected "<"
Line 25:3 Expected identifier but found "%"
Line 26:2 Unexpected "{"
Line 26:3 Unexpected "{"
Line 26:23 Expected ":"
Line 27:2 Unexpected "<"
Line 29:3 Unexpected "{"
... and 20 more hidden warnings

**/
<!doctype html>
<html class="js" lang="{{ request.locale.iso_code }}">
<head>
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width,initial-scale=1">
  <link rel="canonical" href="{{ canonical_url }}">
  <title>{{ page_title }}</title>

  {% render 'meta-tags' %}
  {{ content_for_header }}
  <script src="{{ 'global.js' | asset_url }}" defer></script>

  {{ 'base.css' | asset_url | stylesheet_tag }}
  {% if settings.cart_type == 'drawer' %}
    {{ 'component-cart-drawer.css' | asset_url | stylesheet_tag }}
  {% endif %}

  {% style %}
  /* ---------------------- RESET ---------------------- */
  body { margin: 0; font-family: sans-serif; }
  a { text-decoration: none; color: inherit; }
  svg { max-width: 100%; height: auto; }

  /* ---------------------- LOGO ---------------------- */
  .paradis-logo {
    font-family: "Didot", serif;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    display: inline-block;
  }
  .paradis-logo .light {
    font-weight: 300;
    letter-spacing: 0.18rem;
  }

  /* ---------------------- HEADER LUXE ---------------------- */

  /* Conteneur header */
  .header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }

  /* Logo centré */
  .header__heading, 
  .header__heading-link,
  .paradis-logo {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    text-align: center !important;
  }

  /* Menu sous le logo */
  .header__inline-menu {
    margin-top: 60px !important;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .list-menu--inline {
    display: flex !important;
    justify-content: center !important;
    gap: 30px !important;
  }

  .list-menu__item--link {
    font-size: 15px;
    letter-spacing: 1.5px;
  }

  /* Icônes */
  .header__icons {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .header__icon svg { width: 22px; height: 22px; }

  @media (max-width: 750px) {
    .paradis-logo { font-size: 1.8rem !important; }
    .header__inline-menu { margin-top: 40px; }
  }
  {% endstyle %}
</head>

<body class="gradient">
  <a class="skip-to-content-link button visually-hidden" href="#MainContent">Skip</a>

  {% sections 'header-group' %}

  <main id="MainContent" class="content-for-layout" role="main" tabindex="-1">
    {{ content_for_layout }}
  </main>

  {% sections 'footer-group' %}

</body>
</html>
