/* ===================== Cards globales LoQuiero ===================== */
/* Contenedor lógico (puede ser slider, grid, etc.) */
.loq-cards {
  --title-lines: 2;
  --title-lh: 1.22;
  --title-fs-m: 15px;
  --title-fs-d: 17px;
  --badge-yellow: #FFD400;

  --chip-fs: 11px;
  --chip-radius: 999px;

  font-family: inherit;
}

/* ✅ GRID SIEMPRE: Para archivos y búsquedas */
.loq-cards-grid--always {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (min-width: 768px) {
  .loq-cards-grid--always {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 360px) {
  .loq-cards-grid--always {
    grid-template-columns: 1fr;
  }
}

/* ===================== Heading / sección ===================== */

.loq-cards__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.loq-cards__title {
  margin: 0;
  font-weight: var(--loq-font-semibold, 600);
  font-size: 1.25rem;
  line-height: 1.1;
  color: var(--loq-text, #111827);
}

/* ===================== Track móvil (slider) ===================== */

.loq-cards-track-bleed {
  margin-left: -1rem;
  margin-right: -1rem;
  padding-left: 1rem;
}

.loq-cards-track {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.4rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.loq-cards-track::-webkit-scrollbar {
  display: none;
}

/* 👉 Cards más angostas (-15%) para carrusel */
.loq-cards-item {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 116px;
}

/* ===================== Grid desktop ===================== */

@media (min-width:768px) {
  .loq-cards-track-bleed {
    margin: 0;
    padding: 0;
  }

  .loq-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1rem;
  }

  .loq-cards-grid-item {
    height: 100%;
  }
}

/* ===================== Card base ===================== */

.offer-card {
  --lq-sale-bg: #FF6700 !important;
  --lq-sale-color: #ffffff !important;
  background: var(--card-bg, var(--loq-canvas, #FFFFFF));
  border-radius: var(--card-radius, var(--loq-radius-card, 18px));
  border: 1px solid var(--card-border, var(--loq-border-soft, rgba(5, 44, 60, 0.08)));
  box-shadow: var(--card-shadow, var(--loq-shadow-card, 2px 4px 12px #00000014));
  padding: 10px 10px 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform .16s ease,
    border-color .16s ease,
    background-color .16s ease;
}

.offer-card:hover {
  transform: translateY(-3px);
  border-color: var(--loq-accent, #D1D5DB);
}

/* ===================== MODO 4K — ESTILO APPLE / LOQUIERO ===================== */
/* (merge exacto del snippet, SIN CAMBIAR RESULTADO VISUAL) */

.loq-cards--4k .offer-card {
  position: relative;
  background: var(--card-bg, var(--loq-canvas, #ffffff));
  border: 0;
  border-radius: var(--card-radius, var(--loq-radius-card, 24px));
  padding: 12px 14px 0px;
  box-shadow: var(--loq-shadow-card, 2px 4px 12px #00000014);
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}

.loq-cards--4k .offer-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-hover, 0 18px 46px rgba(5, 44, 60, 0.14));
}

/* ===================== Imagen ===================== */

.offer-card__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: transparent;
}

.loq-cards--4k .offer-card__media {
  margin-bottom: -15px;
}

.offer-card__media.ratio-basic {
  padding-top: 100%;
}

.offer-card__media .lq-img {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.loq-cards--4k .offer-card__media .lq-img {
  width: 100%;
  height: auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 1px;
  transform: scale(0.75);
}

/* ============================================================
   HOVER OVERLAY — Acción de carrito sobre la imagen
   ============================================================ */

/* Overlay: oculto por defecto, slide-up en hover */
.lq-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* Cubre solo la zona de imagen */
  height: calc(100% - 1px);
  border-radius: 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 35%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(.22,.61,.36,1);
  pointer-events: none;
  z-index: 10;
}

.loq-cards--4k .offer-card__media .lq-card-overlay {
  border-radius: 14px;
}

.offer-card:hover .lq-card-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lq-card-overlay__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0 10px;
  justify-content: center;
}

/* Botón Agregar */
.lq-card-overlay__inner > a.add_to_cart_button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  height: 36px;
  background: #1AA4B8;
  color: #ffffff !important;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--loq-font-family, 'Epilogue', sans-serif);
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(26, 164, 184, 0.45);
  transition: background 0.15s ease, transform 0.1s ease;
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.lq-card-overlay__inner > a.add_to_cart_button:hover {
  background: #158394;
  transform: translateY(-1px);
}

.lq-card-overlay__inner > a.add_to_cart_button:active {
  transform: scale(0.97);
}

/* Estado cargando AJAX */
.lq-card-overlay__inner > a.add_to_cart_button.loading {
  opacity: 0.6;
  pointer-events: none;
}
.lq-card-overlay__inner > a.add_to_cart_button.added {
  background: #10b981;
  box-shadow: 0 3px 12px rgba(16, 185, 129, 0.4);
}

/* Botón Ver producto (ghost) */
.lq-card-overlay__view {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  color: #ffffff !important;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--loq-font-family, 'Epilogue', sans-serif);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: background 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.lq-card-overlay__view:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Mobile FAB Pill — botón flotante siempre visible en mobile */
.lq-card-fab {
  display: none; /* oculto en desktop (overlay lo reemplaza) */
}

@media (max-width: 1023px) {
  /* Ocultar overlay en mobile */
  .lq-card-overlay {
    display: none !important;
  }

  /* Mostrar FAB circle en mobile */
  .lq-card-fab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5px;
    position: absolute;
    bottom: 12px;
    right: 8px;
    padding: 0;
    width: 34px;
    height: 34px;
    background: #1AA4B8;
    border-radius: 50%;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--loq-font-family, 'Epilogue', sans-serif);
    box-shadow: 0 2px 10px rgba(26, 164, 184, 0.4);
    z-index: 15;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    text-decoration: none;
    white-space: nowrap;
  }

  .lq-card-fab:active {
    transform: scale(0.95);
    box-shadow: 0 1px 6px rgba(26, 164, 184, 0.3);
  }

  .lq-card-fab.loading {
    opacity: 0.6;
    pointer-events: none;
  }

  .lq-card-fab.added {
    background: #10b981;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
  }

  .lq-card-fab svg {
    flex-shrink: 0;
  }
}

/* Ocultar el texto "Ver carrito" nativo de WooCommerce que se inyecta tras agregar */
.offer-card .added_to_cart.wc-forward {
  display: none !important;
}



/* ===================== Badge Sale — Promo fuerte (Circular y Destacada) ===================== */

.lq-badge-sale {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 30;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;
  border-radius: 50%;

  /* SOLID BRAND ORANGE */
  background: #FF6700 !important;
  color: #ffffff !important;

  font-family: var(--loq-font-family, sans-serif);
  line-height: 1;
  text-align: center;
  box-shadow: 0 4px 12px rgba(255, 103, 0, 0.25) !important;
  border: 1.5px solid #ffffff !important;
}

.lq-badge-sale .lq-badge-pct {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: block;
}

.lq-badge-sale .lq-badge-text {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-top: -1px;
  display: block;
}

@media (min-width:768px) {
  .lq-badge-sale {
    top: 12px;
    right: 12px;
    width: 52px;
    height: 52px;
  }

  .lq-badge-sale .lq-badge-pct {
    font-size: 14px;
  }

  .lq-badge-sale .lq-badge-text {
    font-size: 8.5px;
  }
}

/* ===================== Body ===================== */

.offer-card__body {
  padding: 4px 2px 2px;
  display: flex;
  flex-direction: column;
}

/* ===================== TÍTULO DE PRODUCTO ===================== */

.offer-card__title {
  font-family: var(--loq-font-family);
  font-weight: 400;
  font-size: var(--loq-text-base-size);
  /* 14px */
  line-height: 1.25;
  color: var(--loq-text);
  letter-spacing: -0.01em;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.offer-card__title a,
.offer-card__title-link {
  font-weight: 400;
}

/* Contexto visual premium (cards destacadas / 4K) */
.loq-cards--4k .offer-card__title {
  font-weight: 400;
  color: var(--loq-text);
}


/* ===================== Condición ===================== */

.loq-cards--4k .lq-card-condition {
  position: static;
  margin: 2px 0 6px;
  font-size: 10px;
  line-height: 1.3;
  font-weight: var(--loq-font-regular, 400);
  letter-spacing: -0.01em;
  color: var(--loq-text-muted, #6b7280);
}

/* ===================== PRECIO ===================== */

.offer-card__price {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 6px;
}

/* precio viejo */

.offer-card__price-old {
  font-size: 11px;
  color: #94A3B8;
  /* Muted slate gray */
  text-decoration: line-through;
  font-weight: var(--loq-font-regular, 400);
}

/* precio actual */

.offer-card__price-now {
  font-size: 20px;
  font-weight: var(--loq-font-semibold, 600);
  color: var(--loq-text, #0D1214);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.offer-card__price-now.is-sale-price,
.offer-card__price-now.is-transfer-price {
  font-size: 20px;
  color: var(--lq-sale-bg, var(--loq-brand-orange, #FF6700));
  font-weight: 700;
}

@media (min-width: 768px) {
  .offer-card__price-old {
    font-size: 12px;
  }

  .offer-card__price-now {
    font-size: 26px;
  }

  .offer-card__price-now.is-sale-price,
  .offer-card__price-now.is-transfer-price {
    font-size: 26px;
  }
}

/* =========================================================
   PRECIO EN DÓLARES
========================================================= */

/* precio USD referencia */

.offer-card__usd {
  font-size: 10px;
  font-weight: var(--loq-font-medium, 500);
  color: var(--loq-text-muted, #94A3B8);
  margin-top: -3px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.offer-card__usd-price {
  color: var(--loq-text, #64748B);
  font-weight: var(--loq-font-semibold, 700);
}


/* =========================================================
   PRECIO EN EFECTIVO — Bloque de precio destacado
========================================================= */

.offer-card__cash-block {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(5, 44, 60, 0.07);
  font-family: var(--loq-font-family, 'Epilogue', sans-serif);
}

/* Label "En efectivo" con ícono */
.offer-card__cash-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  font-weight: 500;
  color: var(--loq-text-muted, #94A3B8);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.offer-card__cash-icon {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  color: #1AA4B8;
  opacity: 0.7;
}

/* Fila: precio grande + badge ahorro */
.offer-card__cash-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

/* Precio en efectivo — protagonista */
.offer-card__cash-amount {
  font-size: 18px;
  font-weight: 700;
  color: #0B7A8A;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.offer-card__cash-amount .woocommerce-Price-currencySymbol {
  font-size: 0.72em;
  font-weight: 600;
  vertical-align: 0.05em;
}

/* Badge "Ahorrás $X" — texto inline sutil */
.offer-card__cash-saving {
  font-size: 9px;
  font-weight: 600;
  color: #1AA4B8;
  letter-spacing: -0.01em;
  white-space: nowrap;
  line-height: 1.4;
}

/* Desktop: tamaños levemente mayores */
@media (min-width: 768px) {
  .offer-card__cash-block {
    margin-top: 10px;
    padding-top: 10px;
  }

  .offer-card__cash-label {
    font-size: 9.5px;
  }

  .offer-card__cash-icon {
    width: 12px;
    height: 12px;
  }

  .offer-card__cash-amount {
    font-size: 22px;
  }

  .offer-card__cash-saving {
    font-size: 9.5px;
  }
}

/* Carrusel: versión compacta */
.layout-carousel .offer-card__cash-block {
  margin-top: 5px !important;
  padding-top: 5px !important;
}

.layout-carousel .offer-card__cash-label {
  font-size: 7.5px !important;
  margin-bottom: 2px !important;
}

.layout-carousel .offer-card__cash-icon {
  width: 9px !important;
  height: 9px !important;
}

.layout-carousel .offer-card__cash-amount {
  font-size: 14px !important;
}

.layout-carousel .offer-card__cash-saving {
  font-size: 7px !important;
}

@media (max-width: 768px) {
  .layout-carousel .offer-card__cash-amount {
    font-size: 13px !important;
  }
  .layout-carousel .offer-card__cash-saving {
    font-size: 6.5px !important;
  }
}



/* ===================== CUOTAS ===================== */

.offer-card__installments {
  display: inline-flex;
  align-items: center;
  font-family: var(--loq-font-family, 'Epilogue', sans-serif);
  margin-top: 6px;
  margin-bottom: 8px;
  padding: 4px 10px;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 600;
  color: #303030;
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-radius: 999px;
  letter-spacing: -0.01em;
  /* Evitar wrap en cards angostas de carrusel */
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .offer-card__installments {
    font-size: 11.5px;
  }
}

/* Carrusel móvil angosto: fuente mínima para que quepa en 125-145px */
.loq-cards-item .offer-card__installments {
  font-size: 8.8px;
  padding: 2px 5px;
}

.offer-card__installments-amount,
.offer-card__installments span {
  font-weight: inherit;
  color: inherit;
}


/* ===================== Chips ===================== */

.offer-card__chips {
  display: flex;
  flex-direction: row;
  gap: 4px;
  margin-bottom: 15px;
}

.offer-card__chips .lq-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;

  padding: 4px 9px;

  font-size: 8px;
  font-weight: 500;
  line-height: 1;

  border-radius: 5px;

  background: var(--lq-chip-bg, var(--loq-surface, #F3F4F3));
  color: var(--lq-chip-color, var(--loq-text, #000));

  letter-spacing: -0.01em;
  z-index: 999;
}

span.lq-chip.lq-chip--cvn {
  background: var(--lq-chip-cvn-bg, #5A37E6) !important;
  color: var(--lq-chip-cvn-color, #fff) !important;
}

span.lq-chip.lq-chip--custom {
  background: var(--lq-chip-custom-bg, var(--lq-chip-bg, #F3F4F3)) !important;
  color: var(--lq-chip-custom-color, var(--lq-chip-color, #000)) !important;
}

span.lq-chip.lq-chip--ship {
  background: var(--lq-chip-ship-bg, var(--lq-chip-bg, #F3F4F3)) !important;
  color: var(--lq-chip-ship-color, var(--lq-chip-color, #000)) !important;
}

/* ===================== CVN badge desactivado (como snippet) ===================== */

.offer-card__cvn-badge {
  display: none;
}

/* ===================== Mobile tweaks ===================== */

@media (max-width:480px) {
  .loq-cards-item {
    width: 99px;
  }
}



/* ===================== imagen superpuesta de regalo ===================== */



.offer-card__media {
  position: relative;
  /* necesario para posicionar el icono */
}

.offer-card__accessory {
  position: absolute;
  bottom: 15px;
  right: 4px;
  z-index: 2;
}

.offer-card__accessory-icon {
  width: 60px !important;
  height: 60px;
  object-fit: contain;
  padding: 4px;
}

/* =========================================================
   INFO LAYER — MICRO-INTERACCIÓN DE ÉLITE
   ========================================================= */

.offer-card__info-trigger {
  position: absolute;
  top: 14px;
  right: 12px;
  z-index: 35;
  background: none;
  border: none;
  padding: 4px;
  color: var(--loq-text-muted, #9ca3af);
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
  line-height: 0;
  border-radius: 50%;
}

.offer-card__info-trigger:hover {
  color: var(--loq-text, #374151);
  background: rgba(0, 0, 0, 0.03);
}

.offer-card__info-trigger svg {
  width: 18px;
  height: 18px;
}

/* Offset if sale badge is present */
.lq-badge-sale~.offer-card__info-trigger {
  top: 62px;
}

@media (min-width:768px) {
  .lq-badge-sale~.offer-card__info-trigger {
    top: 68px;
  }
}

.offer-card__info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  /* Subido al 70% */
  background: var(--loq-canvas, #ffffff);
  z-index: 50;
  padding: 24px 16px 16px;
  border-top: 1px solid var(--loq-border-soft, #f3f4f6);

  /* Animación Apple: 200ms cubic-bezier */
  transform: translateY(102%);
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);

  display: flex;
  flex-direction: column;
}

.offer-card.is-info-active .offer-card__info-overlay {
  transform: translateY(0);
}

.offer-card__info-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--loq-text-muted, #9ca3af);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.offer-card__info-close:hover {
  background: var(--loq-surface, #f9fafb);
  color: var(--loq-text, #111827);
}

.offer-card__info-inner {
  font-size: 12px;
  line-height: 1.5;
  color: var(--loq-text-muted, #4b5563);
  overflow-y: auto;
  user-select: none;
}

@media (max-width: 767px) {
  .offer-card__info-inner {
    font-size: 10px;
    /* Tamaño 10 solicitado para mobile */
  }
}

/* Glassmorphism hide logic when active */
.offer-card.is-info-active .offer-card__body {
  opacity: 0.3;
  filter: blur(2px);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

/* =========================================================
   CAROUSEL SPECIFIC COMPRESSION & REFINEMENTS
   Afinamiento estético premium de cards dentro de carrusel
   ========================================================= */

/* 1. Compresión de padding y border-radius del contenedor offer-card */
.layout-carousel .offer-card {
  padding: 8px 8px 10px !important;
  border-radius: 16px !important;
}

/* 2. Ajustes en Imagen de Producto */
@media (max-width: 768px) {
  .layout-carousel .loq-cards--4k .offer-card__media {
    margin-bottom: -10px !important;
  }
  .layout-carousel .loq-cards--4k .offer-card__media .lq-img {
    transform: scale(0.8) !important;
    border-radius: 14px !important;
  }
}

/* 3. Escalar Badge de Oferta (Liquid Glass Sale) */
.layout-carousel .lq-badge-sale {
  width: 38px !important;
  height: 38px !important;
  top: 6px !important;
  right: 6px !important;
  border-width: 1px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 2px 4px rgba(255, 255, 255, 0.6) !important;
}

.layout-carousel .lq-badge-sale .lq-badge-pct {
  font-size: 10px !important;
  font-weight: 800 !important;
}

.layout-carousel .lq-badge-sale .lq-badge-text {
  font-size: 6px !important;
  font-weight: 700 !important;
  margin-top: -2px !important;
}

@media (max-width: 768px) {
  .layout-carousel .lq-badge-sale {
    width: 36px !important;
    height: 36px !important;
  }
  .layout-carousel .lq-badge-sale .lq-badge-pct {
    font-size: 10px !important;
  }
  .layout-carousel .lq-badge-sale .lq-badge-text {
    font-size: 6px !important;
    margin-top: -2px !important;
  }
}

/* 4. Escalar Títulos de Producto */
.layout-carousel .offer-card__title {
  font-size: 13px !important;
  line-height: 1.2 !important;
  min-height: 2.4em;
}

@media (max-width: 768px) {
  .layout-carousel .offer-card__title {
    font-size: 12.5px !important;
    min-height: 2.4em;
  }
}

/* 5. Escalar Precios */
.layout-carousel .offer-card__price {
  margin-top: 8px !important;
  margin-bottom: 4px !important;
}

.layout-carousel .offer-card__price-now {
  font-size: 17px !important;
}

.layout-carousel .offer-card__price-now.is-sale-price {
  font-size: 17px !important;
}

.layout-carousel .offer-card__price-old {
  font-size: 10px !important;
}

.layout-carousel .offer-card__usd {
  font-size: 9px !important;
  margin-top: -2px !important;
  margin-bottom: 4px !important;
}

@media (max-width: 768px) {
  .layout-carousel .offer-card__price-now {
    font-size: 16px !important;
  }
  
  .layout-carousel .offer-card__price-now.is-sale-price {
    font-size: 16px !important;
  }
  
  .layout-carousel .offer-card__price-old {
    font-size: 10px !important;
  }
  
  .layout-carousel .offer-card__usd {
    font-size: 8.5px !important;
  }
}

/* 6. Escalar Cuotas */
.layout-carousel .offer-card__installments {
  font-size: 9.2px !important;
  padding: 3px 6px !important;
  margin-top: 2px !important;
  margin-bottom: 4px !important;
}

@media (max-width: 768px) {
  .layout-carousel .offer-card__installments {
    font-size: 9px !important;
    padding: 2px 4px !important;
    margin-top: 1px !important;
    margin-bottom: 2px !important;
  }
}

/* 7. Escalar Chips e Info triggers */
.layout-carousel .offer-card__chips {
  margin-bottom: 8px !important;
  gap: 2px !important;
}

.layout-carousel .offer-card__chips .lq-chip {
  font-size: 7px !important;
  padding: 2px 4px !important;
  border-radius: 3px !important;
}

.layout-carousel .offer-card__info-trigger {
  top: 8px !important;
  right: 8px !important;
}

.layout-carousel .lq-badge-sale ~ .offer-card__info-trigger {
  top: 48px !important;
}

@media (max-width: 768px) {
  .layout-carousel .lq-badge-sale ~ .offer-card__info-trigger {
    top: 42px !important;
  }
  
  .layout-carousel .offer-card__info-trigger svg {
    width: 14px !important;
    height: 14px !important;
  }
}
