/* ============================================================
   POVEDALI O NÁS — sekcia s recenziami
   ============================================================ */

/* Celá sekcia — sivé pozadie cez celú šírku vrátane mimo containera */
#pon-section {
  width: calc(100% + 40px);
  margin-left:  -20px;
  margin-right: -20px;
  background: #f4f4f4;
  padding: 44px 20px 32px;
  box-sizing: border-box;
}

/* Nadpis — rovnaký štýl ako "Tip na nákup" (Exo 2, 34px, 700, center) */
#pon-title {
  font-family: "Exo 2", sans-serif;
  font-size:   34px;
  font-weight: 700;
  text-align:  center;
  color: #222;
  margin: 0 0 28px 0;
  line-height: 1.2;
}

/* Scrollovateľný track — horizontálny, snap, skrytý scrollbar */
#pon-track {
  display:    flex;
  flex-direction: row;
  flex-wrap:  nowrap;
  gap:        14px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0 16px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  /* Fade edges naznačujú scrollovateľnosť */
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 20px, black calc(100% - 20px), transparent 100%);
  mask-image:         linear-gradient(to right, transparent 0, black 20px, black calc(100% - 20px), transparent 100%);
}

#pon-track::-webkit-scrollbar { display: none; }

/* Karta — celá je klikateľný odkaz */
.pon-card {
  flex-shrink: 0;
  width: 270px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  padding: 18px 18px 14px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: box-shadow 0.15s, transform 0.15s;
}

.pon-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.10);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}

/* Hlavička */
.pon-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Avatar s iniciálami */
.pon-avatar {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: #e8f0fe;
  color: #1a73e8;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Exo 2", sans-serif;
  letter-spacing: 0.5px;
}

.pon-name-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.pon-name {
  font-family: "Exo 2", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Zdroj: Google alebo stickeez.sk */
.pon-source {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #888;
  font-family: "Exo 2", sans-serif;
}

.pon-google-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.pon-source-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00a650;
  flex-shrink: 0;
  display: inline-block;
}

/* Hviezdy */
.pon-stars {
  font-size: 15px;
  color: #f5a623;
  letter-spacing: 1.5px;
  line-height: 1;
}

/* Text recenzie — max 4 riadky */
.pon-text {
  font-family: "Exo 2", sans-serif;
  font-size: 13px;
  color: #444;
  line-height: 1.55;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Dátum */
.pon-date {
  font-family: "Exo 2", sans-serif;
  font-size: 11px;
  color: #bbb;
  margin-top: auto;
}

/* CTA tlačidlá pod trackrom */
#pon-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.pon-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 24px;
  font-family: "Exo 2", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.pon-cta-btn:hover {
  opacity: 0.85;
  box-shadow: 0 3px 10px rgba(0,0,0,.12);
  text-decoration: none;
}

/* stickeez.sk tlačidlo */
.pon-cta-shoptet {
  background: #222;
  color: #fff;
  border: 2px solid #222;
}

/* Google tlačidlo */
.pon-cta-google {
  background: #fff;
  color: #444;
  border: 2px solid #dadce0;
}

.pon-cta-google .pon-google-icon {
  width: 16px;
  height: 16px;
}

/* ============================================================
   MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {

  #pon-section {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 28px 0 24px;
  }

  #pon-title {
    font-size: 22px;
    margin: 0 12px 18px;
  }

  #pon-track {
    padding: 4px 12px 14px;
    gap: 10px;
  }

  .pon-card {
    width: 220px;
    padding: 14px 14px 12px;
    border-radius: 14px;
    gap: 8px;
  }

  .pon-avatar {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 11px;
  }

  .pon-name  { font-size: 13px; }
  .pon-stars { font-size: 13px; }

  .pon-text {
    font-size: 12px;
    -webkit-line-clamp: 3;
  }

  #pon-cta {
    padding: 0 12px;
  }

  .pon-cta-btn {
    font-size: 13px;
    padding: 8px 16px;
  }
}
