/* Společný styl pro Powered by ASUS */
.powered-by {
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;

  /* Gradient */
  background: linear-gradient(90deg, #4b0082, #9932cc, #e30613, #9932cc, #4b0082);
  background-size: 300% auto;

  /* Clip nastavený pro všechny prohlížeče */
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;

  /* Transparentní text – fallback */
  color: transparent;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;

  /* Animace */
  animation: premium-glow 6s ease-in-out infinite;
}

/* Detail produktu – desktop i mobil */
.p-detail-inner-header h1,
.p-detail-inner-header .h1 {
  display: flex;
  align-items: center; /* vycentrování názvu a Powered by */
}

.p-detail-inner-header .powered-by {
  font-size: 15px;
  margin-left: 8px;
}

/* Kategorie / product card */
.product-card .powered-by,
[data-testid="productCardName"] .powered-by {
  font-size: 11px;
  margin-left: 4px;
}

/* Efekt animace gradientu */
@keyframes premium-glow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}