/* CakeStar – zaoblení rohů produktových fotek */
.products .p a.image,
.products .p a.image img,
.products .p a.image .swap-image {
  border-radius: 20px;
}

/* === CakeStar – návody: grid videí */
.cakestar-navody-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

/* responzivní iframe wrapper */
.cakestar-navody-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

.cakestar-navody-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cakestar-navody-video-single {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

.cakestar-navody-video-single iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* mobil */
@media (max-width: 768px) {
  .cakestar-navody-videos {
    grid-template-columns: 1fr;
  }
}

/* === CakeStar – CTA tlačítko */

.cakestar-cta-btn {
  display: block;
  width: fit-content;
  margin: 20px auto; 
  background-color: #8fcc6e;
  color: #ffffff;
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.cakestar-cta-btn:hover {
  background-color: #7dbf5d;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

.cakestar-cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

  /* CakeStar – tabulka dopravy a plateb */

  .cakestar-tabulka {
    width: 100%;
    max-width: 900px;
    border-collapse: separate;   /* nutné pro zaoblené rohy */
    border-spacing: 0;
    border: 1px solid #e6e6e6;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
  }

  .cakestar-tabulka-bunka {
    padding: 14px 18px;
    text-align: center;
    vertical-align: middle;
    border-right: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    line-height: 1.35;
  }

  /* poslední sloupec bez pravého okraje */
  .cakestar-tabulka tr td:last-child {
    border-right: 0;
    white-space: nowrap;
  }

  /* poslední řádek bez spodního okraje */
  .cakestar-tabulka tbody tr:last-child td {
    border-bottom: 0;
  }

  /* střídání barev řádků */
  .cakestar-tabulka tbody tr:nth-child(odd) td {
    background-color: #fafafa;
  }

  .cakestar-tabulka tbody tr:nth-child(even) td {
    background-color: #ffffff;
  }

  /* dopravce – sloučená buňka */
  .cakestar-dopravce {
    font-weight: 700;
  }

  /* menší obrazovky */
  @media (max-width: 480px) {
    .cakestar-tabulka-bunka {
      padding: 12px 10px;
      font-size: 14px;
    }
  }