/** Shopify CDN: Minification failed

Line 21:18 Expected identifier but found whitespace
Line 21:20 Unexpected "{"
Line 21:30 Expected ":"
Line 22:20 Expected identifier but found whitespace
Line 22:22 Unexpected "{"
Line 22:32 Expected ":"
Line 23:13 Expected identifier but found whitespace
Line 23:15 Unexpected "{"
Line 23:25 Expected ":"
Line 24:17 Expected identifier but found whitespace
... and 20 more hidden warnings

**/
/* ================================================================
   DARNA HOME — CSS Global
   ================================================================ */

:root {
  --color-primary: {{ settings.color_primary | default: '#c85a3a' }};
  --color-secondary: {{ settings.color_secondary | default: '#c9a876' }};
  --color-bg: {{ settings.color_bg | default: '#fbf8f3' }};
  --color-bg-alt: {{ settings.color_bg_alt | default: '#e8dcc8' }};
  --color-text: {{ settings.color_text | default: '#3d3d3d' }};
  --color-text-light: #7a6f65;
  --color-brun: #8b5a3c;
  --color-footer-bg: {{ settings.color_footer_bg | default: '#252525' }};
  --font-heading: {{ settings.font_heading.family }}, {{ settings.font_heading.fallback_families }};
  --font-body: {{ settings.font_body.family }}, {{ settings.font_body.fallback_families }};
  --page-width: 1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--color-text-light);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.2;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ── BOUTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 3.6rem;
  font-family: var(--font-body);
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  border-radius: 0;
  line-height: 1.4;
}
.btn--primary {
  background: var(--color-primary);
  color: var(--color-bg);
  border-color: var(--color-primary);
}
.btn--primary:hover { background: var(--color-brun); border-color: var(--color-brun); }
.btn--ghost {
  background: transparent;
  color: var(--color-bg);
  border-color: rgba(251,248,243,0.5);
}
.btn--ghost:hover { border-color: var(--color-bg); background: rgba(251,248,243,0.08); }
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover { background: var(--color-primary); color: var(--color-bg); }
.btn--full { width: 100%; }

/* ── PRODUCT CARD ── */
.product-card { position: relative; }
.product-card__link { text-decoration: none; display: block; }
.product-card__image-wrapper {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-bg-alt);
  margin-bottom: 1.6rem;
}
.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}
.product-card__image--secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.product-card:hover .product-card__image--primary { transform: scale(1.05); }
.product-card:hover .product-card__image--secondary { opacity: 1; transform: scale(1.05); }
.product-card__image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--color-bg-alt), var(--color-secondary));
  display: flex; align-items: center; justify-content: center;
}
.product-card__image-placeholder svg { width: 40%; opacity: 0.3; fill: var(--color-text); }

.product-card__badge {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  background: var(--color-primary);
  color: white;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  z-index: 2;
}
.product-card__badge--sold-out { background: var(--color-text-light); top: auto; }

.product-card__quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 3;
}
.product-card:hover .product-card__quick-add { transform: translateY(0); }
.product-card__quick-add .btn {
  font-size: 1.1rem;
  padding: 1.2rem;
}

.product-card__info { text-align: left; }
.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.3rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.product-card:hover .product-card__title { color: var(--color-primary); }
.product-card__vendor {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: 0.6rem;
}

/* ── PRICE ── */
.price { font-family: var(--font-heading); }
.price__regular .price-item,
.price-item--regular {
  font-size: 1.7rem;
  color: var(--color-brun);
  letter-spacing: 0.02em;
}
.price--on-sale .price-item--sale { color: var(--color-primary); font-size: 1.7rem; }
.price--on-sale .price-item--compare {
  color: var(--color-text-light);
  text-decoration: line-through;
  margin-left: 0.8rem;
  font-size: 1.4rem;
}

/* ── BREADCRUMB ── */
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  list-style: none;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-text-light);
  letter-spacing: 0.06em;
}
.breadcrumb__item:not(:last-child)::after { content: '/'; margin-left: 0.8rem; color: var(--color-secondary); }
.breadcrumb__link { color: var(--color-text-light); text-decoration: none; transition: color 0.2s; }
.breadcrumb__link:hover { color: var(--color-primary); }
.breadcrumb__item--current { color: var(--color-text); }

/* ── PAGINATION ── */
.pagination__list {
  display: flex;
  gap: 0.6rem;
  list-style: none;
  align-items: center;
}
.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  height: 4rem;
  padding: 0 1.2rem;
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--color-text);
  text-decoration: none;
  border: 1px solid rgba(201,168,118,0.3);
  transition: all 0.2s;
}
.pagination__link:hover { border-color: var(--color-secondary); }
.pagination__link--current {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}
.pagination__link--ellipsis { border: none; }

/* ── UTILITAIRES ── */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.skip-to-content {
  position: absolute;
  top: -100px; left: 0;
  background: var(--color-primary);
  color: white;
  padding: 1rem 2rem;
  z-index: 1000;
}
.skip-to-content:focus { top: 0; }

.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 4rem;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-secondary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-brun); }

::selection { background: var(--color-secondary); color: var(--color-bg); }

@media (max-width: 749px) {
  html { font-size: 58%; }
  .page-width { padding: 0 2rem; }
  .btn { padding: 1.3rem 2.8rem; }
}
