/*
 * PremiumStore.sk – UX/CRO doplnky pre Shoptet (šablóna Disco)
 * Vloženie: Design -> Vlastné CSS (hlavička)
 * Zodpovedajúci JS: assets/ux/premiumstore-cro.js, načítaný cez <script src="...">
 * v Design -> Rozšírené nastavenia -> Vlastný HTML kód -> pätička.
 */

/* Progress bar dopravy zadarmo - zatiaľ nevyužité, JS ho nevolá (pripravené na neskôr) */
.ps-freeship-bar {
  margin: 16px 0;
  padding: 14px 16px;
  border: 1px solid #d8dee3;
  border-radius: 8px;
  background: #f7f9fa;
  font-size: 14px;
}
.ps-freeship-bar strong { color: #1a7f37; }
.ps-freeship-bar.is-reached { background: #eaf7ee; border-color: #bfe6c9; }
.ps-freeship-track {
  margin-top: 8px;
  height: 8px;
  border-radius: 4px;
  background: #e2e6e9;
  overflow: hidden;
}
.ps-freeship-fill {
  height: 100%;
  background: #1a7f37;
  border-radius: 4px;
  transition: width .3s ease;
}

.ps-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #eaeaea;
  font-size: 13px;
  color: #444;
}
.ps-trust-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.ps-trust-badges span::before {
  content: "\2713";
  color: #1a7f37;
  font-weight: 700;
}

.ps-sticky-buy {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, .08);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(100%);
  transition: transform .25s ease;
}
.ps-sticky-buy.is-visible { transform: translateY(0); }
.ps-sticky-buy .ps-sticky-title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13px;
  color: #444;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ps-sticky-buy .ps-sticky-price {
  flex: 0 0 auto;
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
}
.ps-sticky-buy button {
  background: #1a7f37;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .ps-sticky-buy { display: none; } /* len mobil/tablet, na desktope je CTA zvyčajne stále vidno */
}

.ps-secondary-actions {
  opacity: .6;
  font-size: 12px;
  transform: scale(.9);
  transform-origin: left center;
}
.ps-secondary-actions a,
.ps-secondary-actions button {
  font-size: 12px !important;
}
.ps-secondary-actions:hover {
  opacity: 1;
}
