.elementor-kit-35{--e-global-color-primary:#2F6B3E;--e-global-color-secondary:#7FB069;--e-global-color-text:#2E2E2E;--e-global-color-accent:#C89F3D;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-35 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ===============================
   GRID DEL CATÁLOGO
================================ */
.catalogo-dolibarr {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin: 40px auto;
}

/* ===============================
   TARJETA DE PRODUCTO
================================ */
.catalogo-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    padding: 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    transition: transform .2s ease, box-shadow .2s ease;
}

.catalogo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ===============================
   IMAGEN (3:4)
================================ */
.catalogo-img-wrap {
    aspect-ratio: 3 / 4;
    background: #fff;              /* blanco por defecto */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 12px;
}

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

/* Si no hay imagen, no se muestra nada extra */
.catalogo-img-wrap.no-img {
    background: #fff;
}

/* ===============================
   TEXTO
================================ */
.catalogo-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.catalogo-ref {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 10px;
}

.catalogo-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}/* End custom CSS */