body {
    background-color: #f7f7f7;
}

/* Introducción de productos */
.productos-intro {
    text-align: left !important;
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
    padding: 60px 20px 40px !important;
    color: #d88c29;
}

.productos-intro h1 {
    border-left: 1.5px solid #000000;
    padding-left: 20px;
    color: #1f1f1f;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    line-height: 1.3;
}

.productos-titulo-highlight {
    font-weight: 700;
    font-size: 1.7rem;
    color: #000000;
}

.productos-titulo-normal {
    font-weight: 400;
    font-size: 1.7rem;
    color: #1f1f1f;
}

.productos-titulo-italic {
    font-style: italic;
    font-weight: 400;
    font-size: 1.7rem;
    color: #1f1f1f;
}

/* Grid de productos */
.productos-page-grid {
    display: flex;
    flex-wrap: wrap;
    
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem;
    margin-top: -3rem;
    justify-content: center;
}

/* Tarjeta de producto */
a.producto-card-custom {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.producto-card-custom {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
    width: 100%;
}

.producto-card-custom:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

/* Área del ícono */
.producto-icon-area {
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px 10px;
}

.producto-image-custom {
    width: auto;
    height: 100px;
    object-fit: contain;
    display: block;
}

/* Área del nombre */
.producto-caption-custom {
    padding: 0 15px 20px;
    text-align: center;
}

.producto-texto-custom {
    font-size: 1.15rem;
    line-height: 1.5;
    color: #1f1f1f;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.texto-highlight-custom {
    font-weight: 600;
    display: inline;
    background-color: #D4922A;
    color: #ffffff;
    padding: 4px 14px;
    border-radius: 25px;
    line-height: 2;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* Productos Tablet */
@media screen and (min-width: 600px) and (max-width: 1023px) {
    .productos-page-grid {
        gap: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .producto-card-custom {
        width: calc(33.333% - 27px);
    }

    .producto-image-custom {
        height: 130px;
        width: auto;
        object-fit: contain;
    }

    .producto-icon-area {
        padding: 18px 12px 8px;
    }

    .producto-caption-custom {
        padding: 0 12px 18px;
    }

    .producto-texto-custom {
        font-size: 1.05rem;
    }
}

/* Productos Desktop */
@media screen and (min-width: 1024px) {
    .productos-page-grid {
        gap: 50px;
    }

    .producto-card-custom {
        width: calc(25% - 38px);
    }

    .producto-image-custom {
        height: 140px;
        width: auto;
        object-fit: contain;
    }

    .producto-icon-area {
        padding: 25px 15px 10px;
    }

    .producto-caption-custom {
        padding: 0 15px 22px;
    }

    .producto-texto-custom {
        font-size: 1.15rem;
    }
}

/* Productos Mobile */
@media screen and (max-width: 599px) {
    .productos-page-grid {
        padding: 10px;
        gap: 25px;
        margin-top: -1rem;
    }

    .producto-card-custom {
        width: calc(50% - 13px);
    }

    .producto-image-custom {
        height: 80px;
        width: auto;
        object-fit: contain;
    }

    .producto-icon-area {
        padding: 15px 8px 8px;
    }

    .producto-caption-custom {
        padding: 0 10px 14px;
    }

    .producto-texto-custom {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .texto-highlight-custom {
        padding: 3px 10px;
        font-size: 0.8rem;
    }
}