/*PRZYCISK CTA BLOG */

.blog-cta {
  display: inline-block;
  background-color: #000;     /* czarny */
  color: #fff;               /* biały tekst */
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 999px;      /* pełne zaokrąglenie */
  transition: background-color 0.3s ease, transform 0.2s ease;
  float: right;              /* wyrównanie do prawej */
}

.blog-cta:hover {
  background-color: #333;    /* delikatne rozjaśnienie */
  transform: translateY(-2px);
}


/* CSS BUTTON CTA BLOG */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  margin: 1.5em 0;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background-color: #000;
  border: none;
  border-radius: 999px;        /* mocno zaokrąglone rogi */
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease-in-out, transform .15s ease-in-out;
}

.cta-button:hover {
  background-color: #222;      /* delikatne rozjaśnienie */
  color: #fff;
  transform: translateY(-1px);
}
#blog-item .blog-item_sub .cta-button,
#blog-item .blog-item_sub .cta-button:visited,
#blog-item .blog-item_sub .cta-button:hover,
#blog-item .blog-item_sub .cta-button:focus {
  text-decoration: none !important;
}


/* =========================================================
   SWATCHE – uniwersalnie (PRODUCT + CATEGORY)
   Sterujesz rozmiarem: --sw
   ========================================================= */

/* 1) Lista swatchy -> siatka. 
   Działa wszędzie, gdzie występuje blok wersji/kolorów. */
.projector_versions .projector_versions__sub,
[class*="product"] [class*="versions"] .projector_versions__sub{
  --sw: 40px; /* <<< rozmiar koła na karcie produktu */
  display: grid !important;
  grid-template-columns: repeat(auto-fill, var(--sw)) !important;
  gap: 8px !important;
  align-items: start !important;
}

/* (opcjonalnie) w listingu daj mniejsze koła, żeby nie rozpychać kart */
.listing, .category, .products, .js__products, .projector_list, .is_listing {
  /* mniejsze sloty na kartach produktu w kategoriach */
}
.listing .projector_versions .projector_versions__sub,
.category .projector_versions .projector_versions__sub,
.products .projector_versions .projector_versions__sub,
.js__products .projector_versions .projector_versions__sub,
.projector_list .projector_versions .projector_versions__sub,
.is_listing .projector_versions .projector_versions__sub{
  --sw: 28px;             /* np. 28px w listingu */
  gap: 6px !important;
}

/* 2) Pojedynczy „kafelek” = dokładnie rozmiar slotu */
.projector_versions .projector_versions__item,
[class*="product"] [class*="versions"] .projector_versions__item{
  width: var(--sw) !important;
  height: var(--sw) !important;
  min-width: 0 !important;
  min-height: 0 !important;
  display: grid !important;
  place-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  box-shadow: none !important;
  line-height: 0 !important;
  text-decoration: none !important;
}

/* 3) Krążek (wrapper obrazka) – baza dla tooltipa + ring */
.projector_versions .projector_versions__gfx,
[class*="product"] [class*="versions"] .projector_versions__gfx{
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  overflow: visible !important; /* tooltip ma wyjść nad koło */
  border: 1px solid #fff !important;
  outline: 1px solid #d7d7d7 !important;
}

/* 4) Zgaś pseudo-elementy „fasolki” jeśli występują */
.projector_versions .projector_versions__item::before,
.projector_versions .projector_versions__item::after,
.projector_versions .projector_versions__gfx::before,
.projector_versions .projector_versions__gfx::after{
  content: none !important;
}

/* 5) HARD OVERRIDE na IMG – kasuje wszelkie 76×76, min/max itp. */
.projector_versions .projector_versions__item[data-has-gfx="true"] > .projector_versions__gfx > img,
[class*="product"] [class*="versions"] .projector_versions__item[data-has-gfx="true"] > .projector_versions__gfx > img{
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  min-width: 0 !important;
  min-height: 0 !important;
  display: block !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* 6 TOOLTIP – kompaktowy i wyśrodkowany nad swatchem */
.projector_versions .projector_versions__hover-text{
  position: absolute !important;
  left: 50% !important;
  top: -36px !important;                  /* nad środkiem kółka */
  transform: translateX(-50%) !important;

  max-width: 120px !important;            /* ograniczamy szerokość */
  background: rgba(0,0,0,.9) !important;
  color: #fff !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
  padding: 4px 8px !important;            /* więcej miejsca na tekst */
  border-radius: 4px !important;
  white-space: normal !important;         /* zawijanie tekstu */
  text-align: center !important;

  z-index: 1000 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity .15s ease-in-out !important;
}

/* strzałka pod tooltipem – celuje w środek kółka */
.projector_versions .projector_versions__hover-text::after{
  content: "" !important;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border: 6px solid transparent !important;
  border-top-color: rgba(0,0,0,.9) !important;
}
/* Wyłączamy strzałkę z motywu */
.projector_versions .projector_versions__hover-text::before{
  content: none !important;
}

/* pokazuj tooltip przy hover */
.projector_versions .projector_versions__item:hover .projector_versions__hover-text,
.projector_versions .projector_versions__gfx:hover .projector_versions__hover-text{
  opacity: 1 !important;
}

/* 7) Ukryj podpisy, jeśli niepotrzebne w siatce */
.projector_versions .projector_versions__name{ display: none !important; }

/* 8) Ring aktywny/hover */
.projector_versions .projector_versions__item.--selected .projector_versions__gfx,
.projector_versions .projector_versions__item:where(:hover,:focus-visible) .projector_versions__gfx{
  outline-color: #000 !important;
  outline-width: 2px !important;
}

/* 9) Mobile – drobne dostrojenie */
@media (max-width: 768px){
  .projector_versions .projector_versions__sub{ --sw: 34px; gap: 7px !important; }
  .listing .projector_versions .projector_versions__sub,
  .category .projector_versions .projector_versions__sub,
  .products .projector_versions .projector_versions__sub{ --sw: 26px; gap: 6px !important; }
}


/* 1) Karta: nic nie wysuwa się na hover, warianty mają być częścią kafla */
#search .product { overflow: visible !important; }

/* 2) Detale (zawierają .product__versions) – stałe, bez absolute */
#search .product .product__details{
  display: block !important;
  position: static !important;
  padding-top: 8px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  z-index: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* 3) Pasek wariantów: zawsze widoczny, wiersz z zawijaniem */
#search .product .product__versions{
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

/* 4) Pojedynczy wariant – KOŁO (spójne z kartą produktu) */
#search .product .product__version{
  width: 18px; height: 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-sizing: border-box;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  transition: transform .12s ease, border-color .12s ease;
}
#search .product .product__version img{
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  max-height: none !important;
}
#search .product .product__version:hover,
#search .product .product__version:focus-visible{
  transform: scale(1.08);
  border-color: #d1d5db;
  outline: none;
}

/* 5) Pastylka “+N” */
#search .product .product__more{
  display: inline-flex;
  align-items: center; justify-content: center;
  height: 18px; min-width: 22px;
  padding: 0 6px; margin: 0;
  border-radius: 999px;
  font-size: 11px; line-height: 1;
  background: #f3f4f6; color: #374151;
  border: 1px solid #e5e7eb;
}

/* 6) Wyłącz stare zachowanie na hover (ramka może zostać) */
@media (min-width: 979px){
  #search .product:hover .product__details{ display: block !important; }
}



/* ======================================
   WallDecor Mokotów - Kompletny CSS z wszystkimi zmianami
   ====================================== */

:root {
  /* Colors */
  --color-primary: #1E1E1E;
  --color-secondary: #6B6B62; 
  --color-accent: #B7B7B1;
  --color-light: #E4DCD1;
  --color-white: #FFFFFF;
  --color-gray-bg: #F8F8F8;
  --color-text-primary: #1E1E1E;
  --color-text-secondary: #666;
  
  /* Typography - poprawione wielkości czcionek */
  --heading-xl: 3.5rem;
  --heading-lg: 2.5rem;
  --heading-md: 1.6rem;
  --heading-sm: 1.4rem;
  --font-weight-bold: 700;
  --font-weight-semibold: 600;
  --font-weight-medium: 500;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-max-width: 1300px;
  --container-padding: 0 2rem;
  --gap-large: 4rem;
  --gap-medium: 2rem;
  --gap-small: 1rem;
  
  /* Effects */
  --border-radius: 8px;
  --shadow-light: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-medium: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 25px rgba(0,0,0,0.15);
  --transition-base: 0.3s ease;
}

/* ======================================
   BASE COMPONENTS
   ====================================== */

.mokotow-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.mokotow-section {
  padding: var(--section-padding);
}

.mokotow-section--white { background: var(--color-white); }
.mokotow-section--light { background: var(--color-gray-bg); }
.mokotow-section--dark { background: var(--color-secondary); color: var(--color-white); }
.mokotow-section--accent { background: var(--color-accent); color: var(--color-white); }

/* ======================================
   TYPOGRAPHY - POPRAWIONE WIELKOŚCI
   ====================================== */

.mokotow-heading {
  font-family: var(--font-family-headline, Arial, sans-serif);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  line-height: 1.1;
}

.mokotow-heading--xl {
  font-size: var(--heading-xl);
  margin-bottom: 2rem;
}

.mokotow-heading--lg {
  font-size: var(--heading-lg);
  margin-bottom: 3rem;
}

.mokotow-heading--md {
  font-size: var(--heading-md);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
}

.mokotow-heading--sm {
  font-size: var(--heading-sm);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.5rem;
}

.mokotow-section--dark .mokotow-heading,
.mokotow-section--accent .mokotow-heading {
  color: var(--color-white);
}

/* GŁÓWNE OPISY - zwiększone z 1rem na 1.3rem */
.mokotow-description {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

.mokotow-section--dark .mokotow-description,
.mokotow-section--accent .mokotow-description {
  color: var(--color-white);
}

/* ======================================
   LAYOUT COMPONENTS
   ====================================== */

.mokotow-grid {
  display: grid;
  gap: var(--gap-medium);
}

.mokotow-grid--2-col { 
  grid-template-columns: 1fr 1fr; 
}

.mokotow-grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.mokotow-grid--hero {
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-large);
  align-items: center;
}

/* ======================================
   CARD COMPONENTS
   ====================================== */

.mokotow-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  overflow: hidden;
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.mokotow-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.mokotow-card__image {
  width: 100%;
  height: 200px;
  background: var(--color-gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.mokotow-card__image--tall { 
  height: 250px; 
}

.mokotow-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-base);
}

.mokotow-card:hover .mokotow-card-image {
  transform: scale(1.05);
}

.mokotow-card__content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.mokotow-card__content--large {
  padding: 2rem;
}

/* OPISY W KARTACH - zwiększone do 1.3rem */
.mokotow-card__content p {
  margin-bottom: 0;
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
  font-size: 1.3rem;
}

/* ======================================
   GALLERY COMPONENT
   ====================================== */

.mokotow-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-small);
}

.mokotow-gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-base);
}

.mokotow-gallery-item:hover {
  transform: scale(1.02);
}

.mokotow-gallery-item--square { aspect-ratio: 1; }
.mokotow-gallery-item--landscape { aspect-ratio: 4/3; }

.mokotow-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mokotow-gallery-item:hover .mokotow-gallery-overlay {
  opacity: 1;
}

.mokotow-gallery-overlay i {
  color: var(--color-white);
  font-size: 2rem;
}

/* ======================================
   INTERACTIVE ELEMENTS - POPRAWIONE CZCIONKI
   ====================================== */

/* LINKI - zwiększone z 1.15rem na 1.3rem */
.mokotow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  font-size: 1.3rem;
  transition: color var(--transition-base);
}

.mokotow-link:hover {
  color: var(--color-primary);
}

.mokotow-link i {
  font-size: 0.8rem;
  transition: transform var(--transition-base);
}

.mokotow-link:hover i {
  transform: translateX(3px);
}

/* PRZYCISKI - zwiększone z 1rem na 1.2rem */
.mokotow-btn,
.btn {
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: var(--font-weight-medium);
  font-size: 1.2rem;
  text-decoration: none;
  transition: all var(--transition-base);
  border: 1px solid;
  cursor: pointer;
  display: inline-block;
}

.mokotow-btn--white,
.btn.--solid {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.mokotow-btn--white:hover,
.btn.--solid:hover {
  background: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn.--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn.--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* DUŻE PRZYCISKI - zwiększone z 1.1rem na 1.4rem */
.btn.--large {
  padding: 1.25rem 2.5rem;
  font-size: 1.4rem;
}

/* ======================================
   UTILITY COMPONENTS - POPRAWIONE CZCIONKI
   ====================================== */

.mokotow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

/* TAGI - zwiększone z 0.85rem na 1.1rem */
.mokotow-tag {
  background: var(--color-light);
  color: var(--color-primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  transition: all var(--transition-base);
}

.mokotow-tag:hover {
  background: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.mokotow-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

/* LISTA FUNKCJI - zmniejszone z 1.3rem na 1.2rem */
.mokotow-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: var(--color-text-secondary);
}

.mokotow-features li:before {
  content: '✓';
  color: var(--color-secondary);
  font-weight: bold;
  font-size: 1rem;
}

/* PLACEHOLDERY - zwiększone z 0.9rem na 1.1rem */
.mokotow-placeholder {
  color: #999;
  text-align: center;
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* ======================================
   HERO SPECIFIC - POPRAWIONE CZCIONKI
   ====================================== */

/* HERO DESCRIPTION - zwiększone z 1.1rem na 1.5rem */
.mokotow-hero-description {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: var(--color-text-secondary);
}

.mokotow-hero-buttons {
  display: flex;
  gap: var(--gap-small);
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* SERVICE AREAS - zwiększone z 0.95rem na 1.2rem */
.service-areas {
  padding: 1rem 0;
  font-size: 1.2rem;
  color: var(--color-text-secondary);
}

.service-areas strong {
  color: var(--color-primary);
}

.mokotow-video-container {
  position: relative;
  width: 100%;
  height: 315px;
  background: var(--color-gray-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.mokotow-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-accent) 100%);
  color: var(--color-secondary);
  font-size: 1.1rem;
}

/* ======================================
   REVIEWS SECTION - POPRAWIONE CZCIONKI
   ====================================== */

.reviews-section {
  text-align: center;
  margin: 2rem 0;
}

.rating {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* OPINIE - zwiększone do 1.3rem */
.sample-reviews blockquote {
  background: var(--color-gray-bg);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin: 1rem 0;
  border-left: 4px solid var(--color-secondary);
}

.sample-reviews blockquote p {
  font-size: 1.3rem;
  line-height: 1.6;
}

.sample-reviews cite {
  font-size: 1.1rem;
}

/* ======================================
   SLIDER PRODUCENTÓW - KOMPLETNY CSS
   ====================================== */

.producers-slider-wrapper {
    position: relative;
    margin: 0 -2rem;
}

.producers-slider {
    overflow: hidden;
    padding: 2rem 2rem 3rem;
}

.producers-slider .swiper-wrapper {
    align-items: center;
}

.producer-item {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    background: #FFFFFF !important;
    border: 1px solid transparent;
    height: 180px;
    width: 160px;
    flex-shrink: 0;
}

.producer-item:hover {
    transform: translateY(-3px);
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.producer-logo {
    height: 80px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: #FFFFFF !important;
    border-radius: 4px;
}

.producer-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.producer-item:hover .producer-logo img {
    opacity: 1;
    transform: scale(1.03);
}

/* NAZWY PRODUCENTÓW - zwiększone z 0.9rem na 1.1rem */
.producer-name {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    color: #333;
    line-height: 1.3;
}

/* Strzałki slidera - NAPRAWIONE */
.producers-slider .swiper-button-prev,
.producers-slider .swiper-button-next {
    width: 45px;
    height: 45px;
    margin-top: -22.5px;
    background: #FFFFFF;
    color: #6B6B62;
    border: 1px solid #6B6B62;
    border-radius: 4px !important;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10;
    cursor: pointer;
    font-size: 1.43em;
}

.producers-slider .swiper-button-prev:hover,
.producers-slider .swiper-button-next:hover {
    border: 1px solid #1E1E1E;
    background-color: #1E1E1E;
    color: #ffffff;
}

.producers-slider .swiper-button-prev {
    left: 1rem;
}

.producers-slider .swiper-button-next {
    right: 1rem;
}

/* Wyłącz domyślne strzałki Swiper */
.producers-slider .swiper-button-prev::after,
.producers-slider .swiper-button-next::after {
    display: none !important;
}

/* Ikony w strzałkach */
.producers-slider .swiper-button-prev i {
    transform: rotate(180deg);
    font-size: 2.5rem;
}

.producers-slider .swiper-button-next i {
    font-size: 2.5rem;
    transform: rotate(0deg);
}

/* Obsługa ikon gdy FontAwesome nie jest dostępny */
.producers-slider .swiper-button-prev i::before {
    content: '‹';
    font-family: Arial, sans-serif;
    font-size: 24px;
}

.producers-slider .swiper-button-next i::before {
    content: '›';
    font-family: Arial, sans-serif;
    font-size: 24px;
}

/* DUŻE LINKI - zwiększone z 1.2rem na 1.4rem */
.mokotow-link-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    border: 2px solid #333;
    border-radius: 8px;
}

.mokotow-link-large:hover {
    background: #333;
    color: white;
    gap: 1.25rem;
}

.mokotow-link-large i {
    transition: all 0.3s ease;
}

/* ======================================
   CONTACT SECTION - POPRAWIONE CZCIONKI
   ====================================== */

.mokotow-contact-layout {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem;
    min-height: 500px;
    align-items: stretch;
}

.contact-heading {
    color: var(--color-white);
    margin-bottom: 2.5rem;
    line-height: 1.2;
    font-size: 3rem;
}

.mokotow-contact-details {
    margin: 0 0 3rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    color: var(--color-white);
}

.contact-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-icon i {
    font-size: 0.9rem;
    color: var(--color-white);
}

.contact-content {
    flex: 1;
    line-height: 1.5;
}

/* LINKI KONTAKTOWE - zwiększone z 1.1rem na 1.4rem */
.contact-link {
    color: #FFFFFF !important;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact-link:hover {
    color: #E4DCD1 !important;
    text-decoration: underline;
}

.mokotow-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* PRZYCISKI KONTAKTOWE - zwiększone z 1rem na 1.3rem */
.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 1.3rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
    min-height: 52px;
    position: relative;
    overflow: hidden;
}

.contact-btn--primary {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.contact-btn--primary:hover {
    background: var(--color-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.contact-btn--secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.contact-btn--secondary:hover {
    background: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.contact-btn i {
    font-size: 1.1rem;
    transition: var(--transition-base);
}

.contact-btn:hover i {
    transform: scale(1.1);
}

.mokotow-contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
    position: relative;
}

/* ======================================
   RESPONSIVE DESIGN
   ====================================== */

@media (max-width: 1024px) {
  .mokotow-gallery { 
    grid-template-columns: repeat(3, 1fr); 
  }
  
  .mokotow-grid--auto {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --heading-xl: 2.5rem;
    --heading-lg: 2rem;
    --section-padding: 3rem 0;
    --gap-large: 2rem;
  }
  
  .mokotow-grid--hero { 
    grid-template-columns: 1fr; 
    gap: var(--gap-medium);
  }
  
  .mokotow-grid--2-col { 
    grid-template-columns: 1fr; 
  }
  
  .mokotow-grid--auto {
    grid-template-columns: 1fr;
  }
  
  .mokotow-gallery { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .mokotow-hero-buttons { 
    justify-content: center; 
  }
  
  .mokotow-video-container { 
    height: 250px; 
  }
  
  .mokotow-tags { 
    gap: 0.25rem; 
  }
  
  /* TAGI NA MOBILE - zwiększone z 0.8rem na 1.2rem */
  .mokotow-tag { 
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }
  
  .mokotow-card__image {
    height: 180px;
  }
  
  .mokotow-card__content {
    padding: 1.25rem;
  }

  /* RESPONSYWNOŚĆ KONTAKTU */
  .mokotow-contact-layout {
      grid-template-columns: 1fr !important;
      gap: 2.5rem;
  }
  
  .mokotow-contact-info {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 2rem 0;
  }

  /* ======================================
     MOBILE - WIĘKSZE CZCIONKI
   ====================================== */
  
  /* Hero description - większy na mobile */
  .mokotow-hero-description {
    font-size: 1.6rem;
  }
  
  /* Główne opisy */
  .mokotow-description {
    font-size: 1.4rem;
  }
  
  /* Opisy w kartach */
  .mokotow-card__content p {
    font-size: 1.4rem;
  }
  
  /* Service areas */
  .service-areas {
    font-size: 1.3rem;
  }
  
  /* Lista funkcji */
  .mokotow-features li {
    font-size: 1.3rem;
  }
  
  /* Placeholdery */
  .mokotow-placeholder {
    font-size: 1.2rem;
  }
  
  /* Linki */
  .mokotow-link {
    font-size: 1.4rem;
  }
  
  /* Przyciski */
  .mokotow-btn,
  .btn {
    font-size: 1.3rem;
  }
  
  /* Duże przyciski */
  .btn.--large {
    font-size: 1.5rem;
  }
  
  /* Duże linki */
  .mokotow-link-large {
    font-size: 1.5rem;
  }
  
  /* Nazwy producentów */
  .producer-name {
    font-size: 1.2rem;
  }
  
  /* Kontakt */
  .contact-link {
    font-size: 1.5rem;
  }
  
  .contact-btn {
    font-size: 1.4rem;
  }
  
  /* Opinie */
  .sample-reviews blockquote p {
    font-size: 1.4rem;
  }
  
  .sample-reviews cite {
    font-size: 1.2rem;
  }

  /* ======================================
   RESPONSYWNOŚĆ SLIDERA NA MOBILE
   ====================================== */
   
  .producers-slider-wrapper {
      margin: 0 -1rem;
  }
  
  .producers-slider {
      padding: 1.5rem 1rem 2rem;
  }
  
  .producer-item {
      height: 140px;
      width: 120px;
      padding: 1rem 0.5rem;
  }
  
  .producer-logo {
      height: 60px;
      width: 90px;
      margin-bottom: 0.75rem;
  }
  
  .producers-slider .swiper-button-prev,
  .producers-slider .swiper-button-next {
      width: 36px;
      height: 36px;
      margin-top: -18px;
  }
  
  .producers-slider .swiper-button-prev i,
  .producers-slider .swiper-button-next i {
      font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .mokotow-gallery { 
    grid-template-columns: repeat(2, 1fr); 
  }
}

/* ====== BAR: layout ====== */
.info-bar{
  --bar-h: 40px;
  --gap: 18px;
  --link-op: .85;

  display:flex;
  align-items:center;
  gap: var(--gap);
  min-height: var(--bar-h);
  padding: 6px 16px;
  background: var(--background-color, #2f2f2f);
  color: var(--font-color, #fff);
  font-size: 14px;
  line-height: 1;
}

/* trzy strefy */
.info-bar__left,
.info-bar__right{
  display:flex;
  align-items:center;
  gap: var(--gap);
  white-space: nowrap;
}

.info-bar__center{
  flex: 1 1 auto;
  display:flex;
  justify-content:center;
  align-items:center;
  min-height: var(--bar-h);
  overflow:hidden;
}

/* linki */
.info-bar a.info-bar__link{
  color: inherit;
  text-decoration:none;
  opacity: var(--link-op);
  transition: opacity .2s ease;
}
.info-bar a.info-bar__link:hover{ opacity: 1; }

/* ====== Showroom dropdown (Twoje style, delikatne dopasowanie) ====== */
.info-bar__showroom{ position: relative; display:inline-block; }
.info-bar__showroom-toggle{
  text-decoration: none; color: inherit; opacity: var(--link-op);
  transition: opacity .2s ease; white-space: nowrap; cursor: pointer;
}
.info-bar__showroom-toggle:hover{ opacity: 1; }
.info-bar__showroom-menu{
  position:absolute; top:100%; left:0;
  background: var(--background-color, #2f2f2f);
  border:1px solid #555; border-radius:6px; min-width:220px;
  opacity:0; visibility:hidden; transform: translateY(-6px);
  transition: all .18s ease; z-index:1000;
  box-shadow: 0 6px 16px rgba(0,0,0,.35);
}
.info-bar__showroom:hover .info-bar__showroom-menu{
  opacity:1; visibility:visible; transform: translateY(0);
}
.info-bar__showroom-item{
  display:block; padding:12px 16px; color:inherit; text-decoration:none;
  border-bottom:1px solid #555; opacity: .9;
}
.info-bar__showroom-item:last-child{ border-bottom:none; }
.info-bar__showroom-item:hover{ background: rgba(255,255,255,.06); opacity: 1; }

/* ====== Prawa kolumna: telefony jeden pod drugim skrajnie po prawej ====== */
.info-bar__right{ margin-left:auto; }
.info-bar__phones{
  display:flex; flex-direction:column; gap:4px;
  margin-left: 8px; text-align:right;
}
.info-bar__phone{
  display:flex; gap:10px; align-items:baseline; justify-content:flex-end;
  color:inherit; text-decoration:none; opacity:.95;
}
.info-bar__phone:hover{ opacity:1; }
.info-bar__phone-label{ font-weight:500; opacity:.85; }
.info-bar__phone-number{ font-variant-numeric: tabular-nums; }

/* ====== ŚRODEK: vertical ticker (revolving USP) ====== */
.info-bar__ticker{
  height: var(--bar-h);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content:center;
}
.info-bar__ticker-list{
  margin:0; padding:0; list-style:none;
  display:flex; flex-direction:column;
  /* animacja podstawowa; JS poniżej przestawia wysokość/tempo */
  animation: infoBarTick 15s linear infinite;
}
.info-bar__ticker-list:hover{ animation-play-state: paused; }
.info-bar__ticker-list > li{
  display:flex; align-items:center; justify-content:center;
  height: var(--bar-h); padding:0 8px; white-space: nowrap;
}
.info-bar__ticker-list a, .info-bar__ticker-list span{
  color: inherit; text-decoration:none;
}

@keyframes infoBarTick{
  0%   { transform: translateY(0); }
  33%  { transform: translateY(calc(-1 * var(--bar-h))); }
  66%  { transform: translateY(calc(-2 * var(--bar-h))); }
  100% { transform: translateY(calc(-3 * var(--bar-h))); }
}

/* ====== Responsywność ====== */
@media (max-width: 1024px){
  .info-bar{ --bar-h: 36px; font-size: 13px; }
  .info-bar__phones{ display:none; }           /* na tabletach chowamy telefony */
}
@media (max-width: 720px){
  .info-bar{
    flex-wrap: wrap;
    row-gap: 8px;
    justify-content: space-between;
  }
  .info-bar__left{ order:1; flex: 1 1 auto; }
  .info-bar__center{ order:3; flex: 1 1 100%; }
  .info-bar__right{ order:2; gap:12px; }
}

/* ================================================
   PREMIUM BLOG STYLES - ELEGANCKI STYL WNĘTRZARSKI
   ================================================ */

/* Reset i podstawy */
* {
    box-sizing: border-box;
}

/* Główny kontener bloga */
#blog-item {
    max-width: 990px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
}

/* =====================================
   TYPOGRAFIA - HIERARCHIA NAGŁÓWKÓW
   ===================================== */

/* H1 - Tytuł główny */
.big_label {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #2d2e2b;
    text-align: center;
    margin: 0 0 30px 0;
    letter-spacing: -0.02em;
}

/* H2 - Nagłówki sekcji */
.blog-item_sub h2,
.blog-item_sub .section-heading {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 2.8rem);
    font-weight: 600;
    line-height: 1.3;
    color: #2c3e50;
    margin: 50px 0 25px 0;
    position: relative;
    padding-bottom: 15px;
    overflow: hidden; /* tworzy nowy block formatting context */
}

.blog-item_sub h2:after,
.blog-item_sub .section-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #b8a693, #a89680);
    border-radius: 2px;
}

/* H3 - Podtytuły */
.blog-item_sub h3 {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: clamp(1.7rem, 3.5vw, 2.1rem);
    font-weight: 600;
    line-height: 1.4;
    color: #a89680;
    margin: 40px 0 20px 0;
}

/* H4 - Małe nagłówki */
.blog-item_sub h4 {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    color: #34495e;
    margin: 30px 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =====================================
   TREŚĆ - PARAGRAFY I TEKST
   ===================================== */

.blog-item_sub p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 25px 0;
    text-align: justify;
    hyphens: auto;
}

.blog-item_sub p:first-of-type {
    font-size: 1.6rem;
    color: #2d3748;
    font-weight: 400;
}

/* Data wpisu */
.blog_date {
    text-align: center;
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 40px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =====================================
   LISTY I PUNKTORY
   ===================================== */

.blog-item_sub ul,
.blog-item_sub ol {
    margin: 30px 0;
    padding-left: 0;
    list-style: none;
    counter-reset: item;
    overflow: hidden; /* zapobiega przesunięciu numeracji */
}

/* Zagnieżdżone listy OL - resetują licznik */
.blog-item_sub ol ol {
    margin: 15px 0 15px 20px;
    counter-reset: item; /* resetuj licznik dla zagnieżdżonych list */
}

/* Zagnieżdżone elementy listy mają mniejszy padding */
.blog-item_sub ol ol li {
    padding-left: 35px; /* mniejszy padding dla zagnieżdżonych */
}
/* Mniejsze kółka dla zagnieżdżonych list */
.blog-item_sub ol ol li:before {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
}

.blog-item_sub ul li {
    position: relative;
    padding-left: 30px;
    margin: 15px 0;
    font-size: 1.4rem;
    line-height: 1.7;
    color: #4a5568;
}

.blog-item_sub ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #a89680;
    font-size: 1.5rem;
    line-height: 1.1;
}

.blog-item_sub ol {
    counter-reset: item;
}

.blog-item_sub ol li {
    position: relative;
    padding-left: 40px;
    margin: 15px 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    counter-increment: item;
}

.blog-item_sub ol li:before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    background: #a89680;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

/* =====================================
   OBRAZY I MEDIA
   ===================================== */

#blog-item img.blog_image {
    display: block;
    width: 100%;
    max-width: none; /* pełna szerokość kontenera */
    height: auto;
    margin: 1.1em auto;
    float: none; /* wyłączenie float */
    border-radius: 12px;
    box-shadow: none; /* usuwamy drop shadow */
}

.blog-item_sub img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: none; /* usuwamy drop shadow */
    margin: 30px 0;
    display: block;
}

/* Figure i figcaption */
.blog-item_sub figure {
    margin: 40px 0;
    text-align: center;
}

.blog-item_sub figcaption {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 15px;
    font-style: italic;
    line-height: 1.5;
}

/* =====================================
   CYTATY I WYRÓŻNIENIA
   ===================================== */

.blog-item_sub blockquote {
    background: #f8fafc;
    border-left: 4px solid #a89680;
    padding: 30px 40px;
    margin: 40px 0;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    color: #2d3748;
    border-radius: 0 8px 8px 0;
    position: relative;
}

.blog-item_sub blockquote:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 3rem;
    color: #a89680;
    opacity: 0.3;
    font-family: serif;
}

/* =====================================
   LINKI I INTERAKCJE
   ===================================== */

.blog-item_sub a {
    color: #a89680;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.blog-item_sub a:hover {
    color: #967f6a;
    border-bottom-color: #967f6a;
}

/* =====================================
   SEKCJA "ZOBACZ WIĘCEJ"
   ===================================== */

.blog_viewalso {
    margin-top: 60px;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.blog_viewalso a {
    display: inline-block;
    padding: 12px 25px;
    background: #a89680;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 10px;
}

.blog_viewalso a:hover {
    background: #967f6a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 150, 128, 0.3);
}

/* =====================================
   TABELE (jeśli występują)
   ===================================== */

.blog-item_sub table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-size: 0.95rem;
}

.blog-item_sub th,
.blog-item_sub td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.blog-item_sub th {
    background: #f8fafc;
    font-weight: 600;
    color: #2d3748;
}

/* =====================================
   RESPONSIVE DESIGN
   ===================================== */

@media (max-width: 768px) {
    #blog-item {
        padding: 20px 15px;
    }
    
    .big_label {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .blog-item_sub h2 {
        font-size: 1.6rem;
        margin: 35px 0 20px 0;
    }
    
    .blog-item_sub h3 {
        font-size: 1.3rem;
        margin: 30px 0 15px 0;
    }
    
    .blog-item_sub p {
        font-size: 1rem;
        text-align: left;
    }
    
    .blog-item_sub blockquote {
        padding: 20px 25px;
        font-size: 1.1rem;
    }
    
    .blog_viewalso {
        padding: 20px;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    #blog-item {
        padding: 15px 10px;
    }
    
    .big_label {
        font-size: 1.8rem;
    }
    
    .blog-item_sub ul li,
    .blog-item_sub ol li {
        padding-left: 25px;
    }
    
    .blog-item_sub blockquote {
        padding: 15px 20px;
        margin: 30px 0;
    }
}

/* =====================================
   DODATKOWE KLASY POMOCNICZE
   ===================================== */

/* Separator wizualny */
.blog-separator {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #27ae60, transparent);
    margin: 50px auto;
}

/* Box z informacjami */
.info-box {
    background: #e6fffa;
    border-left: 4px solid #38b2ac;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

/* Podkreślenia i akcenty */
.highlight {
    background: linear-gradient(120deg, #a7f3d0 0%, #a7f3d0 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.2em;
    background-position: 0 88%;
    padding: 0 4px;
}

/* =====================================
   PRINT STYLES
   ===================================== */

@media print {
    #blog-item {
        max-width: none;
        padding: 0;
        color: #000;
    }
    
    .blog_image,
    .blog-item_sub img {
        box-shadow: none;
    }
    
    .blog_viewalso {
        display: none;
    }
    
    .big_label {
        color: #000;
        font-size: 2rem;
    }
}

/* ===== FAQ (IdoSell) – czytelny, jasny wariant ===== */

/* Układ listy */
.questions__list{
  display:grid;
  gap:12px;
}

/* Kafle */
.questions__item{
  background:#f5f6f7;                  /* jasno-szare tło */
  border:1px solid #e3e6ea;
  border-radius:12px;
  overflow:hidden;
  transition:background .15s ease, border-color .15s ease;
}
.questions__item:hover{ background:#eef0f2; }

/* Nagłówek pytania */
.question__head{
  list-style:none;
  display:grid;
  grid-template-columns: 1fr auto;      /* tytuł | ikona po prawej */
  align-items:center;
  gap:16px;
  padding:18px 20px;
  cursor:pointer;
}
.question__head::-webkit-details-marker{ display:none; }

.question__title{
  text-transform:uppercase;             /* ALL CAPS */
  font-weight:800;                      /* bold */
  letter-spacing:.02em;
  color:#202428;
  line-height:1.2;
}

/* Ikona – chevron po prawej */
.question__icon{
  width:22px; height:22px; position:relative;
  justify-self:end;                     /* twardo do prawej krawędzi */
}
.question__icon::before{
  content:"";
  position:absolute; inset:0; margin:auto;
  width:8px; height:8px;
  border:2px solid currentColor;
  border-left:0; border-top:0;          /* „>” z obramowania */
  transform:rotate(-45deg);             /* CLOSED: strzałka w prawo */
  transition:transform .18s ease;
  opacity:.9;
}
details[open] .question__icon::before{
  transform:rotate(45deg);              /* OPEN: strzałka w dół */
}

/* Treść odpowiedzi */
.question__body{
  padding:0 20px 18px 20px;            /* dół + boczne */
  color:#2a2f34; line-height:1.65;
  border-top:1px solid #e9ecef;        /* separacja od pytania */
}
details[open] .question__body{ padding-top:12px; }

/* Focus (dostępność) */
.questions__item summary:focus-visible{
  outline:2px solid #2b2f33; outline-offset:2px;
}

/* ===== padding dla "Pytania innych klientów" ===== */
.questions__question.d-flex.align-items-center.justify-content-between {
  padding: 14px 18px !important;   /* wyraźniejszy odstęp */
  line-height: 1.4 !important;
}

/* pytanie (nagłówek) */
.questions__question {
  font-weight: 600 !important;   /* bold */
  padding: 14px 18px !important;
  line-height: 1.4 !important;
}

/* odpowiedź */
.questions__answer {
  font-weight: 400 !important;   /* normal */
  padding: 12px 18px 16px 18px !important; /* dodany lewy padding */
  line-height: 1.6 !important;
  color: #2a2f34 !important;
}

/* opcjonalnie: większy klik area (mobile friendly) */
@media (max-width: 768px) {
  .questions__question.d-flex.align-items-center.justify-content-between {
    padding: 16px 20px !important;
  }
}

    /* ===============================
       Minimalny, lokalny styling
       (scoped do #orac-landing)
       =============================== */
    #orac-landing .hero {
      background: linear-gradient(135deg, #6B6B62 0%, #1E1E1E 100%);
    }
    #orac-landing .card-elevated {
      border: 0;
      border-radius: .5rem;
      box-shadow: 0 2px 12px rgba(0,0,0,.07);
      height: 100%;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    #orac-landing .card-elevated:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 28px rgba(0,0,0,.12);
    }
    #orac-landing .icon-xxl {
      font-size: 2.25rem;
      line-height: 1;
    }
    #orac-landing .feature-bullet {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #E4DCD1; /* delikatny beż z Twojej palety */
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 56px;
    }
    #orac-landing .contact-tile {
      min-width: 220px;
    }
    
    
    
    /* Dwukolumnowy opis kategorii */
.category-desc.is-columns {
  column-count: 2;           /* dwie kolumny na desktopie */
  column-gap: 3rem;          /* odstęp między kolumnami */
  column-fill: balance;
}

/* Mobile/tablet – jedna kolumna */
@media (max-width: 991px) {
  .category-desc.is-columns { column-count: 1; }
}

/* Lepsze łamanie elementów */
.category-desc.is-columns h2,
.category-desc.is-columns h3 {
  break-after: avoid;
  /* opcjonalnie, by nagłówki nie były urywane */
  -webkit-column-break-after: avoid;
}

/* Zapobiegaj dzieleniu bloków na kolumny */
.category-desc.is-columns ul,
.category-desc.is-columns ol,
.category-desc.is-columns table,
.category-desc.is-columns figure,
.category-desc.is-columns .card,
.category-desc.is-columns .box {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

/* Opcjonalnie: podkreśl pierwszy akapit leadem */
.category-desc.is-columns .lead {
  font-size: 1.625rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}