/* Zmienne CSS dla klienta positivelyfit */
:root {
  /* Czcionka */
  --font-family-main: 'Sora', sans-serif;
  
  /* Podstawowe kolory (nadpisanie domyślnych) */
  --bg: #FFFFFF;
  --text-primary: rgba(0, 0, 0, 0.95);
  --text-secondary: rgba(0, 0, 0, 0.83);
  --accent: #63D9A0;
  --text-accent: #00582E;
  --splitting: #FFC524;
  --pop-bg: #F5F9FA;
  --error: #AA0B00;
  --success: #00582E;
  --pricing: #F5F9FA;
  
  /* Dodatkowe kolory specyficzne dla positivelyfit */
  --text-heading: rgba(0, 0, 0, 0.95);
  --text-tertiary: rgba(0, 0, 0, 0.70);
  --bg-secondary: #F5F9FA;
  --bg-pale-green: #C8F2DE;
  --bg-light-green: #63D9A0;
  --bg-yellow: #FFC524;
  --bg-coral: #FF8E4F;
  --bg-light-blue: #82E6E6;
  --stroke-primary: #C8F2DE;
  --stroke-secondary: rgba(0, 0, 0, 0.20);
  --on-dark-secondary: rgba(255, 255, 255, 0.70);
}

/* Typografia dla klienta positivelyfit */
.h1-positivelyfit {
  font-size: 2.25rem;
  line-height: 2.75rem;
	font-weight: 700;
}
.h2-positivelyfit {
  font-size: 1.75rem;
  line-height: 2.25rem;
	font-weight: 700;
}
.h3-positivelyfit {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-small-positivelyfit {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-medium-positivelyfit {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-big-positivelyfit {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-caption-positivelyfit {
  font-size: 0.75rem;
  line-height: 1.25rem;
}

/* Wersja desktopowa */
@media (min-width: 1024px) {
  .h1-positivelyfit {
    font-size: 4.571rem;
    line-height: 5.429rem;
  }
  .h2-positivelyfit {
    font-size: 3.714rem;
    line-height: 4.571rem;
  }
  .h3-positivelyfit {
    font-size: 2.286rem;
    line-height: 2.857rem;
  }
  .text-small-positivelyfit {
    font-size: 1.143rem;
    line-height: 1.714rem;
  }
  .text-medium-positivelyfit {
    font-size: 1.429rem;
    line-height: 2.286rem;
  }
  .text-big-positivelyfit {
    font-size: 1.714rem;
    line-height: 2.857rem;
  }
  .text-caption-positivelyfit {
    font-size: 1rem;
    line-height: 1.714rem;
  }
}

/* Style dla topbara klienta positivelyfit */
.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
  z-index: 50;
}

.topbar.animate {
  position: fixed;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(16px);
	border-bottom: 1px solid #ffffff;
}

/* Klasy kolorów tła dla tiles */
.bg-tile-yellow {
  background-color: var(--bg-yellow);
}

.bg-tile-coral {
  background-color: var(--bg-coral);
}

.bg-tile-light-blue {
  background-color: var(--bg-light-blue);
}

.bg-tile-light-green {
  background-color: var(--bg-light-green);
}

.bg-tile-pale-green {
  background-color: var(--bg-pale-green);
}

.custom-list li {
	background-size: 2rem;
	margin-top: 0.5rem;
	padding-left: 3rem;
}
.custom-list.check li {
	background-image: url(/assets/images/icon-check.svg);
}
.custom-list.error li {
	background-image: url(/assets/images/icon-error.svg);
}

.cookies-button {
	cursor: pointer;
	background-color: #000000;
	color: #ffffff;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.5rem;
	padding: 0.75rem 2rem;
	border-radius: 2rem;
	border: none;
	outline: none;
	transition: all 0.3s ease-in-out;
}
.cookie-info {
	background-color: var(--bg-pale-green);
	padding: 2rem 2rem;
	gap: 1rem;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	flex-direction: column;
}

/* Layout 3+2 dla tiles */
@media (min-width: 1024px) {
	.cookie-info {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.custom-list li {
		background-position: left 0.125rem;
	}

  .tiles-3-2-layout {
    grid-template-columns: repeat(6, 1fr);
  }

  .tiles-3-2-layout > div:nth-child(1),
  .tiles-3-2-layout > div:nth-child(2),
  .tiles-3-2-layout > div:nth-child(3) {
    grid-column: span 2;
  }

  .tiles-3-2-layout > div:nth-child(4),
  .tiles-3-2-layout > div:nth-child(5) {
    grid-column: span 3;
  }
}
