﻿/* ============================================
   SOUVISEJÍCÍ PRODUKTY
   ============================================ */


.sp-block {
  margin: 1.5rem 0;
}


.sp-block > h3 {
  margin: 0 0 1.25rem 0;
  font-size: 22px;
  font-weight: 700;
  color: #1a0f3d;
  line-height: 1.3;
  text-align: center;
}


/* Mřížka karet */
.sp-related__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 240px));
  gap: 16px;
  justify-content: center;
}


/* Karta */
.sp-related__card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #ebe5f5;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}


.sp-related__card:hover {
  border-color: #6b4fc4;
  box-shadow: 0 8px 24px rgba(107,79,196,.12);
  transform: translateY(-3px);
}


/* Médium (obrázek nebo emoji) */
.sp-related__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #f8f5fb 0%, #f1ebf7 100%);
  font-size: 48px;
  line-height: 1;
  border-bottom: 1px solid #ebe5f5;
}


.sp-related__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 12px;
  box-sizing: border-box;
}


/* Reálná fotka: bílé pozadí, aby kolem obrázku nevznikal bílý rámeček */
.sp-related__media:has(img) {
  background: #ffffff;
}


/* Klikací obrázek (když je médium obalené v <a>) */
a.sp-related__media {
  text-decoration: none;
}


/* Tělo karty - flex sloupec, aby tlačítko drželo dole */
.sp-related__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 16px;
  gap: 8px;
  text-align: center;
}


/* Název produktu */
.sp-related__name {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #1a0f3d;
  line-height: 1.35;
}


/* Klikací název (když je obalený v <a>) */
.sp-related__name a {
  color: inherit;
  text-decoration: none;
}


.sp-related__name a:hover {
  color: #6e34c2;
}


/* Popisek - omezený na 3 řádky kvůli zarovnání karet */
.sp-related__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #374151;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* Tlačítko Detail - styl e-shopu (Nakoupit), natvrdo kvůli theme Shoptetu */
a.sp-related__btn,
a.sp-related__btn:link,
a.sp-related__btn:visited,
a.sp-related__btn:active {
  margin-top: auto;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px !important;
  background: #6e34c2 !important;
  color: #ffffff !important;
  border: 1px solid #6e34c2 !important;
  border-radius: 6px !important;
  font: inherit;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.2;
  text-decoration: none !important;
  box-sizing: border-box;
  transition: background-color .18s ease, border-color .18s ease;
}


a.sp-related__btn:hover,
a.sp-related__btn:focus,
a.sp-related__btn:focus-visible {
  background: #5a2aa0 !important;
  border-color: #5a2aa0 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  outline: none;
}


/* Responzivita */
@media (max-width: 980px) {
  .sp-related__grid {
    grid-template-columns: repeat(3, minmax(0, 240px));
  }
}


@media (max-width: 760px) {
  .sp-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .sp-block > h3 {
    font-size: 20px;
  }
  .sp-related__media {
    font-size: 40px;
  }
}


@media (max-width: 480px) {
  .sp-related__body {
    padding: 13px;
  }
  .sp-related__name {
    font-size: 14px;
  }
  .sp-related__text {
    font-size: 13px;
  }
  a.sp-related__btn {
    font-size: 13px !important;
    padding: 9px 18px !important;
  }
}


















/* ============================================
   BEZPEČNOSTNÍ UPOZORNĚNÍ
   ============================================ */


.sp-notice {
  background: #f8f5fb;
  border: 1px solid #ebe5f5;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 1.5rem 0;
  box-sizing: border-box;
}


/* Hlavička: odznak ikony + verzálkový popisek, oddělené vlasovou linkou */
.sp-notice__label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 12px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #ebe5f5;
}


.sp-notice__badge {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #6b34c5;
  color: #4e2d78;
}


.sp-notice__icon {
  width: 17px;
  height: 17px;
  display: block;
}


.sp-notice__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #1a0f3d;
  line-height: 1.2;
}


.sp-notice__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #374151;
}


.sp-notice__text a {
  color: #61309a;
  text-decoration: underline;
  text-underline-offset: 2px;
}


.sp-notice__text a:hover {
  color: #4f2780;
}


@media (max-width: 480px) {
  .sp-notice {
    padding: 14px 16px;
    border-radius: 10px;
  }
  .sp-notice__title {
    font-size: 11.5px;
  }
  .sp-notice__text {
    font-size: 13px;
  }
}