.mini-combinations {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.mini-comb {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.img-comb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.more-combs-btn {
    background: #f5f5f5;
    cursor: pointer;
    font-size: 12px;
    color: #e71f85;
}

    .more-combs-btn:hover {
        background: #e71f85;
        color: #f5f5f5;
    }

/* Modal */
.combs-modal {
    display: none; /* oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.combs-modal-content {
    background: #fff;
    border-radius: 6px;
    max-width: 500px;
    width: 90%;
    max-height: 80%;
    overflow-y: auto;
    position: relative;
}

    .combs-modal-content h4 {
        margin: 0 0 10px;
        font-size: 1.1rem;
    }

.combs-modal-items {
    display: flex;
    flex-direction: column;
}

    .combs-modal-items .modal-item {
        display: flex;
        align-items: center;
        border: 1px solid #eee;
        border-radius: 4px;
        text-decoration: none;
        font-size: 15px;
        line-height: 1.3;
        color: #333;
    }

        .combs-modal-items .modal-item:hover {
            background: #f9f9f9;
            border-color: #e71f85;
        }

.modal-img-wrap {
    flex: 0 0 35%;
    max-width: 70px; /* más compacto */
}

.modal-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 3px;
}

.modal-name {
    flex: 1;
    font-size: 15px; /* +20% */
    display: flex;
    align-items: center;
    padding-left: 6px;
}

.close-btn {
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: 20px;
    cursor: pointer;
}
