/* ═══════════════════════════════════════════════════
   Cobertores Para Bebé — Precio en verde Fiubags +
   etiqueta "Paquetes surtidos" (override scoped a esta
   página; el widget global lo pinta rojo de aniversario)
═══════════════════════════════════════════════════ */
.info-web--pdp .product-price-row .product-price-main {
    color: #42ADA5;
}

.product-price-badge--surtidos {
    background: #FF8C00;
}

/* ═══════════════════════════════════════════════════
   Cobertores Para Bebé — Sección emocional
   Misma línea visual que las secciones de servilletas / lavandería
═══════════════════════════════════════════════════ */

.cbb-emo-section {
    padding: 64px 0 56px;
    background: rgba(236, 238, 237, 1);
}

.cbb-emo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "title image" "body image";
    gap: 48px 72px;
    align-items: center;
}

.cbb-emo-h2 {
    grid-area: title;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #6eaba5;
    margin-bottom: 20px;
    line-height: 1.25;
}

.cbb-emo-left {
    grid-area: body;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.cbb-emo-intro {
    margin-bottom: 28px;
}

.cbb-emo-intro p {
    font-size: 0.93rem;
    color: #444;
    line-height: 1.72;
    margin-bottom: 10px;
}

.cbb-emo-bullets {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    text-align: left;
    margin: 0;
    width: 100%;
}

.cbb-emo-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1.5px solid #e0f0ee;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #222;
    line-height: 1.35;
    box-shadow: 0 2px 8px rgba(15, 36, 34, 0.05);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.cbb-emo-bullet:hover {
    border-color: #42ADA5;
    box-shadow: 0 10px 20px rgba(15, 36, 34, 0.09);
    transform: translateY(-3px);
}

.cbb-emo-bullet .cbb-emo-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 9px;
    background-color: #e8f8f7;
}

.cbb-emo-bullet svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    fill: none;
    stroke: #42ADA5;
    stroke-width: 2;
}

.cbb-emo-right {
    grid-area: image;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cbb-emo-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(15, 36, 34, 0.13);
    max-width: 420px;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.cbb-emo-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 820px) {
    .cbb-emo-grid {
        grid-template-columns: 1fr;
        grid-template-areas: "title" "image" "body";
        gap: 20px 0;
    }
    .cbb-emo-h2 { text-align: center; margin-bottom: 16px; }
    .cbb-emo-left { align-items: center; text-align: center; margin-top: 16px; }
    .cbb-emo-left .cbb-emo-bullets { text-align: left; }
    .cbb-emo-img-wrap { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 580px) {
    .cbb-emo-bullets { grid-template-columns: 1fr; }
    .cbb-emo-section { padding: 48px 0 40px; }
}

/* ═══════════════════════════════════════════════════
   Sección: Estilos disponibles (tarjetas visuales)
═══════════════════════════════════════════════════ */

.cbb-styles-section {
    padding: 4rem 0;
    background-color: #f4faf9;
}

@media (min-width: 1024px) {
    .cbb-styles-section {
        padding: 5rem 0;
    }
}

.cbb-styles-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cbb-styles-header {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .cbb-styles-header {
        margin-bottom: 4rem;
    }
}

.cbb-styles-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #e8f8f7;
    color: #42ADA5;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.cbb-styles-title {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #6eaba5;
    line-height: 1.25;
}

.cbb-styles-note {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    width: 100%;
    text-align: left;
    margin: 1.25rem 0 2.5rem;
    background-color: #fde7e4;
    border-left: 3px solid #e35d50;
    border-radius: 0 14px 14px 0;
    padding: 0.9rem 1.1rem;
}

.cbb-styles-note svg {
    width: 18px;
    height: 18px;
    color: #e35d50;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.cbb-styles-note p {
    margin: 0;
    font-size: 0.9rem;
    color: #8a2f26;
    line-height: 1.6;
}

.cbb-styles-note--info {
    margin: 1.5rem 0 0;
    background-color: #e8f1fc;
    border-left-color: #2b6cb0;
}

.cbb-styles-note--info svg {
    color: #2b6cb0;
}

.cbb-styles-note--info p {
    color: #1a3a5c;
}

.cbb-styles-note--link {
    text-decoration: none;
    cursor: pointer;
    transition: box-shadow .2s, transform .2s;
}

.cbb-styles-note--link:hover {
    box-shadow: 0 4px 14px rgba(43, 108, 176, 0.25);
    transform: translateY(-1px);
}

.cbb-styles-note--link strong {
    text-decoration: underline;
}

.cbb-styles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.cbb-styles-cta {
    text-align: center;
    margin-top: 2.5rem;
}

@media (min-width: 576px) {
    .cbb-styles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .cbb-styles-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }
}

/* ── Móvil (<576px): carrusel con flechas y puntos ─────────────
   El grid normal se desactiva cuando Slick lo inicializa; a ese
   ancho el grid ya era de 1 columna, así que no hay salto visual. */
.cbb-styles-grid.slick-initialized {
    display: block;
}

/* .slick-slider trae un margen/padding de -40px pensado para
   galerías anchas; en esta card angosta desborda el contenedor. */
.cbb-styles-grid.slick-slider {
    margin-left: 0;
    margin-right: 0;
    padding-left: 36px;
    padding-right: 36px;
}

.cbb-styles-grid.slick-slider .slick-list {
    margin-left: 0;
    margin-right: 0;
}

.cbb-styles-grid .slick-track {
    display: flex;
}

.cbb-styles-grid .slick-slide {
    height: auto;
    padding: 0 4px;
}

.cbb-styles-grid .slick-slide > div {
    height: 100%;
}

.cbb-styles-grid .cbb-style-card {
    height: 100%;
}

.cbb-styles-grid .slick-dots {
    position: static;
    margin-top: 1.25rem;
}

.cbb-style-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 2px solid #e8f5f4;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cbb-style-card:hover {
    border-color: #42ADA5;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.cbb-style-media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.cbb-style-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.cbb-style-card:hover .cbb-style-media img {
    transform: scale(1.06);
}

.cbb-style-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cbb-style-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
}

.cbb-style-description {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.55;
}

.cbb-style-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-top: 0.85rem;
    margin-top: 0.25rem;
    border-top: 1px solid #eaf7f5;
    font-size: 0.75rem;
}

.cbb-style-info-label {
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    font-size: 0.68rem;
}

.cbb-style-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: #444;
    font-size: 0.82rem;
}

.cbb-style-availability {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #2e9e5b;
    margin-top: 0.5rem;
}

.cbb-style-availability svg {
    width: 14px;
    height: 14px;
}

.cbb-style-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.85rem;
    padding: 0.7rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    background-color: #25D366;
    transition: background-color 0.2s ease;
}

.cbb-style-cta:hover {
    background-color: #1da851;
    color: #ffffff;
    text-decoration: none;
}

.cbb-style-cta svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   Sección: Encuentra un Diseño para Cada Estilo (categorías)
═══════════════════════════════════════════════════ */

.cbb-cat-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

@media (min-width: 1024px) {
    .cbb-cat-section {
        padding: 5rem 0;
    }
}

.cbb-cat-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cbb-cat-header {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .cbb-cat-header {
        margin-bottom: 4rem;
    }
}

.cbb-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #e8f8f7;
    color: #42ADA5;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.cbb-cat-title {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #6eaba5;
    line-height: 1.25;
}

.cbb-cat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .cbb-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .cbb-cat-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }
}

.cbb-cat-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 2px solid #e8f5f4;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cbb-cat-card:hover {
    border-color: #42ADA5;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.cbb-cat-media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.cbb-cat-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.cbb-cat-card:hover .cbb-cat-media img {
    transform: scale(1.06);
}

.cbb-cat-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cbb-cat-title-item {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
}

.cbb-cat-description {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.55;
    flex: 1;
}

/* ── Card con fondo (mismo tratamiento que "Manteles Según la
   Forma y Función de Cada Mesa"): imagen de fondo + overlay oscuro +
   hint "Toca para ver imagen" que aparece al hover ──────────── */
.cbb-cat-card--bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    min-height: 280px;
    position: relative;
    overflow: hidden;
    border: none;
}

.cbb-cat-card--bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 53, 50, 0.78) 0%, rgba(26, 53, 50, 0.55) 100%);
    z-index: 1;
}

.cbb-cat-card--bg .cbb-cat-content {
    position: relative;
    z-index: 2;
    padding: clamp(1.4rem, 4vw, 1.8rem);
    height: 100%;
    justify-content: flex-end;
    color: #fff;
}

.cbb-cat-card--bg .cbb-cat-title-item {
    color: #fff;
}

.cbb-cat-card--bg .cbb-cat-description {
    color: rgba(255, 255, 255, 0.9);
}

.cbb-cat-card--bg .cbb-cat-hint {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    letter-spacing: 0.05em;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
}

.cbb-cat-card--bg:hover .cbb-cat-hint {
    opacity: 1;
}

@media (max-width: 768px) {
    .cbb-cat-card--bg .cbb-cat-hint {
        opacity: 1;
    }
}

/* ── Modo "imagen sola": al tocar/clickear la card, se oculta el
   overlay y el hint para ver la imagen limpia ───────────────── */
.cbb-cat-card--image-only::before {
    background: none;
    transition: background 0.3s ease;
}

.cbb-cat-card--image-only .cbb-cat-content {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cbb-cat-card--image-only .cbb-cat-hint {
    opacity: 0;
}

.cbb-cat-card--nina {
    background-image: url('/assets/images/cobertores-bebe/800x800/diseno-nina.webp'), url('/assets/images/cobertores-bebe/800x800/diseno-nina.jpg');
}

.cbb-cat-card--nino {
    background-image: url('/assets/images/cobertores-bebe/800x800/diseno-nino.webp'), url('/assets/images/cobertores-bebe/800x800/diseno-nino.jpg');
}

.cbb-cat-card--unisex {
    background-image: url('/assets/images/cobertores-bebe/800x800/unisex.webp'), url('/assets/images/cobertores-bebe/800x800/unisex.jpg');
}

.cbb-cat-card--regalo {
    background-image: url('/assets/images/cobertores-bebe/800x800/para-regalo.webp'), url('/assets/images/cobertores-bebe/800x800/para-regalo.jpg');
}

/* ═══════════════════════════════════════════════════
   Sección: ¿Cómo Elegir un Cobertor para Bebé? (pasos)
═══════════════════════════════════════════════════ */

.cbb-steps-section {
    padding: 4rem 0;
    background-color: #f4faf9;
}

@media (min-width: 1024px) {
    .cbb-steps-section {
        padding: 5rem 0;
    }
}

.cbb-steps-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cbb-steps-header {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .cbb-steps-header {
        margin-bottom: 4rem;
    }
}

.cbb-steps-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #e8f8f7;
    color: #42ADA5;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.cbb-steps-title {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #6eaba5;
    line-height: 1.25;
}

.cbb-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 48px;
}

.cbb-step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cbb-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #42ADA5;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
}

.cbb-step-content {
    flex: 1;
    padding-top: 4px;
}

.cbb-step-title {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px;
    line-height: 1.3;
}

.cbb-step-desc {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.cbb-step-item:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .cbb-steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cbb-step-item:last-child {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .cbb-steps-grid {
        gap: 24px;
    }

    .cbb-step-item {
        gap: 16px;
    }

    .cbb-step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ═══════════════════════════════════════════════════
   Sección: Compra Cobertores para Bebé en Línea
═══════════════════════════════════════════════════ */

.cbb-online-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

@media (min-width: 1024px) {
    .cbb-online-section {
        padding: 5rem 0;
    }
}

.cbb-online-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.cbb-online-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #e8f8f7;
    color: #42ADA5;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.cbb-online-title {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #6eaba5;
    line-height: 1.25;
    margin: 0 0 1.25rem;
}

.cbb-online-text {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.68;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

.cbb-online-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: left;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

@media (min-width: 576px) {
    .cbb-online-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .cbb-online-benefits {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

.cbb-online-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #ffffff;
    border: 2px solid #e8f5f4;
    border-radius: 18px;
    padding: 1.1rem 1.25rem;
    font-size: 0.92rem;
    color: #1a1a1a;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cbb-online-benefit:hover {
    border-color: #42ADA5;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.cbb-online-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e8f8f7;
    color: #42ADA5;
    flex-shrink: 0;
}

.cbb-online-check svg {
    width: 16px;
    height: 16px;
}

.cbb-online-check--teal   { background: #e8f8f7; color: #42ADA5; }
.cbb-online-check--deep   { background: #e3f3f1; color: #2f8880; }
.cbb-online-check--kraft  { background: #f5ebdf; color: #b07d52; }
.cbb-online-check--ink    { background: #e9eeed; color: #1a3532; }
.cbb-online-check--clay   { background: #f2ece4; color: #8b7460; }
.cbb-online-check--dark   { background: #e5efee; color: #355e5a; }

.cbb-online-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #42ADA5;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(66, 173, 165, 0.28);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.cbb-online-cta:hover {
    background-color: #358f88;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(66, 173, 165, 0.35);
}

/* ═══════════════════════════════════════════════════
   Sección: Cobijas, Mantas y Cobertores para Bebé
═══════════════════════════════════════════════════ */

.cbb-terms-section {
    padding: 4rem 0;
    background-color: #f4faf9;
}

@media (min-width: 1024px) {
    .cbb-terms-section {
        padding: 5rem 0;
    }
}

.cbb-terms-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cbb-terms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .cbb-terms-grid {
        grid-template-columns: 5fr 7fr;
        gap: 3.5rem;
    }
}

.cbb-terms-media {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 15px 22px rgba(104, 104, 104, 0.2);
}

.cbb-terms-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cbb-terms-title {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #6eaba5;
    line-height: 1.25;
    margin: 0 0 1.1rem;
}

.cbb-terms-text {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.75;
    margin: 0 0 1.25rem;
}

.cbb-terms-note {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    background-color: #e8f8f7;
    border-left: 3px solid #42ADA5;
    border-radius: 0 14px 14px 0;
    padding: 0.9rem 1.1rem;
    margin: 0;
}

.cbb-terms-note svg {
    width: 18px;
    height: 18px;
    color: #42ADA5;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.cbb-terms-note p {
    margin: 0;
    font-size: 0.9rem;
    font-style: italic;
    color: #1a3532;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   Cotizador de paquetes — "por pieza" debajo del precio,
   no a un lado (solo en esta página).
═══════════════════════════════════════════════════ */
.cbb-cart-widget .new-pkg-perpiece {
    flex-direction: column;
    gap: 0;
}
