.products-page__header {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #e8e8e8;
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid #333;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card__image-wrapper {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__title {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.product-card__price {
  font-weight: bold;
  margin: 0 0 0.75rem;
}

.product-card__excerpt {
  flex-grow: 1;
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}
a.block.mt-6.bg-fox-red.text-white.px-6.py-3.rounded.text-center.text-lg.font-bold {
    color: black;
}
.product-card__buy,
.product-single__buy {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background-color: #ebebeb;
  border: 1px solid #464646;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}

.product-single {
  max-width: 1000px;
  margin: 0 auto;
}

.product-single__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
}

.product-single__image-wrapper {
  border-radius: 14px;
  overflow: hidden;
}

.product-single__image {
  width: 100%;
  height: auto;
  display: block;
}

.product-single__price {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.product-single__description {
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .product-single__layout {
    grid-template-columns: 1fr;
  }
}
/* --- WIKI STYLE FIXES --- */

/* Contenido base */
.wikibody {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
  padding: 2rem 1rem;
  font-size: 1.05rem;
}

/* Títulos de sección */
.wikibody h1 {
  font-size: 1.7rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid #E5442A;
  padding-left: 0.6rem;
}

/* Bullets restaurados */
.wikibody ul {
  list-style-type: disc !important;
  margin-left: 2rem !important;
  margin-bottom: 1.5rem;
}

.wikibody li {
  margin: 0.25rem 0;
}

/* Enlaces de la wiki */
.wikibody a {
  color: #08868f;            /* Neon verde */
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed #5CFFBF50;
}

.wikibody a:hover {
  color: #E5442A;            /* Fox red */
  border-bottom: 1px dashed #E5442A;
}

/* Contenedor desplegable */
.wiki-section {
  background: #111;
  border-left: 4px solid #5CFFBF50;
  margin: 1rem 0 2rem 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  animation: fadeIn 0.25s ease-out;
}

/* Texto interno del contenido cargado */
.wiki-section p,
.wiki-section li {
  color: #2f2f2f;
}

/* Loading */
.wiki-loading {
  color: #2f2f2f;
  font-style: italic;
}

/* Animación suave */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}
.gallery-container {
    background-color: var(--tw-colors-bone-white);
    color: #333;
    padding: 4rem 1rem;
}

#gadget-cloud {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.gadget-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gadget-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 0 25px rgba(92, 255, 191, 0.5), 0 8px 15px rgba(0, 0, 0, 0.2);
}

.gadget-card img {
    width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: contain;
    padding: 20px 0;
}

.gadget-card h2 {
    font-size: 1.1em;
    padding: 12px;
    margin: 0;
    color: #000;
    background-color: #eee;
    border-top: 1px solid #ddd;
    font-family: var(--tw-font-family-title);
    letter-spacing: 0.05em;
}
