/* Tarjetas de producto — CSS estático (no depende de Tailwind CDN ni JS) */
.fyr-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 768px) {
  .fyr-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
@media (min-width: 1280px) {
  .fyr-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.fyr-product-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.fyr-product-row .fyr-product-card {
  flex: 0 0 min(85%, 240px);
  min-width: 0;
  max-width: 240px;
  scroll-snap-align: start;
}
@media (max-width: 399px) {
  .fyr-product-row .fyr-product-card {
    flex: 0 0 88%;
    min-height: 300px;
  }
}
@media (min-width: 640px) {
  .fyr-product-row .fyr-product-card {
    flex: 0 0 calc(33.333% - 0.67rem);
  }
}
@media (min-width: 1024px) {
  .fyr-product-row .fyr-product-card {
    flex: 0 0 calc(25% - 0.75rem);
    max-width: none;
  }
}
.fyr-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.75rem;
  min-height: 320px;
  box-sizing: border-box;
  transition: box-shadow 0.2s ease;
}
.fyr-product-card:hover {
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
}
.fyr-product-card__ribbon {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.3;
}
.fyr-product-card__ribbon--sold { background: #f97316; color: #fff; }
.fyr-product-card__ribbon--promo { background: #1d4ed8; color: #fff; }
.fyr-product-card__ribbon--star { background: #facc15; color: #111827; }
.fyr-product-card__ribbon--truper { background: #0b1f33; color: #fff; }
.fyr-product-card__media {
  display: block;
  aspect-ratio: 1;
  margin-bottom: 0.625rem;
  background: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
}
.fyr-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
  box-sizing: border-box;
}
.fyr-product-card__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 0.5rem;
  padding: 1rem;
  text-align: center;
}
.fyr-product-card__placeholder span {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9ca3af;
  line-height: 1.3;
}
.fyr-product-card__brand {
  margin: 0 0 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
}
.fyr-product-card__title {
  margin: 0 0 0.375rem;
  font-family: Montserrat, Inter, system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0b1f33;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}
.fyr-product-card__title a {
  color: inherit;
  text-decoration: none;
}
.fyr-product-card__title a:hover {
  color: #c2410c;
}
.fyr-product-card__price {
  margin: 0 0 0.25rem;
  font-family: Montserrat, Inter, system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}
.fyr-product-card__unit {
  margin: 0 0 0.625rem;
  font-size: 0.75rem;
  color: #6b7280;
}
.fyr-product-card__note {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #16a34a;
  text-align: center;
}
.fyr-product-card__actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.fyr-btn {
  display: block;
  width: 100%;
  height: 2.25rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  line-height: 2.25rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}
.fyr-btn--price {
  background: #f97316;
  color: #fff;
}
.fyr-btn--price:hover {
  background: #ea580c;
}
.fyr-btn--quote-link {
  background: transparent;
  color: #0b1f33;
  font-size: 0.8125rem;
  font-weight: 600;
  height: auto;
  line-height: 1.4;
  padding: 0.25rem 0;
}
.fyr-btn--quote-link:hover {
  color: #c2410c;
  text-decoration: underline;
}
.product-skeleton {
  min-height: 340px;
  border-radius: 12px;
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
  background-size: 200% 100%;
  animation: fyr-shimmer 1.2s ease-in-out infinite;
}
@keyframes fyr-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.fyr-product-card__fallback.hidden {
  display: none !important;
}
.fyr-product-card__img.hidden {
  display: none;
}
