.productos-categoria-section {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 99980;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.productos-categoria-section.active {
    display: flex;
}

.productos-categoria-section .container {
    background: #fff;
    width: min(760px, 100%);
    max-height: 88vh;
    overflow-y: auto;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.productos-categoria-section .section-heading {
    text-align: center;
    margin-bottom: 28px;
}

.productos-categoria-section .section-heading h2 {
    font-size: 42px;
    color: #245c4d;
    margin-bottom: 8px;
}

.productos-categoria-section .section-heading p {
    font-size: 19px;
    color: #6f9188;
}

.btn-volver-categorias {
    border: 1px solid #245c4d;
    background: #fff;
    color: #245c4d;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
    margin-bottom: 24px;
}

.btn-volver-categorias:hover {
    background: #245c4d;
    color: #fff;
}

.productos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.producto-modal-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 18px;
    background: #f6f2ed;
    border-radius: 20px;
    padding: 16px;
    align-items: center;
}

.producto-modal-item img {
    width: 140px;
    height: 120px;
    object-fit: cover;
    border-radius: 16px;
    background: #fff;
}

.producto-modal-item h3 {
    color: #245c4d;
    font-size: 24px;
    margin-bottom: 8px;
}

.producto-precio {
    color: #245c4d;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.producto-modal-item p {
    color: #666;
    line-height: 1.5;
}

.btn-personalizar {
    border: 1px solid #245c4d;
    background: #245c4d;
    color: #fff;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 12px;
    transition: 0.25s ease;
}

.btn-personalizar:hover {
    background: #1d4b3f;
}

@media (max-width: 650px) {

    .productos-categoria-section {
        padding: 16px;
    }

    .productos-categoria-section .container {
        padding: 22px;
    }

    .producto-modal-item {
        grid-template-columns: 1fr;
    }

    .producto-modal-item img {
        width: 100%;
        height: 220px;
    }

}