/* OZ Cotizador — Design pack "wellpro" (admin: WellPro)
 *
 * Estiliza las product cards que renderiza el Cotizador dentro de:
 *  - Sliders/carruseles de OZ-Sliders ([oz_wc_products], ul.products.ozs__track)
 *  - Archivos de tienda / categorías (cuando se reemplaza el loop de Woo)
 *  - Relacionados / upsells / cross-sells
 *
 * Identidad WellPro: card blanca limpia + botón "Agregar" naranja sólido,
 * con stepper de cantidad de botones −/+ bordeados (estilo de la referencia).
 *
 * Estructura:
 *  - Cards:        .ozc-product-card__*  bajo  .ozc-product-card--pack-wellpro
 *  - Ficha single: .ozc-single-product__* bajo .ozc-single-product--pack-wellpro
 *
 * Toda la paleta vive en las variables del primer bloque: cambiar la marca
 * es editar esos valores, no el resto del archivo.
 */

.ozc-product-card--pack-wellpro {
  --ozc-pack-primary: #f37021;          /* naranja "Agregar" / acentos */
  --ozc-pack-primary-hover: #e15f12;
  --ozc-pack-primary-soft: #fff3ea;     /* tinte naranja muy claro (hover stepper) */
  --ozc-pack-surface: #ffffff;
  --ozc-pack-border: #e6e8ec;           /* borde de la card */
  --ozc-pack-control-border: #e2e5ea;   /* borde de los botones de cantidad */
  --ozc-pack-text: #1f2937;
  --ozc-pack-muted: #6b7280;
  --ozc-pack-radius: 14px;
  --ozc-pack-btn-radius: 8px;

  /* --- Escala responsive progresiva: valores base (>1440px).
         Las media queries del final solo reajustan estas variables. --- */
  --ozc-pack-control-h: 2rem;           /* altura común: stepper + botón */
  --ozc-pack-pad: 1.1rem;               /* padding interno de la card */
  --ozc-pack-img-max: 300px;            /* tamaño máx. de la imagen */
  --ozc-pack-title-fs: 0.95rem;         /* título */
  --ozc-pack-cat-fs: 0.88rem;           /* categoría */
  --ozc-pack-brand-fs: 0.82rem;         /* marca */
  --ozc-pack-price-fs: 1rem;            /* precio */
  --ozc-pack-excerpt-fs: 0.85rem;       /* extracto */
  --ozc-pack-actions-gap: 0.9rem;       /* gap entre stepper y "Agregar" */
  --ozc-pack-qty-size: 2rem;            /* ancho de − / + / input */
  --ozc-pack-qty-fs: 1rem;              /* símbolo − / + */
  --ozc-pack-btn-fs: 0.85rem;           /* texto "Agregar" */

  box-sizing: border-box;
  background: var(--ozc-pack-surface);
  border: 1px solid var(--ozc-pack-border);
  border-radius: var(--ozc-pack-radius);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
  padding: var(--ozc-pack-pad) var(--ozc-pack-pad) calc(var(--ozc-pack-pad) + 0.1rem);
  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-wellpro:hover,
.ozc-product-card--pack-wellpro:focus-within {
  border-color: #d7dbe1;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

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

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

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

/* Marca como texto “Marca: …”, no badge sobre la imagen */
.ozc-product-card--pack-wellpro .ozc-product-card__media .ozc-product-card__badge {
  display: none;
}

.ozc-product-card--pack-wellpro .ozc-product-card__brand {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  font-size: var(--ozc-pack-brand-fs);
  line-height: 1.35;
  color: var(--ozc-pack-muted);
}

.ozc-product-card--pack-wellpro .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.5rem 0.35rem 0.6rem;
  margin: 0 -0.35rem;
  text-decoration: none;
  color: inherit;
}

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

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

.ozc-product-card--pack-wellpro .ozc-product-card__media img,
.ozc-product-card--pack-wellpro .ozc-product-card__placeholder {
  width: 100%;
  max-width: var(--ozc-pack-img-max);
  height: auto;
  max-height: var(--ozc-pack-img-max);
  margin: 0 auto;
  object-fit: contain;
  display: block;
  border: 1px solid #ddd;
  border-radius: 0 20px 0 20px;
}

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

/* Categoría */
.ozc-product-card--pack-wellpro .ozc-product-card__category {
  width: 100%;
  margin-top: 0.4rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  font-size: var(--ozc-pack-cat-fs);
  font-weight: 600;
  line-height: 1.3;
  color: var(--ozc-pack-muted);
}

.ozc-product-card--pack-wellpro .ozc-product-card__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: var(--ozc-pack-title-fs);
  font-weight: 500;
  line-height: 1.35;
  margin: 0;
  color: var(--ozc-pack-text);
  min-height: 0;
  overflow: hidden;
  word-break: break-word;
}

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

.ozc-product-card--pack-wellpro .ozc-product-card__title a:hover,
.ozc-product-card--pack-wellpro .ozc-product-card__title a:focus-visible {
  color: var(--ozc-pack-primary);
}

.ozc-product-card--pack-wellpro .ozc-product-card__excerpt {
  font-size: var(--ozc-pack-excerpt-fs);
  line-height: 1.4;
  color: var(--ozc-pack-muted);
}

.ozc-product-card--pack-wellpro .ozc-product-card__price {
  font-size: var(--ozc-pack-price-fs);
  font-weight: 700;
  color: var(--ozc-pack-text);
}

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

/* =========================================================
   Fila de acciones: stepper [- 1 +] a la izquierda,
   botón "Agregar" naranja ocupando el resto a la derecha.
   ========================================================= */
.ozc-product-card--pack-wellpro .ozc-product-card__actions{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;                 /* siempre en una sola línea */
  align-items: center;
  gap: var(--ozc-pack-actions-gap);
  width: 100%;                       /* se adapta al ancho de la tarjeta en todos los anchos */
  max-width: 100%;
  margin-top: 0.4rem;
}

/* Selector de cantidad: ancho según su contenido */
.ozc-product-card--pack-wellpro .ozc-product-card__actions > :first-child{
  flex: 0 0 auto;
}

/* Botón Agregar: ocupa todo el espacio restante */
.ozc-product-card--pack-wellpro .ozc-product-card__actions > :last-child{
  flex: 1 1 auto;
}

/* Stepper: contenedor transparente, botones −/+ separados y bordeados */
.ozc-product-card--pack-wellpro .ozc-product-card__qty {
  order: 1;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: stretch;
  gap: 0.35rem;
  margin: 0;
  height: auto;
  min-height: var(--ozc-pack-control-h);
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.ozc-product-card--pack-wellpro .ozc-product-card__qty-btn {
  width: var(--ozc-pack-qty-size);
  min-width: var(--ozc-pack-qty-size);
  height: auto;
  min-height: var(--ozc-pack-control-h);
  border: 1px solid var(--ozc-pack-control-border);
  border-radius: var(--ozc-pack-btn-radius);
  background: var(--ozc-pack-surface);
  color: var(--ozc-pack-primary);
  font-size: var(--ozc-pack-qty-fs);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.ozc-product-card--pack-wellpro .ozc-product-card__qty-btn:hover,
.ozc-product-card--pack-wellpro .ozc-product-card__qty-btn:focus-visible {
  border-color: var(--ozc-pack-primary);
  background: var(--ozc-pack-primary-soft);
  color: var(--ozc-pack-primary-hover);
  outline: none;
}

.ozc-product-card--pack-wellpro .ozc-product-card__qty-input {
  flex: 0 0 auto;                    /* no crece: mantiene − 1 + juntos a cualquier ancho */
  width: var(--ozc-pack-qty-size);
  min-width: 1.6rem;
  height: auto;
  min-height: var(--ozc-pack-control-h);
  padding: 0 0.15rem;
  border: none;
  background: transparent;
  color: var(--ozc-pack-text);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

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

/* Botón "Agregar" naranja */
.ozc-product-card--pack-wellpro .ozc-product-card__btn--primary {
  order: 2;
  flex: 1 1 auto;
  min-width: 0;
  min-height: var(--ozc-pack-control-h);
  padding: 0.25rem 0.7rem;
  border: none;
  border-radius: var(--ozc-pack-btn-radius);
  background: var(--ozc-pack-primary);
  color: #ffffff;
  font-size: var(--ozc-pack-btn-fs);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: none;
  text-decoration: none;
  justify-content: center;
  box-shadow: none;
  cursor: pointer;
  transition: background-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

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

.ozc-product-card--pack-wellpro .ozc-product-card__btn--primary:hover {
  background: var(--ozc-pack-primary-hover);
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(243, 112, 33, 0.28);
  transform: translateY(-1px);
}

.ozc-product-card--pack-wellpro .ozc-product-card__btn--primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.32);
}

.ozc-product-card--pack-wellpro .ozc-product-card__btn--primary:focus:not(:focus-visible) {
  background: var(--ozc-pack-primary);
  color: #ffffff;
}

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

/* WhatsApp (si está activo): verde estándar, ancho completo */
.ozc-product-card--pack-wellpro .ozc-product-card__wa {
  width: 100%;
}

.ozc-product-card--pack-wellpro .ozc-product-card__wa-btn {
  width: 100%;
  min-height: var(--ozc-pack-control-h);
  padding: 0.4rem 0.7rem;
  border: 1px solid #b6e3c9;
  border-radius: var(--ozc-pack-btn-radius);
  background: #e9fbef;
  color: #1f7a4f;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: none;
  justify-content: center;
  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-wellpro .ozc-product-card__wa-btn:hover,
.ozc-product-card--pack-wellpro .ozc-product-card__wa-btn:focus-visible {
  border-color: #9ed8b8;
  background: #dff3e8;
  color: #176541;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.ozc-product-card--pack-wellpro .ozc-product-card__wa-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.25);
}

.ozc-product-card--pack-wellpro .ozc-product-card__wa-btn::after {
  content: '';
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  margin-left: 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;
}

/* =========================================================
   Escala responsive progresiva de la tarjeta (pack wellpro)
   Desktop-first: cada breakpoint solo reajusta las variables.
   >1440 = valores base · luego 1440 → 1024 → 768 → 480 → 425.
   ========================================================= */
@media (max-width: 1440px) {
  .ozc-product-card--pack-wellpro {
    --ozc-pack-control-h: 1.9rem;
    --ozc-pack-pad: 1rem;
    --ozc-pack-img-max: 280px;
    --ozc-pack-title-fs: 0.92rem;
    --ozc-pack-cat-fs: 0.86rem;
    --ozc-pack-brand-fs: 0.81rem;
    --ozc-pack-price-fs: 0.97rem;
    --ozc-pack-excerpt-fs: 0.83rem;
    --ozc-pack-actions-gap: 0.8rem;
    --ozc-pack-qty-size: 1.95rem;
    --ozc-pack-qty-fs: 0.97rem;
    --ozc-pack-btn-fs: 0.82rem;
  }
}

@media (max-width: 1024px) {
  .ozc-product-card--pack-wellpro {
    --ozc-pack-control-h: 1.85rem;
    --ozc-pack-pad: 0.95rem;
    --ozc-pack-img-max: 260px;
    --ozc-pack-title-fs: 0.9rem;
    --ozc-pack-cat-fs: 0.85rem;
    --ozc-pack-brand-fs: 0.8rem;
    --ozc-pack-price-fs: 0.95rem;
    --ozc-pack-excerpt-fs: 0.82rem;
    --ozc-pack-actions-gap: 0.7rem;
    --ozc-pack-qty-size: 1.9rem;
    --ozc-pack-qty-fs: 0.95rem;
    --ozc-pack-btn-fs: 0.8rem;
  }
}

@media (max-width: 768px) {
  .ozc-product-card--pack-wellpro {
    --ozc-pack-control-h: 1.8rem;
    --ozc-pack-pad: 0.9rem;
    --ozc-pack-img-max: 240px;
    --ozc-pack-title-fs: 0.88rem;
    --ozc-pack-cat-fs: 0.83rem;
    --ozc-pack-brand-fs: 0.79rem;
    --ozc-pack-price-fs: 0.93rem;
    --ozc-pack-excerpt-fs: 0.8rem;
    --ozc-pack-actions-gap: 0.6rem;
    --ozc-pack-qty-size: 1.85rem;
    --ozc-pack-qty-fs: 0.92rem;
    --ozc-pack-btn-fs: 0.78rem;
  }
}

@media (max-width: 480px) {
  .ozc-product-card--pack-wellpro {
    --ozc-pack-control-h: 1.75rem;
    --ozc-pack-pad: 0.85rem;
    --ozc-pack-img-max: 220px;
    --ozc-pack-title-fs: 0.86rem;
    --ozc-pack-cat-fs: 0.82rem;
    --ozc-pack-brand-fs: 0.78rem;
    --ozc-pack-price-fs: 0.92rem;
    --ozc-pack-excerpt-fs: 0.79rem;
    --ozc-pack-actions-gap: 0.5rem;
    --ozc-pack-qty-size: 1.8rem;
    --ozc-pack-qty-fs: 0.9rem;
    --ozc-pack-btn-fs: 0.76rem;
  }
}

@media (max-width: 425px) {
  .ozc-product-card--pack-wellpro {
    --ozc-pack-control-h: 1.7rem;
    --ozc-pack-pad: 0.8rem;
    --ozc-pack-img-max: 200px;
    --ozc-pack-title-fs: 0.84rem;
    --ozc-pack-cat-fs: 0.8rem;
    --ozc-pack-brand-fs: 0.76rem;
    --ozc-pack-price-fs: 0.9rem;
    --ozc-pack-excerpt-fs: 0.78rem;
    --ozc-pack-actions-gap: 0.45rem;
    --ozc-pack-qty-size: 1.7rem;
    --ozc-pack-qty-fs: 0.88rem;
    --ozc-pack-btn-fs: 0.72rem;
  }
}

/* =========================================================
   Ficha individual (body.ozc-single-product-layout)
   — recoloreada a la identidad naranja para coherencia del pack
   ========================================================= */

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-wellpro {
  --ozc-sp-bg: #f5f7fa;
  --ozc-sp-surface: #ffffff;
  --ozc-sp-accent: #e15f12;            /* naranja para enlaces/acentos de texto */
  --ozc-sp-primary: #f37021;           /* botón añadir al carrito */
  --ozc-sp-primary-hover: #e15f12;
  --ozc-sp-wa: #2ecc71;
  --ozc-sp-wa-hover: #27ae60;
  --ozc-sp-text: #111827;
  --ozc-sp-muted: #6b7280;
  --ozc-sp-border: #e5e7eb;
  --ozc-sp-radius: 14px;
  --ozc-sp-radius-sm: 8px;
  --ozc-sp-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  --ozc-sp-gallery-main: 650px;

  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-wellpro .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-wellpro .ozc-single-product__media,
.ozc-single-product--pack-wellpro .ozc-single-product__summary {
  min-width: 0;
}

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

/* Galería */
.ozc-single-product--pack-wellpro .ozc-single-product__media {
  position: relative;
  align-self: start;
  padding: clamp(0.75rem, 2vw, 1rem);
  border: 1px solid var(--ozc-sp-border);
  border-radius: var(--ozc-sp-radius);
  box-shadow: none;
}

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

.ozc-single-product--pack-wellpro .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-wellpro .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;
}

.ozc-single-product--pack-wellpro .woocommerce-product-gallery.oz-wc-gallery--vertical {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
}

.ozc-single-product--pack-wellpro .woocommerce-product-gallery.oz-wc-gallery--vertical .flex-viewport {
  order: 2;
  flex: 1 1 auto;
  width: 100%;
  min-width: 280px;
  max-width: min(var(--ozc-sp-gallery-main), 100%);
  overflow: hidden;
  position: relative;
}

.ozc-single-product--pack-wellpro .woocommerce-product-gallery.oz-wc-gallery--vertical .flex-viewport img {
  display: block;
  max-width: 100%;
  height: auto;
}

.ozc-single-product--pack-wellpro .woocommerce-product-gallery.oz-wc-gallery--vertical .flex-control-thumbs {
  order: 1;
  flex: 0 0 4.5rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 4.5rem;
  max-width: 4.5rem;
  max-height: min(var(--ozc-sp-gallery-main), 85vh);
  overflow-y: auto;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0.5rem;
}

.ozc-single-product--pack-wellpro .woocommerce-product-gallery.oz-wc-gallery--vertical .flex-control-thumbs li {
  width: 100%;
  float: none;
}

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

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

.ozc-single-product--pack-wellpro .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-wellpro .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-wellpro .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-wellpro .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-wellpro .flex-control-thumbs img.flex-active,
.ozc-single-product--pack-wellpro .flex-control-thumbs li:hover img {
  opacity: 1;
  border-color: #f3b48a;
  box-shadow: 0 0 0 1px rgba(243, 112, 33, 0.18);
}

/* Columna resumen */
.ozc-single-product--pack-wellpro .ozc-single-product__summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

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

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

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

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

.ozc-single-product--pack-wellpro .ozc-single-product__title .product_title,
.ozc-single-product--pack-wellpro .ozc-single-product__title h1 {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 1.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ozc-sp-text);
}

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

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

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

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

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

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

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

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

/* Add to cart (naranja) */
.ozc-single-product--pack-wellpro .ozc-single-product__cta form.cart {
  margin: 0;
  padding: 0;
}

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

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

.ozc-single-product--pack-wellpro .ozc-single-product__cta form.cart .single_add_to_cart_button,
.ozc-single-product--pack-wellpro .ozc-single-product__cta form.cart .button.alt,
.ozc-single-product--pack-wellpro .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: 44px;
  padding: 0 1.35rem;
  border-radius: 8px;
  border: 1px solid var(--ozc-sp-primary);
  background: var(--ozc-sp-primary);
  color: #ffffff;
  font-size: 0.95rem;
  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-wellpro .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-wellpro .ozc-single-product__cta form.cart .single_add_to_cart_button:hover,
.ozc-single-product--pack-wellpro .ozc-single-product__cta form.cart .button.alt:hover {
  background: var(--ozc-sp-primary-hover);
  border-color: var(--ozc-sp-primary-hover);
  color: #ffffff;
  box-shadow: none;
}

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

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

.ozc-single-product--pack-wellpro .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-wellpro .ozc-single-product__cta .reset_variations {
  color: var(--ozc-sp-accent);
  font-size: 0.8125rem;
  text-decoration: none;
}

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

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

/* WhatsApp a ancho completo (verde) */
.ozc-single-product--pack-wellpro .ozc-single-product__wa {
  width: 100%;
}

.ozc-single-product--pack-wellpro .ozc-single-product__wa .ozc-product-card__wa-btn {
  width: 100%;
  min-height: 40px;
  padding: 0.55rem 1rem;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #b6e3c9;
  border-radius: 8px;
  background: #e8f8f0;
  color: #1f7a4f;
  font-size: 0.93rem;
  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-wellpro .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-wellpro .ozc-single-product__wa .ozc-product-card__wa-btn:hover,
.ozc-single-product--pack-wellpro .ozc-single-product__wa .ozc-product-card__wa-btn:focus-visible {
  background: #dff3e8;
  border-color: #9ed8b8;
  color: #176541;
}

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

/* Meta / categoría */
.ozc-single-product--pack-wellpro .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-wellpro .ozc-single-product__meta .product_meta {
  margin: 0;
}

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

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

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

/* Pestañas Woo */
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: #e15f12;
  border-bottom-color: #f37021;
}

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: 14px;
  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 */
@media (max-width: 991px) {
  .ozc-single-product--pack-wellpro .ozc-single-product__title .product_title,
  .ozc-single-product--pack-wellpro .ozc-single-product__title h1 {
    font-size: 26px;
  }
}

/* ==========================================================================
   Ficha single (wellpro): ajustes de maqueta
   - Título con subrayado naranja + flechas producto anterior/siguiente
   - Precio oculto · Botón "Agregar" compacto (sin ícono)
   - Categoría/Marca con divisores
   - Acciones: Consulte (verde) + Compartir (menú de redes)
   ========================================================================== */

/* Título: fila (título izq. / flechas der.) con subrayado naranja */
.ozc-single-product--pack-wellpro .ozc-single-product__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--ozc-sp-accent, #f15a00);
}

.ozc-single-product--pack-wellpro .ozc-single-product__title .product_title,
.ozc-single-product--pack-wellpro .ozc-single-product__title h1 {
  flex: 1 1 auto;
  min-width: 0;
}

/* Flechas producto anterior / siguiente */
.ozc-single-product--pack-wellpro .ozc-single-product__nav {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 0.4rem;
}

.ozc-single-product--pack-wellpro .ozc-single-product__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ozc-sp-accent, #f15a00);
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1;
  text-decoration: none;
  border: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.ozc-single-product--pack-wellpro .ozc-single-product__nav-btn:hover {
  background: var(--ozc-sp-primary-hover, #d34e00);
  transform: translateY(-1px);
  color: #ffffff;
}

.ozc-single-product--pack-wellpro .ozc-single-product__nav-btn.is-disabled {
  background: #e5e7eb;
  color: #9ca3af;
  pointer-events: none;
}

/* Precio oculto en la ficha (tienda tipo cotización) */
.ozc-single-product--pack-wellpro .ozc-single-product__price {
  display: none;
}

/* Botón "Agregar": compacto (no a todo el ancho) y sin ícono de carrito */
.ozc-single-product--pack-wellpro .ozc-single-product__cta form.cart .single_add_to_cart_button,
.ozc-single-product--pack-wellpro .ozc-single-product__cta form.cart .button.alt,
.ozc-single-product--pack-wellpro .ozc-single-product__cta form.cart button[type='submit'].single_add_to_cart_button {
  flex: 0 0 auto;
  width: auto;
}

.ozc-single-product--pack-wellpro .ozc-single-product__cta form.cart .single_add_to_cart_button::before {
  content: none;
}

/* Categoría / Marca con líneas divisorias */
.ozc-single-product--pack-wellpro .ozc-single-product__meta .product_meta > span {
  display: block;
  margin: 0;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--ozc-sp-border, #e5e7eb);
}

.ozc-single-product--pack-wellpro .ozc-single-product__meta .product_meta > span:last-child {
  border-bottom: 0;
}

.ozc-single-product--pack-wellpro .ozc-single-product__meta .product_meta > span:empty {
  display: none;
}

/* Fila de acciones: Consulte (verde) + Compartir (azul) */
.ozc-single-product--pack-wellpro .ozc-single-product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.25rem;
}

/* Consulte = WhatsApp en verde sólido */
.ozc-single-product--pack-wellpro .ozc-single-product__consulte {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.5rem;
  border: 0;
  border-radius: 8px;
  background: #2ecc71;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.ozc-single-product--pack-wellpro .ozc-single-product__consulte:hover {
  background: #27ae60;
  color: #ffffff;
}

/* Compartir: menú desplegable sin JS (<details>/<summary>) */
.ozc-single-product--pack-wellpro .ozc-single-product__share {
  position: relative;
}

.ozc-single-product--pack-wellpro .ozc-single-product__share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.5rem;
  border-radius: 8px;
  background: #2d6fb3;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background-color 0.2s ease;
}

.ozc-single-product--pack-wellpro .ozc-single-product__share-btn::-webkit-details-marker {
  display: none;
}

.ozc-single-product--pack-wellpro .ozc-single-product__share-btn:hover {
  background: #245a91;
}

.ozc-single-product--pack-wellpro .ozc-single-product__share[open] .ozc-single-product__share-btn {
  background: #245a91;
}

.ozc-single-product--pack-wellpro .ozc-single-product__share-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 6px);
  left: 0;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

.ozc-single-product--pack-wellpro .ozc-single-product__share-link {
  display: flex;
  align-items: center;
  padding: 0.7rem 1rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: filter 0.15s ease;
}

.ozc-single-product--pack-wellpro .ozc-single-product__share-link:hover {
  filter: brightness(1.08);
  color: #ffffff;
}

.ozc-single-product--pack-wellpro .ozc-single-product__share-link--facebook  { background: #1877f2; }
.ozc-single-product--pack-wellpro .ozc-single-product__share-link--whatsapp  { background: #25d366; }
.ozc-single-product--pack-wellpro .ozc-single-product__share-link--twitter   { background: #1da1f2; }
.ozc-single-product--pack-wellpro .ozc-single-product__share-link--linkedin  { background: #0a66c2; }
.ozc-single-product--pack-wellpro .ozc-single-product__share-link--telegram  { background: #29a9eb; }
.ozc-single-product--pack-wellpro .ozc-single-product__share-link--pinterest { background: #e60023; }

/* Mandar SOLO la fila de acciones (Consulte/Compartir) al final del resumen.
   No tocamos los demás bloques: se quedan en su orden natural del DOM, así el
   bloque de cantidad + Agregar (__cta) no se altera. El resumen ya es flex column. */
.ozc-single-product--pack-wellpro .ozc-single-product__actions {
  order: 1;
}

/* ==========================================================================
   Stepper + botón "Agregar" del single = mismo estilo que las tarjetas del
   catálogo: cajas claras bordeadas con símbolos naranjas + Agregar compacto.
   (Sobrescribe las reglas con !important de loops.css.)
   ========================================================================== */

/* Stepper de CAJAS SEPARADAS — clases reales .oz-qty-stepper__btn--dec / --inc / __input.
   − (caja blanca 8px) | 1 (pastilla gris) | + (caja blanca 8px), con espacios. */

/* Contenedor: sin caja exterior (loops.css), con separación entre cajas */
.ozc-single-product--pack-wellpro .ozc-single-product__cta form.cart .quantity {
  gap: 0.4rem !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  overflow: visible !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}

/* − y + : caja blanca, borde gris, esquinas 8px (las cuatro), símbolo naranja */
.ozc-single-product--pack-wellpro .ozc-single-product__cta form.cart .quantity .oz-qty-stepper__btn,
.ozc-single-product--pack-wellpro .ozc-single-product__cta form.cart .quantity .oz-qty-stepper__btn--dec,
.ozc-single-product--pack-wellpro .ozc-single-product__cta form.cart .quantity .oz-qty-stepper__btn--inc {
  width: 2.4rem !important;
  min-width: 2.4rem !important;
  height: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;
  background: #ffffff !important;
  border: 1px solid #dddddd !important;
  border-radius: 8px !important;
}

/* Número: pastilla gris (totalmente redondeada), sin borde, misma altura que las cajas */
.ozc-single-product--pack-wellpro .ozc-single-product__cta form.cart .quantity input.qty,
.ozc-single-product--pack-wellpro .ozc-single-product__cta form.cart .quantity .oz-qty-stepper__input {
  width: 2.9rem !important;
  min-width: 2.9rem !important;
  height: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #e9ecef !important;
  color: var(--ozc-sp-text, #1f2a44) !important;
  font-weight: 700 !important;
}

/* Botón Agregar: compacto, naranja, redondeado (no a todo el ancho) */
.ozc-single-product--pack-wellpro .ozc-single-product__cta form.cart .single_add_to_cart_button,
.ozc-single-product--pack-wellpro .ozc-single-product__cta form.cart .button.alt,
.ozc-single-product--pack-wellpro .ozc-single-product__cta form.cart button[type='submit'].single_add_to_cart_button {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  height: 44px !important;
  max-height: 44px !important;
  padding: 0 1.75rem !important;
  border-radius: 8px !important;
}
