/** Shopify CDN: Minification failed

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

**/
/* Odmiana Wnętrz - Global Styles */
/* Ten plik jest ładowany globalnie na wszystkich stronach przez theme.liquid */

/* ===============================================
   CRITICAL FIX: Override Dawn's 62.5% base font-size
   =============================================== */
/* Dawn ustawia html { font-size: 62.5% } co sprawia że 1rem = 10px zamiast 16px */
html {
  font-size: 100% !important;
}

body {
  font-size: 16px !important;
}

/* ===============================================
   CSS VARIABLES
   =============================================== */
:root {
  --sand: #F5F0E8;
  --sand-dark: #EDE6D6;
  --clay: #C4956A;
  --clay-dark: #A07550;
  --blue: #4A7C9E;
  --blue-dark: #3D6B7D;
  --charcoal: #2C2C2A;
  --text-mid: #6B6860;
  --text-light: #8A8780;
  --white: #FDFCFA;
  --accent: #C4956A;
  --green: #3D5A47;
}

/* ===============================================
   FONTS IMPORT
   =============================================== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=Playfair+Display:ital,wght@0,400;0,500;1,400&display=swap');

/* ===============================================
   GLOBAL BOX SIZING
   =============================================== */
* {
  box-sizing: border-box;
}

/* ===============================================
   CSS ICONS - używają currentColor
   =============================================== */
.icon-clock,
.icon-palette,
.icon-edit,
.icon-list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 1.2em;
  height: 1.2em;
}

.icon-clock::before {
  content: '';
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.icon-clock::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 0.35em;
  background: currentColor;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
}

.icon-palette::before {
  content: '';
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.icon-palette::after {
  content: '';
  position: absolute;
  width: 0.3em;
  height: 0.3em;
  background: currentColor;
  border-radius: 50%;
  top: 30%;
  left: 30%;
}

.icon-edit::before {
  content: '';
  width: 0.7em;
  height: 0.7em;
  border: 2px solid currentColor;
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
  margin-bottom: -0.2em;
}

.icon-list::before {
  content: '';
  width: 1em;
  height: 0.8em;
  background: linear-gradient(
    currentColor 2px,
    transparent 2px,
    transparent 0.35em,
    currentColor 0.35em,
    currentColor calc(0.35em + 2px),
    transparent calc(0.35em + 2px),
    transparent calc(0.7em),
    currentColor calc(0.7em)
  );
}

/* ===============================================
   GLOBAL ODMIANA SECTIONS
   =============================================== */
.odmiana-section {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 16px;
  max-width: 100%;
  width: 100%;
}

.odmiana-section h1,
.odmiana-section h2,
.odmiana-section h3 {
  font-family: 'Playfair Display', Georgia, serif;
}

/* ===============================================
   GLOBAL BUTTONS
   =============================================== */
.btn-primary-odmiana {
  background: var(--blue);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}

.btn-primary-odmiana:hover {
  background: var(--clay);
  transform: translateY(-1px);
  color: var(--white);
}

.btn-ghost-odmiana {
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost-odmiana:hover {
  color: var(--clay);
  border-color: var(--clay);
}

/* ===============================================
   SECTION UTILITIES
   =============================================== */
.section-odmiana {
  padding: 7rem 4rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.section-label-odmiana {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: center;
}

.section-title-odmiana {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: 600px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-sub-odmiana {
  color: var(--text-mid);
  max-width: 480px;
  margin-bottom: 4rem;
  font-size: 1.02rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ===============================================
   ANIMATIONS
   =============================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================================
   RESPONSIVE
   =============================================== */
@media (max-width: 900px) {
  .section-odmiana {
    padding: 4rem 1.5rem;
  }
}
