/* Deportes Jimmy — selector universal de variaciones en cuadros v12.7.0 */
.dj-vgrid {
  width: 100%;
  margin: 0 0 14px;
  font-family: var(--dj-font-body, "Poppins", sans-serif);
}
.variations_form.dj-vgrid-on table.variations { display: none !important; }
.variations_form.dj-vgrid-on .reset_variations { display: none !important; }

.dj-vgrid__section { margin: 0 0 14px; }
.dj-vgrid__section:last-child { margin-bottom: 4px; }
.dj-vgrid__head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin: 0 0 8px;
}
.dj-vgrid__title { font-size: .96rem; line-height: 1.2; font-weight: 800; color: #17171a; }
.dj-vgrid__clear {
  appearance: none; border: 0; background: transparent; padding: 2px 0;
  color: #c43d67; font: inherit; font-size: .78rem; font-weight: 500; cursor: pointer;
}
.dj-vgrid__clear:hover, .dj-vgrid__clear:focus-visible { color: var(--dj-red, #ef3323); text-decoration: underline; }
.dj-vgrid__options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}
.dj-vgrid__item {
  appearance: none;
  min-width: 0;
  min-height: 76px;
  padding: 9px 10px;
  border: 1.5px solid #d8d8de;
  border-radius: 10px;
  background: #fff;
  color: #17171a;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(10,10,14,.04);
  transition: border-color .12s ease, box-shadow .12s ease, transform .12s ease, background .12s ease;
}
.dj-vgrid__item:hover { border-color: #aaaab3; box-shadow: 0 4px 12px rgba(10,10,14,.08); transform: translateY(-1px); }
.dj-vgrid__item:focus-visible { outline: 2px solid var(--dj-red, #ef3323); outline-offset: 2px; }
.dj-vgrid__item.is-active {
  border-color: var(--dj-red, #ef3323);
  background: #fff5f3;
  box-shadow: 0 3px 12px rgba(239,51,35,.12);
}
.dj-vgrid__item.is-disabled, .dj-vgrid__item:disabled {
  cursor: not-allowed; opacity: .48; transform: none; box-shadow: none; background: #f7f7f8;
}
.dj-vgrid__visual {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}
.dj-vgrid__visual img {
  display: block;
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}
.dj-vgrid__color {
  display: block;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px;
  min-height: 40px;
  aspect-ratio: 1 / 1;
  border-radius: 50% !important;
  border: 2px solid #fff;
  outline: 1px solid #b7b7bd;
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
}
.dj-vgrid__fallback {
  width: 44px; height: 44px; border-radius: 9px;
  display: grid; place-items: center;
  background: #f0f0f2; border: 1px solid #dedee3;
  color: #3d3d43; font-size: .61rem; line-height: 1; font-weight: 900; letter-spacing: .02em;
  text-align: center;
}
.dj-vgrid__fallback--peso::before { content: ""; width: 21px; height: 12px; border: 3px solid currentColor; border-radius: 5px 5px 3px 3px; position: absolute; transform: translateY(-6px); }
.dj-vgrid__fallback--peso { position: relative; padding-top: 18px; font-size: .55rem; }
.dj-vgrid__fallback--tamano::before { content: "↔"; display: block; font-size: 1rem; line-height: .8; }
.dj-vgrid__fallback--talla::before { content: "#"; display: block; font-size: 1rem; line-height: .8; }
.dj-vgrid__name {
  min-width: 0;
  font-size: .92rem;
  line-height: 1.18;
  font-weight: 800;
  overflow-wrap: anywhere;
}
.dj-vgrid__soldout {
  margin-left: auto;
  font-size: .58rem;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  color: #9c6200;
}

@media (max-width: 1100px) { .dj-vgrid__options { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 760px) {
  .dj-vgrid__options { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
  .dj-vgrid__item { min-height: 68px; padding: 8px; gap: 8px; }
  .dj-vgrid__visual { flex-basis: 42px; width: 42px; height: 42px; }
  .dj-vgrid__visual img { width: 42px !important; height: 42px !important; max-width: 42px !important; }
  .dj-vgrid__color { width: 36px !important; height: 36px !important; min-width: 36px; min-height: 36px; }
  .dj-vgrid__fallback { width: 40px; height: 40px; }
  .dj-vgrid__name { font-size: .86rem; }
}
@media (max-width: 360px) { .dj-vgrid__options { grid-template-columns: 1fr 1fr; } }
@media (prefers-reduced-motion: reduce) { .dj-vgrid__item { transition: none; } }

/* v12.7.0 — ningún nombre puede salirse de su cuadro. */
.dj-vgrid__item {
  overflow: hidden;
}
.dj-vgrid__name {
  flex: 1 1 0;
  width: 0;
  max-width: 100%;
  min-width: 0;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  max-height: 3.54em;
  overflow: hidden;
}
.dj-vgrid__soldout {
  flex: 0 0 auto;
  max-width: 48px;
  white-space: normal;
  text-align: right;
}
