/*
Theme Name: Kadence Child 02
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: Kadence WP
Author URI: https://www.kadencewp.com/
Description: Kadence Theme is a lightweight yet full featured WordPress theme for creating beautiful fast loading and accessible websites, easier than ever. It features an easy to use drag and drop header and footer builder to build any type of header in minutes. It features a full library of gorgeous starter templates that are easy to modify with our intelligent global font and color controls. With extensive integration with the most popular 3rd party plugins, you can quickly build impressive ecommerce websites, course websites, business websites, and more.
Tags: translation-ready,accessibility-ready,two-columns,right-sidebar,left-sidebar,footer-widgets,blog,custom-logo,custom-background,custom-menu,rtl-language-support,editor-style,threaded-comments,custom-colors,featured-images,wide-blocks,full-width-template,theme-options,e-commerce
Version: 1.3.4.1757434468
Updated: 2025-09-09 16:14:28
/* Caja de cuotas: base */
.costo-cuotas{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background:#E53935; /* rojo */
  color:#fff; /* texto blanco */
  padding:.5rem .75rem;
  border-radius:.5rem; /* bordes redondeados */
  font-weight:600;
  line-height:1.2;
  box-shadow:0 6px 14px rgba(229,57,53,.18);
  margin-top:.5rem;
  max-width:100%;
  text-wrap:balance;
}

/* Etiqueta y monto separados (si usaste los spans) */
.costo-cuotas .label{
  text-transform:uppercase;
  letter-spacing:.3px;
  opacity:.95;
}

.costo-cuotas .amount{
  font-variant-numeric:tabular-nums; /* números más prolijos */
}

/* Quita el <p> heredado si seguís usando <p> dentro */
.costo-cuotas p{
  margin:0;
  color:#fff;
}

/* En listados (categorías/tienda) que quede debajo del precio y bien pegado */
.archive .costo-cuotas,
.blog .costo-cuotas,
.post-type-archive-product .costo-cuotas{
  display:inline-flex;
  margin-top:.35rem;
}

/* En la ficha de producto, un poco más grande */
.single-product .costo-cuotas{
  font-size:1.05rem;
}

/* Hover sutil en tarjetas de producto */
.products .product:hover .costo-cuotas{
  transform:translateY(-1px);
  box-shadow:0 10px 18px rgba(229,57,53,.24);
}

/* Responsivo: en pantallas muy chicas, que ocupe el ancho disponible */
@media (max-width:480px){
  .costo-cuotas{
    display:flex;
    width:fit-content;
    font-size:.95rem;
  }
}
