/* OZ Cotizador — Design pack "hommer" (admin: Hommer)
 * - Cards: ozc-product-card__* bajo .ozc-product-card--pack-hommer
 * - Ficha single: ozc-single-product__* bajo .ozc-single-product--pack-hommer
 *
 * Cards de catálogo replican el catálogo Hömmer: tarjeta blanca limpia,
 * imagen centrada (el watermark/contacto vienen dentro de la propia imagen),
 * título centrado y una fila de acciones con botón cuadrado de WhatsApp
 * (solo ícono) + "Añadir al carrito" en estilo claro con borde.
 */

/* Doble clase (.ozc-product-card.ozc-product-card--pack-hommer) para ganar en
 * especificidad al base loops.css que impone flex-direction:column + height:100%.
 * Aquí necesitamos dirección `row` para que `flex:0 0 100%` de los hijos signifique
 * ANCHO (apilado vertical real) y no ALTO (que rompía el layout dentro del slider). */
.ozc-product-card.ozc-product-card--pack-hommer {
  --ozc-pack-accent: #ed6a1a;        /* Naranja Hömmer */
  --ozc-pack-accent-soft: #fff4ec;
  --ozc-pack-surface: #ffffff;
  --ozc-pack-surface-2: #f6f7f9;     /* relleno hover de botones */
  --ozc-pack-border: #e8eaed;
  --ozc-pack-border-strong: #d3d7dc;
  --ozc-pack-text: #1f2937;
  --ozc-pack-muted: #6b7280;
  --ozc-pack-wa: #25d366;            /* verde WhatsApp (solo hover) */
  --ozc-pack-radius: 16px;
  --ozc-pack-btn-radius: 10px;

  box-sizing: border-box;
  display: flex;
  flex-direction: row;         /* CLAVE: anula el column heredado del base */
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;   /* empaqueta las filas arriba: evita que la imagen se estire y empuje el resto fuera del slide */
  gap: 0;
  min-width: 0;
  max-width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--ozc-pack-text);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.ozc-product-card--pack-hommer:hover,
.ozc-product-card--pack-hommer:focus-within {
  border-color: var(--ozc-pack-border-strong);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.09);
  transform: translateY(-2px);
}

/* Secciones apiladas a ancho completo */
.ozc-product-card--pack-hommer > .ozc-product-card__media,
.ozc-product-card--pack-hommer > .ozc-product-card__title,
.ozc-product-card--pack-hommer > .ozc-product-card__category,
.ozc-product-card--pack-hommer > .ozc-product-card__price,
.ozc-product-card--pack-hommer > .ozc-product-card__excerpt,
.ozc-product-card--pack-hommer > .ozc-product-card__brand {
  flex: 0 0 100%;
  max-width: 100%;
}

.ozc-product-card--pack-hommer .ozc-product-card__section {
  padding-left: 0;
  padding-right: 0;
  margin-top: 0.5rem;
}

.ozc-product-card--pack-hommer .ozc-product-card__section:first-child {
  margin-top: 0;
}

.ozc-product-card--pack-hommer .ozc-product-card__media + .ozc-product-card__section {
  margin-top: 0.65rem;
  padding-top: 0;
  border-top: none;
}

/* La marca/contacto viene dentro de la imagen: no badge ni texto "Marca:" */
.ozc-product-card--pack-hommer .ozc-product-card__media .ozc-product-card__badge {
  display: none;
}

.ozc-product-card--pack-hommer .ozc-product-card__brand {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--ozc-pack-muted);
}

.ozc-product-card--pack-hommer .ozc-product-card__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: visible;
  aspect-ratio: unset;
  min-height: 0;
  padding: 0.25rem 0.35rem 0.5rem;
  margin: 0 -0.35rem;
  text-decoration: none;
  color: inherit;
}

.ozc-product-card--pack-hommer .ozc-product-card__media img {
  transition: transform 0.3s ease;
}

.ozc-product-card--pack-hommer:hover .ozc-product-card__media img,
.ozc-product-card--pack-hommer:focus-within .ozc-product-card__media img {
  transform: scale(1.03);
}

.ozc-product-card--pack-hommer .ozc-product-card__media img,
.ozc-product-card--pack-hommer .ozc-product-card__placeholder {
  width: 100%;
  max-width: 260px;
  height: auto;
  max-height: 230px;
  margin: 0 auto;
  object-fit: contain;
  display: block;
}

.ozc-product-card--pack-hommer .ozc-product-card__placeholder {
  aspect-ratio: 1;
  border-radius: 8px;
  background: linear-gradient(145deg, #f6f6f6 0%, #ececec 100%);
}

/* Categoría destacada (opcional) */
.ozc-product-card--pack-hommer .ozc-product-card__category {
  display: none;
}

/* Título: centrado, oscuro, hasta 3 líneas */
.ozc-product-card--pack-hommer .ozc-product-card__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  color: var(--ozc-pack-text);
  min-height: 0;
  overflow: hidden;
  word-break: break-word;
}

.ozc-product-card--pack-hommer .ozc-product-card__title a {
  color: inherit;
  text-decoration: none;
}

/* .ozc-product-card--pack-hommer .ozc-product-card__title a:hover,
.ozc-product-card--pack-hommer .ozc-product-card__title a:focus-visible {
  color: var(--ozc-pack-accent);
} */

.ozc-product-card--pack-hommer .ozc-product-card__excerpt {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--ozc-pack-muted);
}

.ozc-product-card--pack-hommer .ozc-product-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ozc-pack-text);
}

.ozc-product-card--pack-hommer .ozc-product-card__price .woocommerce-Price-amount {
  font-weight: inherit;
}

/* Fila inferior: WhatsApp (ícono) a la izquierda + "Añadir al carrito" */
.ozc-product-card--pack-hommer > .ozc-product-card__section:has(.ozc-product-card__wa) {
  flex: 0 0 auto;
  order: 60;
  width: auto;
  margin-top: 0.7rem;
}

.ozc-product-card--pack-hommer > .ozc-product-card__actions {
  /* flex-basis:0 (no auto): la base de "Añadir al carrito" NO cuenta para el
   * ancho de la fila, así WhatsApp (60) + Añadir (61) + Ficha (62) SIEMPRE
   * caben en una sola fila y este botón solo crece para llenar el centro.
   * Evita que la Ficha se rompa a otra fila al angostarse (ej. slider a 1024px). */
  flex: 1 1 0;
  order: 61;
  margin-top: 0.7rem;
  min-width: 0;
}

.ozc-product-card--pack-hommer .ozc-product-card__wa {
  width: auto;
  margin-right: 0.5rem;
}

/* Botón WhatsApp como cuadrado de solo ícono */
.ozc-product-card--pack-hommer .ozc-product-card__wa-btn {
  width: 2.6rem;
  height: 2.6rem;
  min-height: 2.6rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ozc-pack-border-strong);
  border-radius: var(--ozc-pack-btn-radius);
  background: var(--ozc-pack-surface);
  color: #4b5563;
  font-size: 0;            /* oculta el texto, deja solo el ícono */
  line-height: 0;
  text-transform: none;
  box-shadow: none;
  cursor: pointer;
  transition: border-color 0.24s ease, background-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.ozc-product-card--pack-hommer .ozc-product-card__wa-btn:hover,
.ozc-product-card--pack-hommer .ozc-product-card__wa-btn:focus-visible {
  border-color: var(--ozc-pack-wa);
  color: var(--ozc-pack-wa);
  background: #f3fbf6;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.16);
  transform: translateY(-1px);
}

.ozc-product-card--pack-hommer .ozc-product-card__wa-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.18);
}

.ozc-product-card--pack-hommer .ozc-product-card__wa-btn::after {
  content: '';
  display: inline-block;
  width: 1.3rem;
  height: 1.3rem;
  margin: 0;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Acciones: cantidad (opcional) + botón principal en una sola fila.
 * width:auto + min-width:0 => comparte la fila con WhatsApp y Ficha (horizontal),
 * en vez de ocupar el 100% y empujarlos a otras filas. */
.ozc-product-card--pack-hommer .ozc-product-card__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.4rem;
  width: auto;
  min-width: 0;
}

/* Cantidad (si está activa): estilo neutro acorde a la tarjeta */
.ozc-product-card--pack-hommer .ozc-product-card__qty {
  order: 1;
  flex: 0 0 auto;
  display: inline-flex;
  align-self: stretch;
  align-items: stretch;
  margin: 0;
  min-height: 2.6rem;
  border: 1px solid var(--ozc-pack-border-strong);
  border-radius: var(--ozc-pack-btn-radius);
  background: var(--ozc-pack-surface);
  color: var(--ozc-pack-text);
  overflow: hidden;
}

.ozc-product-card--pack-hommer .ozc-product-card__qty-btn {
  width: 1.85rem;
  min-height: 100%;
  height: auto;
  color: var(--ozc-pack-text);
  background: transparent;
  font-size: 0.95rem;
  transition: background-color 0.24s ease;
}

.ozc-product-card--pack-hommer .ozc-product-card__qty-btn:hover,
.ozc-product-card--pack-hommer .ozc-product-card__qty-btn:focus-visible {
  background: var(--ozc-pack-surface-2);
}

.ozc-product-card--pack-hommer .ozc-product-card__qty-input {
  min-width: 1.85rem;
  width: 2rem;
  height: auto;
  min-height: 100%;
  padding: 0 0.2rem;
  color: var(--ozc-pack-text);
  font-size: 0.85rem;
  font-weight: 700;
  background: transparent;
}

.ozc-product-card--pack-hommer .ozc-product-card__qty-input:focus {
  outline: none;
}

/* En carruseles/grids de OZ-Sliders (.ozs__slide): ocultar el stepper de cantidad.
 * No afecta a la tienda/archivo normal, donde el stepper sí se muestra.
 * El input queda en 1, así "Añadir al carrito" agrega 1 unidad. */
.ozs__slide .ozc-product-card--pack-hommer .ozc-product-card__qty {
  display: none;
}

/* Botón "Añadir al carrito": claro, borde, texto oscuro (no amarillo) */
.ozc-product-card--pack-hommer .ozc-product-card__btn--primary {
  order: 2;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 2.6rem;
  padding: 0.45rem 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ozc-pack-border-strong);
  border-radius: var(--ozc-pack-btn-radius);
  background: var(--ozc-pack-surface);
  color: var(--ozc-pack-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: none;
  text-decoration: none;
  box-shadow: none;
  cursor: pointer;
  transition: background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.ozc-product-card--pack-hommer .ozc-product-card__btn--primary::after {
  display: none;
  content: none;
}

.ozc-product-card--pack-hommer .ozc-product-card__btn--primary:hover {
  background: var(--ozc-pack-surface-2);
  border-color: var(--ozc-pack-accent);
  color: var(--ozc-pack-text);
  box-shadow: 0 10px 22px rgba(237, 106, 26, 0.12);
  transform: translateY(-1px);
}

.ozc-product-card--pack-hommer .ozc-product-card__btn--primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(237, 106, 26, 0.2);
}

.ozc-product-card--pack-hommer .ozc-product-card__btn--primary:focus:not(:focus-visible) {
  background: var(--ozc-pack-surface);
  color: var(--ozc-pack-text);
}

.ozc-product-card--pack-hommer .ozc-product-card__btn--primary.ozc-product-card__btn--added::before {
  margin-right: 0.35rem;
}

/* Botón "Ficha técnica" (PDF): ícono cuadrado a la derecha de "Añadir al carrito".
 * order 62 => fila inferior: WhatsApp (60) | Añadir al carrito (61) | Ficha (62). */
.ozc-product-card.ozc-product-card--pack-hommer > .ozc-product-card__ficha {
  flex: 0 0 auto;
  order: 62;
  width: auto;
  margin-top: 0.7rem;
  margin-left: 0.5rem;
}

.ozc-product-card--pack-hommer .ozc-product-card__ficha-btn {
  width: 2.6rem;
  height: 2.6rem;
  min-height: 2.6rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ozc-pack-border-strong);
  border-radius: var(--ozc-pack-btn-radius);
  background: var(--ozc-pack-surface);
  color: #4b5563;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.24s ease, background-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.ozc-product-card--pack-hommer .ozc-product-card__ficha-btn:hover,
.ozc-product-card--pack-hommer .ozc-product-card__ficha-btn:focus-visible {
  border-color: var(--ozc-pack-accent);
  color: var(--ozc-pack-accent);
  background: var(--ozc-pack-accent-soft);
  box-shadow: 0 8px 18px rgba(237, 106, 26, 0.16);
  transform: translateY(-1px);
}

.ozc-product-card--pack-hommer .ozc-product-card__ficha-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(237, 106, 26, 0.2);
}

.ozc-product-card--pack-hommer .ozc-product-card__ficha-btn svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

/* Ficha single (body.ozc-single-product-layout): evitar grid tema en div.product; 45/55 solo en __inner */
body.ozc-single-product-layout div.product.type-product {
  display: flow-root;
  width: 100%;
  max-width: min(1400px, 96vw);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
  box-sizing: border-box;
  float: none;
  clear: both;
}

body.ozc-single-product-layout #primary {
  max-width: min(1400px, 96vw);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  float: none;
}

body.ozc-single-product-layout .has-sidebar #primary {
  flex: 1 1 100%;
  min-width: 0;
}

.ozc-single-product--pack-hommer {
  --ozc-sp-bg: #f5f7fa;
  --ozc-sp-surface: #ffffff;
  --ozc-sp-accent: #ed6a1a;
  --ozc-sp-primary: #f7d022;
  --ozc-sp-primary-hover: #e8c010;
  --ozc-sp-wa: #2ecc71;
  --ozc-sp-wa-hover: #27ae60;
  --ozc-sp-text: #111827;
  --ozc-sp-muted: #6b7280;
  --ozc-sp-border: #e5e7eb;
  --ozc-sp-radius: 12px;
  --ozc-sp-radius-sm: 8px;
  --ozc-sp-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  --ozc-sp-gallery-main: 820px;
  --ozc-sp-wa-width: 240px;   /* ANCHO del botón WhatsApp/Consultar — cambia solo este valor (px o %) */

  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin: 1.5rem 0;
  padding: 0;
  background: transparent;
  color: var(--ozc-sp-text);
  border-radius: 0;
}

.ozc-single-product--pack-hommer .ozc-single-product__inner {
  display: grid;
  grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: start;
  width: 100%;
  padding: 1.5rem;
  background: var(--ozc-sp-surface);
  border-radius: var(--ozc-sp-radius);
  box-shadow: var(--ozc-sp-shadow);
  box-sizing: border-box;
}

.ozc-single-product--pack-hommer .ozc-single-product__media,
.ozc-single-product--pack-hommer .ozc-single-product__summary {
  min-width: 0;
}

@media screen and (max-width: 960px) {
  .ozc-single-product--pack-hommer .ozc-single-product__inner {
    grid-template-columns: 1fr;
  }
}

/* Galería: las imágenes del producto YA son flyers completos (logo, marca de
 * agua, título, contactos, redes vienen dentro de la propia foto), así que el
 * contenedor solo aporta un marco blanco limpio que deja lucir el flyer. */
.ozc-single-product--pack-hommer .ozc-single-product__media {
  position: relative;
  align-self: start;
  padding: clamp(0.75rem, 2vw, 1rem);
  background: var(--ozc-sp-surface);
  border: 1px solid var(--ozc-sp-border);
  border-radius: var(--ozc-sp-radius);
  box-shadow: var(--ozc-sp-shadow);
}

.ozc-single-product--pack-hommer .ozc-single-product__media .woocommerce-product-gallery {
  margin: 0;
}

/* Galería horizontal (sin .oz-wc-gallery--vertical): tope 650px */
.ozc-single-product--pack-hommer .woocommerce-product-gallery:not(.oz-wc-gallery--vertical) .flex-viewport {
  width: 100%;
  max-width: min(var(--ozc-sp-gallery-main), 100%);
  min-height: 200px;
  max-height: min(var(--ozc-sp-gallery-main), 85vh);
  margin-left: auto;
  margin-right: auto;
}

.ozc-single-product--pack-hommer .woocommerce-product-gallery:not(.oz-wc-gallery--vertical) .flex-viewport img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(var(--ozc-sp-gallery-main), 85vh);
  object-fit: contain;
  object-position: center;
}

/* Galería vertical OZ -> en hommer la forzamos a APILAR: flyer grande arriba y
 * miniaturas en fila horizontal debajo. El tema (product-gallery.css) impone el
 * layout vertical con `!important` (order:-1, flex-direction:column en thumbs),
 * así que aquí debemos usar `!important` + mayor especificidad para ganarle. */
.ozc-single-product--pack-hommer .woocommerce-product-gallery.oz-wc-gallery--vertical {
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1rem;
  width: 100%;
}

.ozc-single-product--pack-hommer .woocommerce-product-gallery.oz-wc-gallery--vertical .flex-viewport {
  order: 1 !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 200px;
  max-height: min(var(--ozc-sp-gallery-main), 85vh);
  overflow: hidden;
  position: relative;
}

.ozc-single-product--pack-hommer .woocommerce-product-gallery.oz-wc-gallery--vertical .flex-viewport img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(var(--ozc-sp-gallery-main), 85vh);
  object-fit: contain;
  object-position: center;
}

/* Miniaturas en fila horizontal centrada debajo del flyer (anula el modo vertical
 * del tema, que usa order:-1 + columna con !important). */
.ozc-single-product--pack-hommer .woocommerce-product-gallery.oz-wc-gallery--vertical .flex-control-thumbs,
.ozc-single-product--pack-hommer .woocommerce-product-gallery.oz-wc-gallery--vertical .flex-control-nav.flex-control-thumbs {
  order: 2 !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center;
  flex: 0 0 auto !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  max-height: none !important;
  overflow: visible !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  gap: 0.5rem;
}

.ozc-single-product--pack-hommer .woocommerce-product-gallery.oz-wc-gallery--vertical .flex-control-thumbs li {
  width: auto !important;
  max-width: 4.5rem;
  float: none !important;
  margin: 0 !important;
}

.ozc-single-product--pack-hommer .flex-viewport {
  border-radius: 12px;
  overflow: hidden;
  background: var(--ozc-sp-surface);
}

.ozc-single-product--pack-hommer .woocommerce-product-gallery__wrapper img,
.ozc-single-product--pack-hommer .flex-viewport img {
  border-radius: 12px;
}

.ozc-single-product--pack-hommer .woocommerce-product-gallery__trigger {
  top: calc(0.85rem + 6px) !important;
  right: calc(0.85rem + 6px) !important;
  left: auto !important;
  z-index: 5;
  width: 2.5rem !important;
  height: 2.5rem !important;
  min-width: 2.5rem !important;
  min-height: 2.5rem !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.96) !important;
  border: 1px solid var(--ozc-sp-border) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.ozc-single-product--pack-hommer .woocommerce-product-gallery:not(.oz-wc-gallery--vertical) .flex-control-thumbs {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0 !important;
  padding: 0 !important;
  list-style: none;
}

.ozc-single-product--pack-hommer .woocommerce-product-gallery:not(.oz-wc-gallery--vertical) .flex-control-thumbs li {
  width: 4.5rem !important;
  float: none !important;
  margin: 0 !important;
}

.ozc-single-product--pack-hommer .flex-control-thumbs img {
  border-radius: 8px;
  opacity: 0.84;
  border: 1px solid transparent;
  transition: opacity 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ozc-single-product--pack-hommer .flex-control-thumbs img.flex-active,
.ozc-single-product--pack-hommer .flex-control-thumbs li:hover img {
  opacity: 1;
  border-color: #b8cad8;
  box-shadow: 0 0 0 1px rgba(15, 61, 94, 0.08);
}

/* Columna resumen: forzamos UNA sola columna (el tema OZ impone un grid de 2
 * columnas con misma especificidad, por eso usamos !important). */
.ozc-single-product--pack-hommer .ozc-single-product__summary {
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: none !important;
  gap: 1rem;
  min-width: 0;
}

/* Reordenado visual para replicar la ficha objetivo:
 * título · descripción+características · Categorías · botón · Consultar.
 *
 * OJO: el tema OZ pone `.ozc-single-product__cta { display:contents }` (disuelve
 * el wrapper) y asigna order a form.cart(1)/wa(2)/meta(4) con !important implícito
 * por orden de carga. Por eso aquí RESTAURAMOS el wrapper del cta y forzamos el
 * order de todos los bloques con `!important`. */
.ozc-single-product--pack-hommer .ozc-single-product__summary > .ozc-single-product__breadcrumbs { order: 1 !important; }
.ozc-single-product--pack-hommer .ozc-single-product__summary > .ozc-single-product__title      { order: 2 !important; }
.ozc-single-product--pack-hommer .ozc-single-product__summary > .ozc-single-product__rating     { order: 3 !important; }
.ozc-single-product--pack-hommer .ozc-single-product__summary > .ozc-single-product__price      { order: 4 !important; }
.ozc-single-product--pack-hommer .ozc-single-product__summary > .ozc-single-product__excerpt    { order: 5 !important; }
.ozc-single-product--pack-hommer .ozc-single-product__summary > .ozc-single-product__meta       { order: 6 !important; margin-top: 0 !important; }
.ozc-single-product--pack-hommer .ozc-single-product__summary > .ozc-single-product__cta {
  display: block !important;   /* anula el display:contents del tema */
  order: 7 !important;
  margin-top: 0 !important;
}
.ozc-single-product--pack-hommer .ozc-single-product__summary > .ozc-single-product__wa {
  order: 8 !important;
  grid-column: 1 / -1 !important;
  margin-top: 0 !important;
}

.ozc-single-product--pack-hommer .ozc-single-product__breadcrumbs {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b7280;
}

.ozc-single-product--pack-hommer .ozc-single-product__breadcrumbs .woocommerce-breadcrumb {
  margin: 0;
}

.ozc-single-product--pack-hommer .ozc-single-product__breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.ozc-single-product--pack-hommer .ozc-single-product__breadcrumbs a:hover,
.ozc-single-product--pack-hommer .ozc-single-product__breadcrumbs a:focus-visible {
  color: var(--ozc-sp-accent);
}

/* Título con línea divisoria debajo (como la ficha objetivo) */
.ozc-single-product--pack-hommer .ozc-single-product__title {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--ozc-sp-border);
}

.ozc-single-product--pack-hommer .ozc-single-product__title .product_title,
.ozc-single-product--pack-hommer .ozc-single-product__title h1 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ozc-sp-text);
}

.ozc-single-product--pack-hommer .ozc-single-product__price {
  font-size: 1.2rem;
  font-weight: 700;
}

.ozc-single-product--pack-hommer .ozc-single-product__price .price {
  color: var(--ozc-sp-text);
}

.ozc-single-product--pack-hommer .ozc-single-product__price .woocommerce-Price-amount {
  font-weight: 700;
}

.ozc-single-product--pack-hommer .ozc-single-product__rating .star-rating {
  color: #e8b923;
}

.ozc-single-product--pack-hommer .ozc-single-product__rating .woocommerce-review-link {
  color: var(--ozc-sp-muted);
  font-size: 1rem;
}

.ozc-single-product--pack-hommer .ozc-single-product__excerpt {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ozc-sp-muted);
}

.ozc-single-product--pack-hommer .ozc-single-product__excerpt p {
  margin: 0 0 0.85rem;
}

.ozc-single-product--pack-hommer .ozc-single-product__excerpt p:last-child {
  margin-bottom: 0;
}

/* "Características Principales:" + lista con viñetas y etiquetas en negrita */
.ozc-single-product--pack-hommer .ozc-single-product__excerpt strong,
.ozc-single-product--pack-hommer .ozc-single-product__excerpt b {
  color: var(--ozc-sp-text);
  font-weight: 700;
}

.ozc-single-product--pack-hommer .ozc-single-product__excerpt ul,
.ozc-single-product--pack-hommer .ozc-single-product__excerpt ol {
  margin: 0.5rem 0 0;
  padding-left: 1.35rem;
  list-style: disc;
}

.ozc-single-product--pack-hommer .ozc-single-product__excerpt li {
  margin: 0 0 0.45rem;
}

.ozc-single-product--pack-hommer .ozc-single-product__excerpt li:last-child {
  margin-bottom: 0;
}


/* Add to cart: quitar márgenes por defecto de Woo/tema encima de cantidad/botón */
.ozc-single-product--pack-hommer .ozc-single-product__cta form.cart {
  margin: 0;
  padding: 0;
}

.ozc-single-product--pack-hommer .ozc-single-product__cta form.cart > :first-child {
  margin-top: 0;
}

.ozc-single-product--pack-hommer .ozc-single-product__cta .woocommerce-variation.single_variation:empty {
  display: none;
}

.ozc-single-product--pack-hommer .ozc-single-product__cta form.cart .single_add_to_cart_button,
.ozc-single-product--pack-hommer .ozc-single-product__cta form.cart .button.alt,
.ozc-single-product--pack-hommer .ozc-single-product__cta form.cart button[type='submit'].single_add_to_cart_button {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  max-width: 100%;
  min-height: 48px;
  padding: 0 7.5rem !important;
  border-radius: 8px;
  border: 1px solid #ed6a1a;
  background: #ed6a1a;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: none;
  transition: background-color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-sizing: border-box;
}

.ozc-single-product--pack-hommer .ozc-single-product__cta form.cart .single_add_to_cart_button::before {
  content: '';
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49A1.003 1.003 0 0 0 20 4H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49A1.003 1.003 0 0 0 20 4H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ozc-single-product--pack-hommer .ozc-single-product__cta form.cart .single_add_to_cart_button:hover,
.ozc-single-product--pack-hommer .ozc-single-product__cta form.cart .button.alt:hover {
  background: #d75e16;
  border-color: #d75e16;
  color: #fff;
  box-shadow: 0 8px 20px rgba(237, 106, 26, 0.22);
}

.ozc-single-product--pack-hommer .ozc-single-product__cta form.cart .single_add_to_cart_button:disabled,
.ozc-single-product--pack-hommer .ozc-single-product__cta form.cart .button.alt:disabled {
  opacity: 0.55;
  box-shadow: none;
  cursor: not-allowed;
}

.ozc-single-product--pack-hommer .ozc-single-product__cta table.variations {
  width: 100%;
  margin-bottom: 0.35rem;
}

.ozc-single-product--pack-hommer .ozc-single-product__cta table.variations select {
  border-radius: var(--ozc-sp-radius-sm);
  border: 1px solid var(--ozc-sp-border);
  padding: 0.45rem 0.65rem;
  min-height: 44px;
  background: var(--ozc-sp-surface);
  color: var(--ozc-sp-text);
}

.ozc-single-product--pack-hommer .ozc-single-product__cta .reset_variations {
  color: var(--ozc-sp-accent);
  font-size: 0.8125rem;
  text-decoration: none;
}

.ozc-single-product--pack-hommer .ozc-single-product__cta .reset_variations:hover {
  text-decoration: underline;
}

.ozc-single-product--pack-hommer .ozc-single-product__cta .stock {
  margin: 0;
  font-weight: 600;
}

/* "Consultar": botón a ancho completo con CONTORNO gris (neutro), no verde.
 * Divisor superior para separarlo del botón naranja (como la ficha objetivo). */
.ozc-single-product--pack-hommer .ozc-single-product__wa {
  width: 100%;
  padding-top: 1rem;
  border-top: 1px solid var(--ozc-sp-border);
  display: flex;
  justify-content: flex-start;   /* alineado a la IZQUIERDA */
}

.ozc-single-product--pack-hommer .ozc-single-product__wa .ozc-product-card__wa-btn {
  width: var(--ozc-sp-wa-width) !important;   /* ancho controlado por la variable de arriba */
  max-width: 100%;
  min-height: 42px;
  padding: 0.45rem 1.75rem;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ozc-sp-border);
  border-radius: 8px;
  background: var(--ozc-sp-surface);
  color: var(--ozc-sp-muted);
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: none;
  transition: background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.ozc-single-product--pack-hommer .ozc-single-product__wa .ozc-product-card__wa-btn::before {
  content: '';
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ozc-single-product--pack-hommer .ozc-single-product__wa .ozc-product-card__wa-btn:hover,
.ozc-single-product--pack-hommer .ozc-single-product__wa .ozc-product-card__wa-btn:focus-visible {
  background: var(--ozc-sp-surface);
  border-color: #2ecc71;
  color: #1f7a4f;
}

.ozc-single-product--pack-hommer .ozc-single-product__wa .ozc-product-card__wa-btn:focus-visible {
  outline: 2px solid rgba(46, 204, 113, 0.18);
  outline-offset: 2px;
}

/* Meta / categoría */
.ozc-single-product--pack-hommer .ozc-single-product__meta {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ozc-sp-muted);
  padding-top: 1rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--ozc-sp-border);
}

.ozc-single-product--pack-hommer .ozc-single-product__meta .product_meta {
  margin: 0;
}

.ozc-single-product--pack-hommer .ozc-single-product__meta .product_meta > span {
  display: block;
  margin-bottom: 0.35rem;
}

.ozc-single-product--pack-hommer .ozc-single-product__meta a {
  color: var(--ozc-sp-accent);
  text-decoration: none;
  font-weight: 600;
}

.ozc-single-product--pack-hommer .ozc-single-product__meta a:hover {
  text-decoration: underline;
}

/* Pestañas Woo (ficha con body.ozc-single-product-layout) */
body.ozc-single-product-layout.single-product div.product .woocommerce-tabs.wc-tabs-wrapper {
  box-sizing: border-box;
  width: 100%;
  margin: 2rem auto 2.5rem;
  float: none;
  clear: both;
}

body.ozc-single-product-layout.single-product div.product .woocommerce-tabs :is(ul.tabs, ul.wc-tabs) {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
  border-bottom: 1px solid #e5e7eb;
  background: transparent;
}

body.ozc-single-product-layout.single-product div.product .woocommerce-tabs :is(ul.tabs, ul.wc-tabs)::before,
body.ozc-single-product-layout.single-product div.product .woocommerce-tabs :is(ul.tabs, ul.wc-tabs)::after {
  display: none;
  content: none;
}

body.ozc-single-product-layout.single-product div.product .woocommerce-tabs :is(ul.tabs, ul.wc-tabs) li {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}

body.ozc-single-product-layout.single-product div.product .woocommerce-tabs :is(ul.tabs, ul.wc-tabs) li a {
  display: inline-block;
  padding: 0.625rem 0.15rem 0.9rem;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
  color: #6b7280;
  text-decoration: none;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: transparent;
  box-shadow: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

body.ozc-single-product-layout.single-product div.product .woocommerce-tabs :is(ul.tabs, ul.wc-tabs) li.active a,
body.ozc-single-product-layout.single-product div.product .woocommerce-tabs :is(ul.tabs, ul.wc-tabs) li a:hover,
body.ozc-single-product-layout.single-product div.product .woocommerce-tabs :is(ul.tabs, ul.wc-tabs) li a:focus {
  color: #0f3d5e;
  border-bottom-color: #0f3d5e;
}

body.ozc-single-product-layout.single-product div.product .woocommerce-tabs .woocommerce-Tabs-panel {
  box-sizing: border-box;
  margin: 1rem 0 0;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  border: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #4b5563;
}

body.ozc-single-product-layout.single-product div.product .woocommerce-tabs .woocommerce-Tabs-panel h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.25;
  color: #111827;
}

body.ozc-single-product-layout.single-product div.product .woocommerce-tabs .woocommerce-Tabs-panel h3,
body.ozc-single-product-layout.single-product div.product .woocommerce-tabs .woocommerce-Tabs-panel h4 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  color: #374151;
}

body.ozc-single-product-layout.single-product div.product .woocommerce-tabs .woocommerce-Tabs-panel p {
  margin: 0 0 1rem;
}

body.ozc-single-product-layout.single-product div.product .woocommerce-tabs .woocommerce-Tabs-panel p:last-child {
  margin-bottom: 0;
}

body.ozc-single-product-layout.single-product div.product .woocommerce-tabs .woocommerce-Tabs-panel :is(ul, ol) {
  margin: 0.25rem 0 1rem;
  padding-left: 1.25rem;
}

body.ozc-single-product-layout.single-product div.product .woocommerce-tabs .woocommerce-Tabs-panel li + li {
  margin-top: 0.45rem;
}

body.ozc-single-product-layout.single-product div.product .woocommerce-tabs .woocommerce-Tabs-panel :is(strong, b) {
  color: #374151;
  font-weight: 600;
}

body.ozc-single-product-layout.single-product div.product .woocommerce-tabs :is(table.woocommerce-product-attributes, table.shop_attributes) {
  width: 100%;
  font-size: 0.98rem;
  border-collapse: collapse;
}

body.ozc-single-product-layout.single-product div.product .woocommerce-tabs :is(table.woocommerce-product-attributes, table.shop_attributes) th,
body.ozc-single-product-layout.single-product div.product .woocommerce-tabs :is(table.woocommerce-product-attributes, table.shop_attributes) td {
  padding: 0.85rem 0.65rem;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
  color: #4b5563;
}

body.ozc-single-product-layout.single-product div.product .woocommerce-tabs :is(table.woocommerce-product-attributes, table.shop_attributes) th {
  color: #374151;
  font-weight: 600;
}

body.ozc-single-product-layout.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes tr:nth-child(even) td,
body.ozc-single-product-layout.single-product div.product .woocommerce-tabs table.woocommerce-product-attributes tr:nth-child(even) th {
  background: rgba(244, 247, 249, 0.65);
}

/* Ficha single — móvil / tablet estrecha: título fijo 26px; columna cantidad → carrito (anula clamp/flex del pack) */
@media (max-width: 991px) {
  .ozc-single-product--pack-hommer .ozc-single-product__title .product_title,
  .ozc-single-product--pack-hommer .ozc-single-product__title h1 {
    font-size: 26px;
  }
}
