/* === LED PORADNA STRIP (pod logem) === */
.br-led-poradna-strip {
  max-width: 980px;
  margin: 14px auto 26px;
  padding: 14px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff, #f3f6f9);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.br-led-poradna-left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0; /* kvůli ellipsis */
}

.br-led-poradna-badge {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
   background: transparent !important;
    color: #111 !important; 
  font-size: 20px;
  line-height: 1;
}

.br-led-poradna-text {
  min-width: 0;
}

.br-led-poradna-kicker {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0 0 4px;
}

.br-led-poradna-title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  line-height: 1.25;
}

.br-led-poradna-desc {
  margin: 0;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.35;
}
/* SVG ikona */
.br-led-poradna-ico{
  width: 22px;
  height: 22px;
  display: block;
}

.br-led-poradna-ico path{
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.br-led-poradna-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  background: #3381C3;
  color: #fff;
  box-shadow: 0 4px 10px rgba(51,129,195,0.25);
  transition: transform 0.25s ease, background 0.25s ease;
  white-space: nowrap;
  
}

.br-led-poradna-cta:hover {
  background: #22679B;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  .br-led-poradna-strip {
    margin: 10px 12px 18px;
    padding: 14px 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .br-led-poradna-cta {
    justify-content: center;
    width: 100%;
  }
}
/* pojistka: ať se blok neztratí pod vrstvami a není oříznutý */
.br-led-poradna-strip {
  position: relative;
  z-index: 50;
}

/* pojistka pro některé šablony, které ořezávají header */
#header {
  overflow: visible !important;
}

/* =========================
   LED PORADNA STRIP – DESKTOP
   CTA vždy vpravo
   ========================= */
@media (min-width: 992px) {

  .br-led-poradna-strip{
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 14px;
  }

  .br-led-poradna-left{
    flex: 1 1 auto !important;
    min-width: 0;
  }

  .br-led-poradna-cta{
    flex: 0 0 auto !important;
    margin-left: auto !important;  /* ✅ klíč: tlačítko doprava */
    align-self: center !important;
    width: auto !important;
  }

  .br-led-poradna-strip > .br-led-poradna-cta{
    display: inline-flex !important;
  }
}

/* =========================
   LED PORADNA STRIP – RESPONSIVE (mobil + tablet)
   ========================= */

/* drobná pojistka na šířku */
.br-led-poradna-strip{
  width: min(980px, calc(100% - 24px));
  box-sizing: border-box;
}

/* mobil + tablet */
@media (max-width: 991.98px) {

  .br-led-poradna-strip{
    margin: 10px auto 18px;
    padding: 12px 14px;
    border-radius: 12px;
    gap: 18px;                 /* ✅ větší mezera mezi textem a CTA */

    flex-direction: column;
    align-items: center; /* ✅ CTA bude uprostřed */
  }

  .br-led-poradna-left{
    align-self: stretch; /* ✅ levý blok zpět na full width */
    align-items: flex-start;
    gap: 10px;
  }

  .br-led-poradna-badge{
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 18px;
  }

  .br-led-poradna-kicker{
    font-size: 11px;
    margin: 0 0 3px;
  }

  .br-led-poradna-title{
    font-size: 14px;
    margin: 0 0 3px;
  }

  .br-led-poradna-desc{
    font-size: 12px;
    line-height: 1.35;
  }

  .br-led-poradna-cta{
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 9px;

  display: flex !important;      /* ✅ block-level, ať funguje margin auto */
  justify-content: center;

  width: max-content;
  width: fit-content;
  max-width: 100%;
  min-width: 180px;

  margin: 6px auto 0 !important; /* ✅ na střed */
}
}

/* extra malý mobil */
@media (max-width: 420px) {
  .br-led-poradna-strip{
    padding: 10px 12px;
    border-radius: 11px;
  }
  .br-led-poradna-desc{
    font-size: 11.5px;
  }
}

:root{ --led-poradna-offset: 0px; }

@media (max-width: 768px){
  #header .br-led-poradna-strip{
    margin-top: 4px !important;
    margin-bottom: 26px !important;
  }

  #rotating-products-container.custom-mobile-slider{
    padding-top: calc(55px + var(--led-poradna-offset)) !important;
  }
}