

/* Start:/instrukcja/instrukcja.css?177107904513452*/
/* Instrukcje – styl zgodny z resztą serwisu */
.content--instrukcja {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Hero/intro blok na stronie głównej instrukcji */
.instrukcja-intro {
  margin-bottom: 2.5rem;
  padding: 2rem 2rem 2rem 2.25rem;
  background: linear-gradient(135deg, #fafafa 0%, #f0f4f8 100%);
  border-radius: 12px;
  border-left: 4px solid var(--fill_dark_lite_hover, #c00);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.content__lead {
  margin-bottom: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #555;
  color: var(--basic_text_black);
}

.instrukcja-intro .content__lead {
  margin-bottom: 0;
}

/* Кнопка «Wszystkie modele» — стиль как в каталоге, внизу контента */
.instrukcja-back-wrap {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--stroke_black, #eee);
}
.instrukcja-back-wrap .return-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--fill_dark_lite_hover, #c00);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.instrukcja-back-wrap .return-btn:hover {
  background: #c00;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(230, 0, 0, 0.2);
}
.instrukcja-back-wrap .return-btn .icon,
.instrukcja-back-wrap .return-btn svg {
  flex-shrink: 0;
  fill: #fff;
}

.content__section-title {
  font-weight: 500;
  margin: 30px 0 25px;
  color: #222;
  color: var(--white_text_black);
  font-size: 1.25em;
}

/* Lista producentów (strona główna instrukcji) */
.instrukcja-producers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.instrukcja-producers__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--light, #fff) var(--dark, #1e1e1e);
  border-radius: 12px;
  text-decoration: none;
  color: #222;
  color: var(--white_text_black);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  border: 1px solid var(--stroke_black, #e5e5e5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, border-color 0.2s, box-shadow 0.25s ease;
}

.instrukcja-producers__link:hover {
  transform: translateY(-3px);
  border-color: var(--fill_dark_lite_hover, #c00);
  box-shadow: 0 8px 24px rgba(184, 17, 17, 0.12);
}

.instrukcja-producers__icon {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 17, 17, 0.08);
  border-radius: 12px;
  color: var(--fill_dark_lite_hover, #c00);
  overflow: hidden;
}

.instrukcja-producers__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.instrukcja-producers__icon:has(img) {
  background: var(--light, #f5f5f5) var(--dark, #2a2a2a);
}

.instrukcja-producers__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.instrukcja-producers__text {
  flex: 1;
  min-width: 0;
}

.instrukcja-producers__arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
}

.instrukcja-producers__link:hover .instrukcja-producers__arrow {
  opacity: 1;
  transform: translateX(3px);
}

.instrukcja-producers__arrow svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

@media (prefers-reduced-motion: reduce) {
  .instrukcja-producers__link:hover {
    transform: none;
  }
  .instrukcja-producers__link:hover .instrukcja-producers__arrow {
    transform: none;
  }
}

/* Karta modelu (lista De'Longhi) */
.instrukcja-model-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem;
}
.instrukcja-model-list__card {
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  background: #fff;
  background: var(--light, #fff) var(--dark, #1e1e1e);
  border-radius: 10px;
  text-decoration: none;
  color: #222;
  color: var(--white_text_black);
  font-weight: 500;
  border: 1px solid var(--stroke_black, #e5e5e5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  min-height: 180px;
  transition: transform 0.25s ease, border-color 0.2s, box-shadow 0.25s ease;
}
.instrukcja-model-list__card:hover {
  transform: translateY(-3px);
  border-color: var(--fill_dark_lite_hover, #c00);
  box-shadow: 0 8px 24px rgba(184, 17, 17, 0.1);
}
.instrukcja-model-list__img {
  flex: 0 0 auto;
  width: 100%;
  height: 120px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--light, #f5f5f5) var(--dark, #333);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.instrukcja-model-list__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0;
  max-width: 100%;
  max-height: 100%;
}
.instrukcja-model-list__placeholder {
  flex: 0 0 auto;
  width: 100%;
  height: 120px;
  border-radius: 6px;
  background: var(--light, #f0f0f0) var(--dark, #333);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.85rem;
}
.instrukcja-model-list__date {
  display: block;
  font-size: 0.8rem;
  color: var(--lite_basic_text_black, #888);
  margin-top: 0.35rem;
  font-weight: 400;
}
.instrukcja-model-list__name {
  flex: 1 1 auto;
  text-align: center;
  font-size: 0.9375rem;
}

@media (max-width: 767px) {
  .content--instrukcja .catalog__pagination {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .content--instrukcja .catalog__pagination .pagination {
    flex-wrap: nowrap;
    min-width: min-content;
  }
  .instrukcja-model-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .instrukcja-model-list li {
    min-width: 0;
  }
  .instrukcja-model-list__card {
    min-height: 160px;
    padding: 10px;
  }
  .instrukcja-model-list__img,
  .instrukcja-model-list__placeholder {
    height: 90px;
  }
  .instrukcja-model-list__name {
    font-size: 0.8125rem;
  }
}

/* Strona szczegółowa modelu – layout: zdjęcie | treść */
.instrukcja-detail__row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Wyrównanie na mobile: jednolite odступы dla wszystkich bloków */
@media (max-width: 767px) {
  .content--instrukcja .instrukcja-detail__row {
    gap: 1.25rem;
    margin-left: 0;
    margin-right: 0;
  }
  .content--instrukcja .instrukcja-model__img {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .content--instrukcja .instrukcja-model__img img {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .content--instrukcja .instrukcja-detail__content {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .content--instrukcja .instrukcja-detail__content .content__section-title {
    margin-left: 0;
    margin-right: 0;
  }
  .content--instrukcja .instrukcja-pdf-list {
    margin-left: 0;
    margin-right: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 0.75rem;
  }
  .content--instrukcja .instrukcja-detail__hint {
    margin-left: 0;
    margin-right: 0;
  }
  .content--instrukcja .instrukcja-detail__hint .instrukcja-detail__color-codes {
    margin-left: 0;
    margin-right: 0;
  }
  .content--instrukcja .instrukcja-back-wrap {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .instrukcja-detail__row {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }
}

.instrukcja-model__img {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .instrukcja-model__img {
    position: sticky;
    top: 100px; /* poniżej fixed header */
    align-self: flex-start;
  }
}

.instrukcja-model__img img {
  max-width: 280px;
  width: 100%;
  height: auto;
  border: 1px solid var(--stroke_black, #eee);
  border-radius: 8px;
  margin: 0;
  display: block;
  vertical-align: top;
}

@media (min-width: 768px) {
  .instrukcja-model__img img {
    max-width: 320px;
  }
}

.instrukcja-detail__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.instrukcja-detail__content .content__section-title {
  margin: 0 0 1rem 0;
  font-size: 1.125rem;
}

.instrukcja-detail__content .instrukcja-pdf-list {
  margin-bottom: 0;
}

.instrukcja-detail__hint {
  margin: 1.25rem 0 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--stroke_black, #eee);
  font-size: 0.875rem;
  line-height: 1.55;
  color: #666;
  color: var(--basic_text_black);
}

/* Blok rozszyfrowania kolorów w szczegółowym opisie */
.instrukcja-detail__hint .instrukcja-detail__color-codes {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #fdfbfb 0%, #f8f6f6 100%);
  border: 1px solid var(--stroke_black, #e8e8e8);
  border-radius: 10px;
  border-left: 4px solid var(--theme-base-color, #c00);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  font-size: 0.875rem;
  line-height: 1.5;
}
@media (min-width: 480px) {
  .instrukcja-detail__hint .instrukcja-detail__color-codes {
    padding: 1.25rem 1.5rem;
  }
}
.instrukcja-detail__color-codes__title {
  display: block;
  margin: 0 0 0.75rem 0;
  padding-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--white_text_black, #222);
  border-bottom: 1px solid rgba(184, 17, 17, 0.15);
}
/* Na mobile: jedna kolumna, czytelny układ */
.instrukcja-detail__color-codes__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 400px) {
  .instrukcja-detail__color-codes__list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
    row-gap: 0.4rem;
  }
}
@media (min-width: 560px) {
  .instrukcja-detail__color-codes__list {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.25rem;
  }
}
@media (min-width: 768px) {
  .instrukcja-detail__color-codes__list {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 1.25rem;
  }
}
.instrukcja-detail__color-codes__list li {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  min-width: 0;
}
.instrukcja-detail__color-codes__list .code {
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--theme-base-color, #c00);
  flex-shrink: 0;
  min-width: 2.5em;
}

/* Lista PDF */
.instrukcja-pdf-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.5rem 1rem;
  align-items: start;
}

.content--instrukcja .instrukcja-pdf-list {
  margin-bottom: 0;
}
.instrukcja-pdf-list__link {
  display: block;
  padding: 0.5rem 0.875rem;
  background: var(--light, #f9f9f9) var(--dark, #2a2a2a);
  border-radius: 6px;
  text-decoration: none;
  color: var(--theme-base-color, #c00);
  font-size: 0.9375rem;
  line-height: 1.4;
  border: 1px solid var(--stroke_black, #eee);
  transition: background-color 0.2s, border-color 0.2s;
  text-align: left;
}
.instrukcja-pdf-list__link:hover {
  background: var(--light, #f0f0f0) var(--dark, #333);
}

/* Karty nowości w wynikach wyszukiwania – jednakowy rozmiar + przycisk */
.news-search-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.news-search-list__item {
  min-width: 0;
}
.news-search-list__card {
  display: flex;
  flex-direction: column;
  height: 220px;
  padding: 12px;
  background: #fff;
  background: var(--light, #fff) var(--dark, #1e1e1e);
  border-radius: 8px;
  color: #222;
  color: var(--white_text_black);
  border: 1px solid var(--stroke_black, #e0e0e0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.news-search-list__card:hover {
  border-color: var(--theme-base-color, #9e9e9e);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.news-search-list__img {
  flex: 0 0 auto;
  width: 100%;
  height: 85px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--light, #f5f5f5) var(--dark, #333);
  margin-bottom: 6px;
}
.news-search-list__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}
.news-search-list__placeholder {
  flex: 0 0 auto;
  width: 100%;
  height: 85px;
  border-radius: 6px;
  background: var(--light, #f0f0f0) var(--dark, #333);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.85rem;
}
.news-search-list__name {
  flex: 1 1 auto;
  min-height: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 2px;
}
.news-search-list__date {
  flex: 0 0 auto;
  font-size: 0.8rem;
  color: var(--lite_basic_text_black, #888);
  margin-bottom: 6px;
  font-weight: 400;
}
/* Только layout — визуальный стиль от product-card__buy btn btn-sm */
.news-search-list__btn {
  flex: 0 0 auto;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}


/* End */
/* /instrukcja/instrukcja.css?177107904513452 */
