.wakacje p 
{font-size: 2em;
}

.kapitaliki {
font-variant: small-caps;
font-weight: bold;
}

.tabelarwd {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 1%;
}
.tabelarwd td,th {
    padding: 5px 12px;
    text-align: left;
    vertical-align: top;
}
/* Główny blok */
/* Główny blok */
.uwaga {
  border-left: 6px solid #ffad00;
  background-color: #fffaf0;
  padding: 25px 20px 15px 20px; /* Większy górny margines na napis */
  margin: 3rem;
  border-radius: 0 8px 8px 0;
  position: relative; /* Potrzebne do pozycjonowania napisu */
  color: #333;
  
}

/* Automatyczny napis nad treścią */
.uwaga::before {
  content: "WARTO WIEDZIEĆ:"; /* Tutaj wpisz swój tekst */
  display: block;
  position: absolute;
  top: 8px;
  left: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffad00; /* Kolor akcentu ze strony */
  text-transform: uppercase;
  letter-spacing: 1px;
line-height: 1.6;
}

/* Wspólna baza dla wszystkich bloków */
.blok-info, .blok-porada, .blok-uwaga {
  position: relative;
  padding: 20px 20px 15px 20px;
  margin: 4rem;
  border-radius: 0 8px 8px 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* 1. PORADA (Kolor Twojego koszyka #ffad00) */
.blok-porada {
  border-left: 6px solid #ffad00;
  background-color: #fffaf0;
}
.blok-porada::before {
  content: "💡 PORADA EKSPERTA";
  color: #ffad00;
  position: absolute; top: 8px; left: 20px; font-weight: bold; font-size: 1.2rem; text-transform: uppercase;
}

/* 2. INFORMACJA (Neutralny błękit techniczny) */
.blok-info {
  border-left: 6px solid #2196F3;
  background-color: #f0f7ff;
}
.blok-info::before {
  content: "ℹ️ WARTO WIEDZIEĆ";
  color: #2196F3;
  position: absolute; top: 8px; left: 20px; font-weight: bold; font-size: 1.2rem; text-transform: uppercase;
}

/* 3. WAŻNE (Czerwień ostrzegawcza - np. o docięciu pod wymiar) */
.blok-uwaga {
  border-left: 6px solid #d32f2f;
  background-color: #fff5f5;
}
.blok-uwaga::before {
  content: "⚠️ WAŻNA UWAGA";
  color: #d32f2f;
  position: absolute; top: 8px; left: 20px; font-weight: bold; font-size: 1.2rem; text-transform: uppercase;
}
@media (max-width: 799px) {
.blok-info, .blok-porada, .blok-uwaga {
margin: .1rem;
}
}

/* ========================================================
   RESPONSYWNA GALERIA BANERÓW Z LINKAMI DO PRODUKTÓW
   Dotyczy podstrony "O nas" oraz galerii produktowych
   ======================================================== */

/* Główny kontener baneru zachowujący proporcje obrazka */

/* Wspólny szkielet dla wszystkich banerów z linkami */
.interactive-banner {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: 600 / 406;
}
.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.product-link-group {
  position: absolute;
  width: 45%;
  transform: translateY(-50%);
}
.product-link-group a {
  text-decoration: none;
  display: block;
}
.product-title {
  color: #ffffff;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
  font-size: 16px;
  display: block;
   margin-bottom: 2px; /* Minimalny odstęp pod tytułem */
  line-height: 1.2;
}
.product-action {
  color: #ff0000;
  font-style: italic;
  font-weight: bold;
  font-size: 12px;
  display: block;
  line-height: 1.2;
}

/* Skalowanie czcionek na małych telefonach */
@media (max-width: 480px) {
  .product-title {
    font-size: 11px;
    margin-bottom: 0px; /* Całkowite usunięcie marginesu na mobile */
  }
  .product-action {
    font-size: 9px;
  }
  .product-link-group {
    /* Zmniejszamy wysokość linii dla całego bloku, żeby napisy były bliżej siebie */
    line-height: 1.1 !important;
  }
}

/* koniec responsywności zdjęć z linkami */


/* ===================================================
   AUTORSKIE STYLE DLA OPISÓW KATEGORII I SEKCJI FAQ
   =================================================== */

/* 1. GÓRNY OPIS KATEGORII (Wprowadzenie) */
.top-category-intro {
    font-size: 0.9375rem; 
    line-height: 1.6;
    color: #333333;
    margin-bottom: 1rem;
}

.top-category-heading {
    font-size: 1.125rem;
    font-weight: bold;
    color: #222222;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Poziomy separator (Czarna kropka) */
.text-separator {
    font-size: 1.3rem;
    vertical-align: middle;
    line-height: 1;
    margin: 0 1rem;
    color: #000000;
}

/* 2. DOLNY OPIS KATEGORII (Sekcja FAQ w ramce) */
.custom-faq-container {
    margin-top: 3rem;
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.custom-faq-title {
    font-size: 1.375rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #222222;
    text-align: center;
    font-weight: bold;
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 1rem;
}

.custom-faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px dashed #e5e5e5;
    padding-bottom: 1rem;
}

.custom-faq-item:last-child {
    margin-bottom: 0.3rem;
    border-bottom: none;
    padding-bottom: 0;
}

.custom-faq-question {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.custom-faq-bullet {
    color: #666666;
    margin-right: 0.5rem;
}

.custom-faq-answer {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #555555;
    margin-top: 0;
    padding-left: 1.25rem;
}

