/* Dawn Theme CSS Variables — extracted from Shopify cryosystem.fr */
@font-face {
  font-family: Poppins;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrJJfecg.woff2') format('woff2');
}
@font-face {
  font-family: Poppins;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2') format('woff2');
}

:root {
  --color-base-text: 18, 18, 18;
  --color-shadow: 18, 18, 18;
  --color-base-background-1: 255, 255, 255;
  --color-base-background-2: 243, 243, 243;
  --color-base-solid-button-labels: 255, 255, 255;
  --color-base-outline-button-labels: 18, 18, 18;
  --color-base-accent-1: 18, 18, 18;
  --color-base-accent-2: 51, 79, 180;
  --color-button: 0, 85, 184;
  --color-foreground: 18, 18, 18;
  --color-background: 255, 255, 255;
  --gradient-base-background-1: #ffffff;
  --payment-terms-background-color: rgb(241 241 241);

  --font-body-family: Poppins, sans-serif;
  --font-body-style: normal;
  --font-body-weight: 400;
  --font-body-weight-bold: 700;
  --font-heading-family: Poppins, sans-serif;
  --font-heading-style: normal;
  --font-heading-weight: 400;
  --font-body-scale: 1.0;
  --font-heading-scale: 1.0;
  --font-Poppins: Poppins, sans-serif;

  --media-padding: 0px;
  --media-border-opacity: 0.05;
  --media-border-width: 1px;
  --media-radius: 0px;
  --media-shadow-opacity: 0.0;
  --media-shadow-horizontal-offset: 0px;
  --media-shadow-vertical-offset: 4px;
  --media-shadow-blur-radius: 5px;
  --media-shadow-visible: 0;

  --page-width: 140rem;
  --page-width-margin: 0rem;

  --product-card-image-padding: 0.0rem;
  --product-card-corner-radius: 0.0rem;
  --product-card-text-alignment: left;
  --product-card-border-width: 0.0rem;
  --product-card-border-opacity: 0.1;
  --product-card-shadow-opacity: 0.0;
  --product-card-shadow-visible: 0;

  --collection-card-image-padding: 0.0rem;
  --collection-card-corner-radius: 0.0rem;
  --collection-card-text-alignment: left;

  --badge-corner-radius: 4.0rem;

  --buttons-radius: 10px;
  --buttons-radius-outset: 11px;
  --buttons-border-width: 1px;
  --buttons-border-opacity: 1.0;
  --buttons-shadow-opacity: 0.0;
  --buttons-border-offset: 0.3px;

  --inputs-radius: 0px;
  --inputs-border-width: 1px;
  --inputs-border-opacity: 0.55;

  --spacing-sections-desktop: 0px;
  --spacing-sections-mobile: 0px;

  --grid-desktop-vertical-spacing: 8px;
  --grid-desktop-horizontal-spacing: 8px;
  --grid-mobile-vertical-spacing: 4px;
  --grid-mobile-horizontal-spacing: 4px;
}

body, .color-scheme-1, .color-scheme-2, .color-scheme-3, .color-scheme-4, .color-scheme-5 {
  color: rgba(var(--color-foreground), 0.75);
  background-color: rgb(var(--color-background));
}

*, *::before, *::after { box-sizing: inherit; }

html {
  box-sizing: border-box;
  font-size: calc(var(--font-body-scale) * 62.5%);
  height: 100%;
}

body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100%;
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0.06rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
}

@media screen and (min-width: 750px) {
  body { font-size: 1.6rem; }
}

/* Header inline custom */
.header .list-menu__item {
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins";
  color: black;
  transition: 0.2s ease;
  text-decoration: none;
}
.header .list-menu__item:hover {
  color: #0055b8;
  transition: 0.2s ease;
  text-decoration: none;
}

/* Header padding */
.header {
  padding: 2px 3rem 6px 3rem;
}

/* Sticky header wrapper — custom element handles sticky via JS */
sticky-header {
  display: block;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Mobile: hamburger visible, inline nav hidden (handled by base.css `.header__inline-menu { display:none }`) */
/* Desktop ≥990px: hamburger hidden, inline nav visible (handled by base.css `@media (min-width:990px)`) */
header-drawer {
  grid-area: left-icons;
  justify-self: start;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 990px) {
  header-drawer {
    display: none;
  }
  .header {
    padding-top: 4px;
    padding-bottom: 12px;
  }
}

/* Rich text section */
.rich-text--bg { background-color: #f1f1f1; }

/* Services inline */
.rowServices h3 { margin: 13px; }
.rowServices a { text-decoration: none; }

/* Button align */
.btn-align-middle {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* Footer */
.footer {
  margin-top: 0px;
}
.footer-padding {
  padding-top: 27px;
  padding-bottom: 27px;
}
@media screen and (min-width: 750px) {
  .footer-padding {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

/* Cart count bubble hidden (Dawn default - we use our own) */
.cart-count-bubble { display: none; }

/* Flash messages */
.flash-container {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.flash-alert {
  padding: 1.2rem 1.6rem;
  margin: 1rem 0;
  border-radius: var(--buttons-radius);
  font-family: var(--font-body-family);
  font-size: 1.4rem;
}
.flash-alert--success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.flash-alert--warning {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}
.flash-alert--error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.flash-alert__close {
  float: right;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  color: inherit;
  opacity: 0.7;
}
.flash-alert__close:hover { opacity: 1; }

/* Skip to content */
.skip-to-content-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
}
.skip-to-content-link:focus {
  top: 0;
}

/* Visually hidden */
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}

/* Price suffix */
.price-suffix {
  font-size: 0.85em;
  color: #555;
}
.price-note {
  margin-left: 6px;
  font-size: 0.85em;
  color: #555;
}

/* Page width utility */
.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media screen and (min-width: 750px) {
  .page-width { padding: 0 5rem; }
}

/* Gradient utility */
.gradient { background: var(--gradient-base-background-1); }
